Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
飞
飞鹤小程序
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
FH
飞鹤小程序
Commits
2490f3d6
Commit
2490f3d6
authored
Aug 07, 2025
by
kisszxc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增加密组件
parent
7735a64b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
10 deletions
+17
-10
reservation-request.js
api/reservation/reservation-request.js
+3
-1
package.json
package.json
+5
-0
config.js
reservation/config.js
+1
-1
index.less
reservation/home/index.less
+2
-2
index.less
reservation/record/index.less
+2
-2
index.less
reservation/status/index.less
+2
-2
index.less
reservation/subscribe/index.less
+2
-2
No files found.
api/reservation/reservation-request.js
View file @
2490f3d6
...
@@ -6,7 +6,9 @@ import {
...
@@ -6,7 +6,9 @@ import {
// 通常可以吧 baseUrl 单独放在一个 js 文件了
// 通常可以吧 baseUrl 单独放在一个 js 文件了
// const baseUrl = "http://172.16.224.178:7777/pmall";
// const baseUrl = "http://172.16.224.178:7777/pmall";
// const baseUrl = "https://momclub-uat.feihe.com/pmall";//测试环境
// const baseUrl = "https://momclub-uat.feihe.com/pmall";//测试环境
const
baseUrl
=
'https://feihe.jzvcode.com/feihe'
//生产环境
//const baseUrl = 'https://feihe.jzvcode.com/feihe' //生产环境
//const baseUrl = 'https://factory-walk-test.feihe.com/feihe';
const
baseUrl
=
'https://factory-walk-uat.feihe.com/feihe'
;
const
request
=
(
options
=
{})
=>
{
const
request
=
(
options
=
{})
=>
{
// 对options.data 进行一些处理
// 对options.data 进行一些处理
...
...
package.json
0 → 100644
View file @
2490f3d6
{
"dependencies"
:
{
"
crypto-js
"
:
"
^4.2.0
"
}
}
reservation/config.js
View file @
2490f3d6
export
const
baseUrl
=
'https://f
eihe.jzvcod
e.com'
export
const
baseUrl
=
'https://f
actory-walk-uat.feih
e.com'
reservation/home/index.less
View file @
2490f3d6
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
}
}
.blur-bg {
.blur-bg {
...
...
reservation/record/index.less
View file @
2490f3d6
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
}
}
.record {
.record {
...
...
reservation/status/index.less
View file @
2490f3d6
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
}
}
.record {
.record {
...
...
reservation/subscribe/index.less
View file @
2490f3d6
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
}
}
.subscribe {
.subscribe {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment