Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
groupPurchase-miniapp
Project
Project
Details
Activity
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
彭佳妮(贵阳日报)
groupPurchase-miniapp
Commits
f8ca61f7
Commit
f8ca61f7
authored
Aug 15, 2024
by
蔡亮华(贵阳日报)
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.platform.xinhuaapp.com/pengjiani/groupPurchase-miniapp
parents
dabb0cda
c460d631
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
93 additions
and
42 deletions
+93
-42
fab.vue
src/Components/fab/fab.vue
+7
-6
photo.js
src/api/photo.js
+9
-0
RouteDetails.vue
src/pages/assistingAgriculture/RouteDetails/RouteDetails.vue
+6
-4
specialOfferZoneList.vue
...assistingAgriculture/RuralTravel/specialOfferZoneList.vue
+2
-0
card.vue
src/pages/assistingAgriculture/album/card.vue
+27
-4
index.vue
src/pages/assistingAgriculture/album/index.vue
+23
-23
index.vue
src/pages/assistingAgriculture/commentList/index.vue
+5
-3
comment.vue
src/pages/assistingAgriculture/detail/comment.vue
+2
-0
detail.vue
src/pages/assistingAgriculture/detail/detail.vue
+2
-0
foodClassification.vue
src/pages/index/foodClassification.vue
+2
-0
listFood.vue
src/pages/index/listFood.vue
+2
-0
packageDetails.vue
src/pages/packageDetails/packageDetails.vue
+2
-0
shop.vue
src/pages/shop/shop.vue
+2
-0
ticket.vue
src/pages/ticket/ticket.vue
+2
-2
like.png
src/static/assistingAgriculture/assets/like.png
+0
-0
likeFilled.png
src/static/assistingAgriculture/assets/likeFilled.png
+0
-0
shoppingCart.png
src/static/index/shoppingCart.png
+0
-0
No files found.
src/Components/fab/fab.vue
View file @
f8ca61f7
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
<text
class=
"fab-text"
>
订单
</text>
<text
class=
"fab-text"
>
订单
</text>
</view>
</view>
<view
class=
"custom-button"
@
click=
"go('/pages/assistingAgriculture/cart/cart')"
>
<view
class=
"custom-button"
@
click=
"go('/pages/assistingAgriculture/cart/cart')"
>
<image
class=
"fab-icon"
src=
"../../static/index/
gwc
.png"
></image>
<image
class=
"fab-icon"
src=
"../../static/index/
shoppingCart
.png"
></image>
<text
class=
"fab-text"
>
购物车
</text>
<text
class=
"fab-text"
>
购物车
</text>
<view
class=
"badge"
v-if=
"cartCount > 0"
>
{{
cartCount
}}
</view>
<view
class=
"badge"
v-if=
"cartCount > 0"
>
{{
cartCount
}}
</view>
</view>
</view>
...
@@ -103,14 +103,15 @@ const go = (url) => {
...
@@ -103,14 +103,15 @@ const go = (url) => {
.badge
{
.badge
{
font-size
:
18rpx
;
font-size
:
18rpx
;
font-weight
:
bold
;
font-weight
:
bold
;
color
:
#f
a4350
;
color
:
#f
ff
;
background-color
:
#f
ff
;
background-color
:
#f
a4350
;
text-align
:
center
;
text-align
:
center
;
border-radius
:
32rpx
;
border-radius
:
32rpx
;
padding
:
4rpx
8
rpx
;
padding
:
4rpx
10
rpx
;
position
:
absolute
;
position
:
absolute
;
top
:
0
;
top
:
-10rpx
;
right
:
-6rpx
;
right
:
-18rpx
;
border
:
4rpx
solid
#fff
;
}
}
}
}
</
style
>
</
style
>
src/api/photo.js
View file @
f8ca61f7
...
@@ -8,3 +8,12 @@ export function getPhoto(data) {
...
@@ -8,3 +8,12 @@ export function getPhoto(data) {
data
,
data
,
});
});
}
}
// 点赞
export
function
likeOrDislike
(
data
)
{
return
request
({
url
:
`/sgyrdd/evaluation/likeOrDislike`
,
method
:
'POST'
,
data
,
});
}
src/pages/assistingAgriculture/RouteDetails/RouteDetails.vue
View file @
f8ca61f7
...
@@ -310,6 +310,7 @@
...
@@ -310,6 +310,7 @@
<button
@
click=
"openZfType"
>
立即预定
</button>
<button
@
click=
"openZfType"
>
立即预定
</button>
</div>
</div>
<Payment
ref=
"PaymentRef"
@
payment=
"payNow"
></Payment>
<Payment
ref=
"PaymentRef"
@
payment=
"payNow"
></Payment>
<fab
position=
"3"
/>
</div>
</div>
</
template
>
</
template
>
...
@@ -318,6 +319,7 @@ import timeLine from './timeLine.vue';
...
@@ -318,6 +319,7 @@ import timeLine from './timeLine.vue';
import
domain
from
'@/utils/domain'
;
import
domain
from
'@/utils/domain'
;
import
Payment
from
'@/pages/order/components/Payment/index.vue'
;
import
Payment
from
'@/pages/order/components/Payment/index.vue'
;
import
{
ref
,
computed
,
watch
}
from
'vue'
;
import
{
ref
,
computed
,
watch
}
from
'vue'
;
import
fab
from
'../../../components/fab/fab.vue'
;
import
{
import
{
getProd
,
getProd
,
getEvalStatis
,
getEvalStatis
,
...
@@ -589,14 +591,14 @@ function back() {
...
@@ -589,14 +591,14 @@ function back() {
function
toCommentDetail
()
{
function
toCommentDetail
()
{
// TODO: 跳转到评论详情页
// TODO: 跳转到评论详情页
xma
.
navigateTo
({
xma
.
navigateTo
({
url
:
'/pages/assistingAgriculture/commentList/index'
,
url
:
`/pages/assistingAgriculture/commentList/index?shopId=
${
shopIds
.
value
}
&prodId=
${
prodIds
.
value
}
`
,
});
});
}
}
// 跳转用户相册
// 跳转用户相册
function
toAlbum
()
{
function
toAlbum
()
{
// TODO: 跳转到评论详情页
// TODO: 跳转到评论详情页
xma
.
navigateTo
({
xma
.
navigateTo
({
url
:
'/pages/assistingAgriculture/album/index'
,
url
:
`/pages/assistingAgriculture/album/index?shopId=
${
shopIds
.
value
}
&prodId=
${
prodIds
.
value
}
`
,
});
});
}
}
</
script
>
</
script
>
...
@@ -1016,10 +1018,10 @@ uni-page-body {
...
@@ -1016,10 +1018,10 @@ uni-page-body {
}
}
}
}
.footer
{
.footer
{
height
:
196
rpx
;
height
:
90
rpx
;
border-radius
:
16rpx
16rpx
0rpx
0rpx
;
border-radius
:
16rpx
16rpx
0rpx
0rpx
;
background
:
#ffffff
;
background
:
#ffffff
;
padding
:
20rpx
20rpx
0
42
rpx
;
padding
:
16
rpx
;
align-items
:
flex-start
;
align-items
:
flex-start
;
.like
{
.like
{
display
:
flex
;
display
:
flex
;
...
...
src/pages/assistingAgriculture/RuralTravel/specialOfferZoneList.vue
View file @
f8ca61f7
...
@@ -121,6 +121,7 @@
...
@@ -121,6 +121,7 @@
没有更多啦~
没有更多啦~
</view>
</view>
</view>
</view>
<fab
position=
"3"
/>
</view>
</view>
</template>
</template>
...
@@ -131,6 +132,7 @@ import Sort from '../../../components/assistingAgriculture/index/Sort.vue';
...
@@ -131,6 +132,7 @@ import Sort from '../../../components/assistingAgriculture/index/Sort.vue';
import
DepartureDate
from
'../../../components/assistingAgriculture/index/Date.vue'
;
import
DepartureDate
from
'../../../components/assistingAgriculture/index/Date.vue'
;
import
ScenicSpots
from
'../../../components/assistingAgriculture/index/ScenicSpots.vue'
;
import
ScenicSpots
from
'../../../components/assistingAgriculture/index/ScenicSpots.vue'
;
import
Screen
from
'../../../components/assistingAgriculture/index/Screen.vue'
;
import
Screen
from
'../../../components/assistingAgriculture/index/Screen.vue'
;
import
fab
from
'../../../components/fab/fab.vue'
;
const
rotate
=
ref
(
false
);
const
rotate
=
ref
(
false
);
const
imgUrl
=
import
.
meta
.
env
.
VITE_APP_IMG_URL
;
const
imgUrl
=
import
.
meta
.
env
.
VITE_APP_IMG_URL
;
const
rotate2
=
ref
(
false
);
const
rotate2
=
ref
(
false
);
...
...
src/pages/assistingAgriculture/album/card.vue
View file @
f8ca61f7
...
@@ -11,8 +11,11 @@
...
@@ -11,8 +11,11 @@
<img
:src=
"item.avatar"
alt=
""
/>
<img
:src=
"item.avatar"
alt=
""
/>
<p>
{{
item
.
nickName
}}
</p>
<p>
{{
item
.
nickName
}}
</p>
</div>
</div>
<div
class=
"like"
>
<div
class=
"like flex-align-center"
@
click=
"like(item)"
>
<wd-icon
name=
"thumb-up"
></wd-icon>
<img
:src=
"`/static/assistingAgriculture/assets/$
{item.give == 0 ? 'like' : 'likeFilled'}.png`"
alt=""
/>
{{
item
.
giveCount
}}
{{
item
.
giveCount
}}
</div>
</div>
</div>
</div>
...
@@ -20,6 +23,7 @@
...
@@ -20,6 +23,7 @@
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
{
likeOrDislike
}
from
'../../../api/photo'
;
const
showMore
=
ref
(
false
);
const
showMore
=
ref
(
false
);
const
props
=
defineProps
({
const
props
=
defineProps
({
photoData
:
{
photoData
:
{
...
@@ -33,6 +37,24 @@ const toReviewDetails = (id) => {
...
@@ -33,6 +37,24 @@ const toReviewDetails = (id) => {
url
:
`/pages/assistingAgriculture/reviewDetails/reviewDetails?evaluationId=
${
id
}
`
,
url
:
`/pages/assistingAgriculture/reviewDetails/reviewDetails?evaluationId=
${
id
}
`
,
});
});
};
};
/* 点赞 */
let
flag
=
false
;
const
like
=
(
item
)
=>
{
if
(
flag
)
{
return
;
}
else
{
flag
=
true
;
}
likeOrDislike
({
evaluationId
:
item
.
evaluationId
}).
then
((
res
)
=>
{
flag
=
false
;
if
(
res
.
code
===
0
)
{
// 成功
item
.
give
=
item
.
give
===
0
?
1
:
0
;
item
.
giveCount
=
item
.
give
===
0
?
item
.
giveCount
-
1
:
item
.
giveCount
+
1
;
}
});
};
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
@@ -86,8 +108,9 @@ const toReviewDetails = (id) => {
...
@@ -86,8 +108,9 @@ const toReviewDetails = (id) => {
.like
{
.like
{
font-size
:
12px
;
font-size
:
12px
;
color
:
#767676
;
color
:
#767676
;
.wd-icon
{
img
{
font-size
:
15px
;
width
:
16px
;
height
:
16px
;
}
}
}
}
}
}
...
...
src/pages/assistingAgriculture/album/index.vue
View file @
f8ca61f7
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
</div>
</div>
</scroll-view>
</scroll-view>
<div
class=
"back"
>
<div
class=
"back"
>
<button>
返回预订
</button>
<button
@
click=
"back"
>
返回预订
</button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
@@ -60,12 +60,9 @@ const filterList = [
...
@@ -60,12 +60,9 @@ const filterList = [
},
},
];
];
const
photoData
=
ref
([]);
const
photoData
=
ref
([]);
const
params
=
{
prodId
:
'43828'
,
onLoad
(({
prodId
,
shopId
})
=>
{
shopId
:
'1818876196597334017'
,
getPhotoFn
({
prodId
,
shopId
});
};
onLoad
(()
=>
{
getPhotoFn
();
});
});
// const scrolltolower = () => {
// const scrolltolower = () => {
// console.log('触底加载触底加载触底加载');
// console.log('触底加载触底加载触底加载');
...
@@ -76,7 +73,7 @@ onLoad(() => {
...
@@ -76,7 +73,7 @@ onLoad(() => {
// }
// }
// show.value = true;
// show.value = true;
// };
// };
const
getPhotoFn
=
()
=>
{
const
getPhotoFn
=
(
params
)
=>
{
getPhoto
(
params
).
then
((
res
)
=>
{
getPhoto
(
params
).
then
((
res
)
=>
{
res
.
data
.
forEach
((
v
)
=>
{
res
.
data
.
forEach
((
v
)
=>
{
if
(
v
.
images
)
{
if
(
v
.
images
)
{
...
@@ -91,6 +88,9 @@ const getPhotoFn = () => {
...
@@ -91,6 +88,9 @@ const getPhotoFn = () => {
photoData
.
value
=
[...
photoData
.
value
,
...
res
.
data
];
photoData
.
value
=
[...
photoData
.
value
,
...
res
.
data
];
});
});
};
};
const
back
=
()
=>
{
uni
.
navigateBack
();
};
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
@@ -103,21 +103,21 @@ uni-page-body {
...
@@ -103,21 +103,21 @@ uni-page-body {
flex-direction
:
column
;
flex-direction
:
column
;
background-color
:
#f3f3f3
;
background-color
:
#f3f3f3
;
.content
{
.content
{
padding
:
10px
5
px
;
padding
:
20rpx
10r
px
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
flex-grow
:
1
;
flex-grow
:
1
;
height
:
69
px
;
height
:
138r
px
;
.filter-box
{
.filter-box
{
display
:
flex
;
display
:
flex
;
background-color
:
#fff
;
background-color
:
#fff
;
padding
:
10
px
;
padding
:
20r
px
;
gap
:
10
px
;
gap
:
20r
px
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
div
{
div
{
padding
:
8
px
;
padding
:
16r
px
;
color
:
#3d3d3d
;
color
:
#3d3d3d
;
font-size
:
8
px
;
font-size
:
16r
px
;
border-radius
:
8
px
;
border-radius
:
16r
px
;
background-color
:
#eeeeee
;
background-color
:
#eeeeee
;
}
}
.active
{
.active
{
...
@@ -126,23 +126,23 @@ uni-page-body {
...
@@ -126,23 +126,23 @@ uni-page-body {
}
}
}
}
.card-wrap
{
.card-wrap
{
// margin-top:
5
px;
// margin-top:
10r
px;
display
:
grid
;
display
:
grid
;
grid-template-columns
:
1fr
1fr
;
grid-template-columns
:
1fr
1fr
;
gap
:
5
px
;
gap
:
10r
px
;
}
}
}
}
}
}
.back
{
.back
{
background-color
:
#fff
;
background-color
:
#fff
;
padding
:
20px
0
34px
;
padding
:
40rpx
0
;
box-shadow
:
0
px
-4px
8px
0
px
rgba
(
0
,
0
,
0
,
0
.12
);
box-shadow
:
0
rpx
-8rpx
16rpx
0r
px
rgba
(
0
,
0
,
0
,
0
.12
);
button
{
button
{
width
:
345
px
;
width
:
690r
px
;
height
:
44
px
;
height
:
88r
px
;
border-radius
:
34
px
;
border-radius
:
68r
px
;
background-color
:
#fa5151
;
background-color
:
#fa5151
;
font-size
:
16
px
;
font-size
:
32r
px
;
font-weight
:
500
;
font-weight
:
500
;
color
:
#ffffff
;
color
:
#ffffff
;
}
}
...
...
src/pages/assistingAgriculture/commentList/index.vue
View file @
f8ca61f7
...
@@ -89,8 +89,8 @@ const imgUrl = import.meta.env.VITE_APP_IMG_URL;
...
@@ -89,8 +89,8 @@ const imgUrl = import.meta.env.VITE_APP_IMG_URL;
const
tagList
=
ref
([]);
const
tagList
=
ref
([]);
const
commentData
=
ref
([]);
const
commentData
=
ref
([]);
const
commentParameters
=
{
const
commentParameters
=
{
shopId
:
'
1818876196597334017
'
,
shopId
:
''
,
prodId
:
'
43828
'
,
prodId
:
''
,
current
:
1
,
current
:
1
,
size
:
10
,
size
:
10
,
};
};
...
@@ -99,7 +99,9 @@ let total;
...
@@ -99,7 +99,9 @@ let total;
const
select
=
ref
(
-
1
);
const
select
=
ref
(
-
1
);
const
topData
=
ref
({});
const
topData
=
ref
({});
onLoad
((
options
)
=>
{
onLoad
(({
prodId
,
shopId
})
=>
{
commentParameters
.
prodId
=
prodId
;
commentParameters
.
shopId
=
shopId
;
getEvalStatisFn
();
getEvalStatisFn
();
getCommentListFn
();
getCommentListFn
();
});
});
...
...
src/pages/assistingAgriculture/detail/comment.vue
View file @
f8ca61f7
...
@@ -176,6 +176,7 @@ const rateList = ref({
...
@@ -176,6 +176,7 @@ const rateList = ref({
onLoad
(
async
(
options
)
=>
{
onLoad
(
async
(
options
)
=>
{
catalog
.
shopId
=
options
.
shopId
;
catalog
.
shopId
=
options
.
shopId
;
catalog
.
prodId
=
options
.
prodId
console
.
log
(
options
);
console
.
log
(
options
);
await
getList
();
await
getList
();
await
getTotal
();
await
getTotal
();
...
@@ -191,6 +192,7 @@ const catalog = reactive({
...
@@ -191,6 +192,7 @@ const catalog = reactive({
current
:
0
,
current
:
0
,
size
:
10
,
size
:
10
,
shopId
:
''
,
shopId
:
''
,
prodId
:
''
,
evaluation
:
''
,
// 关键字搜索
evaluation
:
''
,
// 关键字搜索
type
:
''
,
// img-图片,append-追评,diff-中差评,good-好评
type
:
''
,
// img-图片,append-追评,diff-中差评,good-好评
});
});
...
...
src/pages/assistingAgriculture/detail/detail.vue
View file @
f8ca61f7
...
@@ -92,6 +92,7 @@
...
@@ -92,6 +92,7 @@
</view>
</view>
</view>
</view>
</view>
</view>
<fab
position=
"3"
/>
</view>
</view>
</
template
>
</
template
>
...
@@ -107,6 +108,7 @@ import {
...
@@ -107,6 +108,7 @@ import {
getCouponShopList
,
getCouponShopList
,
receiveCoupon
,
receiveCoupon
,
}
from
'@/api/packageDetail'
;
}
from
'@/api/packageDetail'
;
import
fab
from
'../../../components/fab/fab.vue'
;
const
imgUrl
=
import
.
meta
.
env
.
VITE_APP_IMG_URL
;
const
imgUrl
=
import
.
meta
.
env
.
VITE_APP_IMG_URL
;
// 图片
// 图片
const
swiperList
=
ref
([
const
swiperList
=
ref
([
...
...
src/pages/index/foodClassification.vue
View file @
f8ca61f7
...
@@ -117,6 +117,7 @@
...
@@ -117,6 +117,7 @@
>
>
没有更多啦~
没有更多啦~
</view>
</view>
<fab
/>
</view>
</view>
</
template
>
</
template
>
...
@@ -125,6 +126,7 @@ import FoodDetails from '../../components/index/FoodDetails.vue';
...
@@ -125,6 +126,7 @@ import FoodDetails from '../../components/index/FoodDetails.vue';
// import Search from '../../components/index/Search.vue';
// import Search from '../../components/index/Search.vue';
import
Classification
from
'../../components/index/Classification.vue'
;
import
Classification
from
'../../components/index/Classification.vue'
;
import
Position
from
'../../components/index/Position.vue'
;
import
Position
from
'../../components/index/Position.vue'
;
import
fab
from
'../../components/fab/fab.vue'
;
import
Sort
from
'../../components/index/Sort.vue'
;
import
Sort
from
'../../components/index/Sort.vue'
;
import
{
getByParentId
,
merchantList
,
prodSpecial
}
from
'../../api/index'
;
import
{
getByParentId
,
merchantList
,
prodSpecial
}
from
'../../api/index'
;
...
...
src/pages/index/listFood.vue
View file @
f8ca61f7
...
@@ -73,6 +73,7 @@
...
@@ -73,6 +73,7 @@
>
>
没有更多啦~
没有更多啦~
</view>
</view>
<fab
/>
</view>
</view>
</
template
>
</
template
>
...
@@ -82,6 +83,7 @@ import FoodDetails from '../../components/index/FoodDetails.vue';
...
@@ -82,6 +83,7 @@ import FoodDetails from '../../components/index/FoodDetails.vue';
import
Classification
from
'../../components/index/Classification.vue'
;
import
Classification
from
'../../components/index/Classification.vue'
;
import
Position
from
'../../components/index/Position.vue'
;
import
Position
from
'../../components/index/Position.vue'
;
import
Sort
from
'../../components/index/Sort.vue'
;
import
Sort
from
'../../components/index/Sort.vue'
;
import
fab
from
'../../components/fab/fab.vue'
;
import
{
merchantList
,
getByParentId
,
getByType
}
from
'../../api/index'
;
import
{
merchantList
,
getByParentId
,
getByType
}
from
'../../api/index'
;
import
{
getLocation
}
from
'../../utils/tool'
;
import
{
getLocation
}
from
'../../utils/tool'
;
const
business
=
reactive
([
'优选商家'
,
'超值半价'
,
'今日可订'
,
'经典单人'
]);
const
business
=
reactive
([
'优选商家'
,
'超值半价'
,
'今日可订'
,
'经典单人'
]);
...
...
src/pages/packageDetails/packageDetails.vue
View file @
f8ca61f7
...
@@ -245,12 +245,14 @@
...
@@ -245,12 +245,14 @@
</view>
</view>
<!-- 底部-end -->
<!-- 底部-end -->
</view>
</view>
<fab
/>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
{
getProdDetail
,
getCollect
,
getCouponShopList
,
receiveCoupon
}
from
'@/api/packageDetail'
;
import
{
getProdDetail
,
getCollect
,
getCouponShopList
,
receiveCoupon
}
from
'@/api/packageDetail'
;
import
{
getStoreInformation
}
from
'@/api/shop'
;
import
{
getStoreInformation
}
from
'@/api/shop'
;
import
{
getDistance
}
from
'@/utils/common'
;
import
{
getDistance
}
from
'@/utils/common'
;
import
fab
from
'../../components/fab/fab.vue'
;
const
prodInfo
=
ref
({});
const
prodInfo
=
ref
({});
const
prodRlue
=
ref
({});
const
prodRlue
=
ref
({});
const
myProdId
=
ref
(
''
);
const
myProdId
=
ref
(
''
);
...
...
src/pages/shop/shop.vue
View file @
f8ca61f7
...
@@ -291,10 +291,12 @@
...
@@ -291,10 +291,12 @@
</view>
</view>
<!-- 周边推荐-end -->
<!-- 周边推荐-end -->
</view>
</view>
<fab
/>
</view>
</view>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
fab
from
'../../components/fab/fab.vue'
;
import
{
import
{
likeOrDislike
,
likeOrDislike
,
getStoreInformation
,
getStoreInformation
,
...
...
src/pages/ticket/ticket.vue
View file @
f8ca61f7
...
@@ -144,8 +144,8 @@ onLoad(async () => {
...
@@ -144,8 +144,8 @@ onLoad(async () => {
// 优惠券状态 0:失效 2:已使用,3-未使用
// 优惠券状态 0:失效 2:已使用,3-未使用
const
iconUrl
=
ref
({
const
iconUrl
=
ref
({
0
:
'
@
/static/ticket/past-icon.png'
,
0
:
'
../..
/static/ticket/past-icon.png'
,
2
:
'
@
/static/ticket/used-icon.png'
,
2
:
'
../../
/static/ticket/used-icon.png'
,
});
});
// 主状态
// 主状态
...
...
src/static/assistingAgriculture/assets/like.png
0 → 100644
View file @
f8ca61f7
1.12 KB
src/static/assistingAgriculture/assets/likeFilled.png
0 → 100644
View file @
f8ca61f7
742 Bytes
src/static/index/shoppingCart.png
0 → 100644
View file @
f8ca61f7
1.65 KB
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