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
ffc79e32
Commit
ffc79e32
authored
Aug 11, 2025
by
kisszxc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改轮播图
parent
2490f3d6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
42 deletions
+33
-42
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
index.less
reservation/record/index.less
+2
-2
index.less
reservation/status/index.less
+2
-2
index.less
reservation/subscribe/index.less
+2
-2
index.vue
reservation/subscribe/index.vue
+22
-31
No files found.
api/reservation/reservation-request.js
View file @
ffc79e32
...
@@ -6,9 +6,9 @@ import {
...
@@ -6,9 +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-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
=
{})
=>
{
const
request
=
(
options
=
{})
=>
{
// 对options.data 进行一些处理
// 对options.data 进行一些处理
...
...
reservation/config.js
View file @
ffc79e32
export
const
baseUrl
=
'https://f
actory-walk-uat.feih
e.com'
export
const
baseUrl
=
'https://f
eihe.jzvcod
e.com'
reservation/home/index.less
View file @
ffc79e32
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
}
}
.blur-bg {
.blur-bg {
...
...
reservation/record/index.less
View file @
ffc79e32
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
}
}
.record {
.record {
...
...
reservation/status/index.less
View file @
ffc79e32
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
}
}
.record {
.record {
...
...
reservation/subscribe/index.less
View file @
ffc79e32
// 声明字体
// 声明字体
@font-face {
@font-face {
font-family: 'fz';
font-family: 'fz';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz.ttf') format('truetype');
}
}
@font-face {
@font-face {
font-family: 'fz-bold';
font-family: 'fz-bold';
src: url('https://f
actory-walk-uat.feih
e.com/images/fz-bold.ttf') format('truetype');
src: url('https://f
eihe.jzvcod
e.com/images/fz-bold.ttf') format('truetype');
}
}
.subscribe {
.subscribe {
...
...
reservation/subscribe/index.vue
View file @
ffc79e32
...
@@ -13,37 +13,28 @@
...
@@ -13,37 +13,28 @@
</view>
</view>
<view
class=
"card"
>
<view
class=
"card"
>
<view
class=
"card-title"
>
参观园区
</view>
<view
class=
"card-title"
>
参观园区
</view>
<swiper
<swiper
circular
class=
"card-swiper"
:current=
"swiperIndex"
@
change=
"handleSwiperChange"
:disable-touch=
"true"
>
circular
<swiper-item
class=
"swiper-item"
v-for=
"(item, index) in cardList"
:key=
"index"
catch:touchmove=
"return false"
>
class=
"card-swiper"
<view
class=
"card-image"
>
:current=
"swiperIndex"
<image
:src=
"item.image"
mode=
"widthFix"
/>
@
change=
"handleSwiperChange"
</view>
>
</swiper-item>
<swiper-item
</swiper>
class=
"swiper-item"
<view
class=
"name"
>
v-for=
"(item, index) in cardList"
{{
currentGround
.
title
}}
:key=
"index"
<!--
<view
class=
"swiper-left"
@
click=
"handleSwiperLeft"
>
>
<image
<view
class=
"card-image"
>
src=
"@/assets/reservation-images/icon-right-y.svg"
<image
:src=
"item.image"
mode=
"widthFix"
/>
mode=
"widthFix"
</view>
/>
</swiper-item>
</view>
</swiper>
<view
class=
"swiper-right"
@
click=
"handleSwiperRight"
>
<view
class=
"name"
>
<image
{{
currentGround
.
title
}}
src=
"@/assets/reservation-images/icon-right-y.svg"
<view
class=
"swiper-left"
@
click=
"handleSwiperLeft"
>
mode=
"widthFix"
<image
/>
src=
"@/assets/reservation-images/icon-right-y.svg"
</view>
-->
mode=
"widthFix"
</view>
/>
</view>
<view
class=
"swiper-right"
@
click=
"handleSwiperRight"
>
<image
src=
"@/assets/reservation-images/icon-right-y.svg"
mode=
"widthFix"
/>
</view>
</view>
<view
class=
"desc"
>
<view
class=
"desc"
>
{{
currentGround
.
detail
}}
{{
currentGround
.
detail
}}
</view>
</view>
...
...
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