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
f6483f4b
Commit
f6483f4b
authored
Aug 11, 2025
by
kisszxc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
替换接口地址
parent
ffc79e32
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
19 additions
and
19 deletions
+19
-19
reservation-request.js
api/reservation/reservation-request.js
+2
-2
config.js
reservation/config.js
+1
-1
index.less
reservation/home/index.less
+2
-2
page1.vue
reservation/home/page1.vue
+1
-1
page2.vue
reservation/home/page2.vue
+1
-1
page3.vue
reservation/home/page3.vue
+1
-1
page4.vue
reservation/home/page4.vue
+1
-1
detail.vue
reservation/record/detail.vue
+1
-1
index.less
reservation/record/index.less
+2
-2
index.vue
reservation/record/index.vue
+1
-1
index.less
reservation/status/index.less
+2
-2
index.vue
reservation/status/index.vue
+1
-1
index.less
reservation/subscribe/index.less
+2
-2
index.vue
reservation/subscribe/index.vue
+1
-1
No files found.
api/reservation/reservation-request.js
View file @
f6483f4b
...
...
@@ -6,9 +6,9 @@ import {
// 通常可以吧 baseUrl 单独放在一个 js 文件了
// const baseUrl = "http://172.16.224.178:7777/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
baseUrl
=
'https://factory-walk-uat.feihe.com/feihe'
;
const
request
=
(
options
=
{})
=>
{
// 对options.data 进行一些处理
...
...
reservation/config.js
View file @
f6483f4b
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 @
f6483f4b
// 声明字体
@font-face {
font-family: 'fz';
src: url('https://f
eihe.jzvcode.com
/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz.ttf') format('truetype');
}
@font-face {
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 {
...
...
reservation/home/page1.vue
View file @
f6483f4b
<
template
>
<view
class=
"home-page page1"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-1.png)` }"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-1.png)` }"
>
<view
class=
"logo"
>
<image
src=
"@/assets/reservation-images/logo.svg"
mode=
"widthFix"
></image>
...
...
reservation/home/page2.vue
View file @
f6483f4b
<
template
>
<view
class=
"home-page page2"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-2.png)` }"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-2.png)` }"
>
<view
class=
"logo"
>
<image
src=
"@/assets/reservation-images/logo.svg"
mode=
"widthFix"
></image>
...
...
reservation/home/page3.vue
View file @
f6483f4b
<
template
>
<view
class=
"home-page page2"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-3.png)` }">
<view
class=
"home-page page2"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-3.png)` }">
<view
class=
"logo"
>
<image
src=
"@/assets/reservation-images/logo.svg"
mode=
"widthFix"
></image>
</view>
...
...
reservation/home/page4.vue
View file @
f6483f4b
<
template
>
<view
class=
"home-page page4"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-4.png)` }"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-4.png)` }"
>
<view
class=
"logo"
>
<image
src=
"@/assets/reservation-images/logo.svg"
mode=
"widthFix"
></image>
...
...
reservation/record/detail.vue
View file @
f6483f4b
<
template
>
<view
class=
"record record-detail"
>
<view
class=
"record-bg"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-6.png)` }">
</view>
<view
class=
"record-bg"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-6.png)` }">
</view>
<view
class=
"record-content"
>
<view
class=
"tips"
>
请凭下方预约二维码现场签到进场
</view>
<view
class=
"card detail"
>
...
...
reservation/record/index.less
View file @
f6483f4b
// 声明字体
@font-face {
font-family: 'fz';
src: url('https://f
eihe.jzvcode.com
/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz.ttf') format('truetype');
}
@font-face {
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcode.com
/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz-bold.ttf') format('truetype');
}
.record {
...
...
reservation/record/index.vue
View file @
f6483f4b
<
template
>
<view
class=
"record"
>
<view
class=
"record-bg"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-6.png)` }">
</view>
<view
class=
"record-bg"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-6.png)` }">
</view>
<view
class=
"record-content"
>
<view
class=
"card"
>
<view
class=
"card-tab"
>
...
...
reservation/status/index.less
View file @
f6483f4b
// 声明字体
@font-face {
font-family: 'fz';
src: url('https://f
eihe.jzvcode.com
/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz.ttf') format('truetype');
}
@font-face {
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcode.com
/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz-bold.ttf') format('truetype');
}
.record {
...
...
reservation/status/index.vue
View file @
f6483f4b
...
...
@@ -2,7 +2,7 @@
<view
class=
"record"
>
<view
class=
"record-bg"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-6.png)` }"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-6.png)` }"
>
</view>
<view
class=
"record-content"
>
<view
class=
"card"
>
...
...
reservation/subscribe/index.less
View file @
f6483f4b
// 声明字体
@font-face {
font-family: 'fz';
src: url('https://f
eihe.jzvcode.com
/images/fz.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz.ttf') format('truetype');
}
@font-face {
font-family: 'fz-bold';
src: url('https://f
eihe.jzvcode.com
/images/fz-bold.ttf') format('truetype');
src: url('https://f
actory-walk-uat.feihe.com/farqbxzczytcami
/images/fz-bold.ttf') format('truetype');
}
.subscribe {
...
...
reservation/subscribe/index.vue
View file @
f6483f4b
<
template
>
<view
class=
"subscribe"
:style=
"
{ backgroundImage: `url(${baseUrl}/images/bg-5.png)` }"
:style=
"
{ backgroundImage: `url(${baseUrl}/
farqbxzczytcami/
images/bg-5.png)` }"
>
<view
class=
"record"
@
click=
"goToRecord"
>
<text>
预约记录
</text>
...
...
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