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
ab5ad951
Commit
ab5ad951
authored
Aug 06, 2024
by
彭佳妮(贵阳日报)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退款
parent
d1900331
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
15 deletions
+24
-15
afterSales.vue
src/pages/order/afterSales.vue
+1
-4
index.vue
src/pages/storeEntry/index.vue
+1
-4
ticket.vue
src/pages/ticket/ticket.vue
+22
-7
No files found.
src/pages/order/afterSales.vue
View file @
ab5ad951
...
@@ -2,15 +2,12 @@
...
@@ -2,15 +2,12 @@
<view
class=
"container"
>
<view
class=
"container"
>
<Header
title=
"售后"
></Header>
<Header
title=
"售后"
></Header>
<view
class=
"content"
>
<view
class=
"content"
>
111
</view>
111
</view>
</view>
</view>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
Header
from
'@/pages/order/components/Header/index.vue'
;
import
Header
from
'@/pages/order/components/Header/index.vue'
;
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
...
src/pages/storeEntry/index.vue
View file @
ab5ad951
...
@@ -2,15 +2,12 @@
...
@@ -2,15 +2,12 @@
<view
class=
"container"
>
<view
class=
"container"
>
<Header
title=
"我的店铺"
></Header>
<Header
title=
"我的店铺"
></Header>
<view
class=
"content"
>
<view
class=
"content"
>
111
</view>
111
</view>
</view>
</view>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
import
Header
from
'@/pages/order/components/Header/index.vue'
;
import
Header
from
'@/pages/order/components/Header/index.vue'
;
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
...
...
src/pages/ticket/ticket.vue
View file @
ab5ad951
...
@@ -2,8 +2,12 @@
...
@@ -2,8 +2,12 @@
<view
class=
"container"
>
<view
class=
"container"
>
<Header
title=
"我的券"
></Header>
<Header
title=
"我的券"
></Header>
<view
class=
"tab"
>
<view
class=
"tab"
>
<view
:class=
"currentTab == index ? 'tab-select' : 'tab-item'"
@
click=
"changeTab(index)"
<view
v-for=
"(item, index) in tabList"
:key=
"index"
>
:class=
"currentTab == index ? 'tab-select' : 'tab-item'"
@
click=
"changeTab(index)"
v-for=
"(item, index) in tabList"
:key=
"index"
>
{{
item
}}
{{
item
}}
</view>
</view>
</view>
</view>
...
@@ -15,8 +19,12 @@
...
@@ -15,8 +19,12 @@
<!-- 优惠券状态 -->
<!-- 优惠券状态 -->
<view
class=
"status"
>
<view
class=
"status"
>
<view
:class=
"currenStatus == index ? 'status-select' : 'status-item'"
@
click=
"changeStatus(index)"
<view
v-for=
"(item, index) in statusList"
:key=
"index"
>
:class=
"currenStatus == index ? 'status-select' : 'status-item'"
@
click=
"changeStatus(index)"
v-for=
"(item, index) in statusList"
:key=
"index"
>
{{
item
}}
{{
item
}}
</view>
</view>
</view>
</view>
...
@@ -39,7 +47,11 @@
...
@@ -39,7 +47,11 @@
</view>
</view>
<view
class=
"ticket-right"
>
<view
class=
"ticket-right"
>
<image
class=
"img"
:src=
"iconUrl[item.status]"
v-if=
"item.status == 0 || item.status == 2"
></image>
<image
class=
"img"
:src=
"iconUrl[item.status]"
v-if=
"item.status == 0 || item.status == 2"
></image>
<view
class=
"head"
>
<view
class=
"head"
>
<text
class=
"title"
>
{{
item
.
couponName
}}
</text>
<text
class=
"title"
>
{{
item
.
couponName
}}
</text>
<view
class=
"headbox"
>
<view
class=
"headbox"
>
...
@@ -55,8 +67,11 @@
...
@@ -55,8 +67,11 @@
<view
class=
"line"
></view>
<view
class=
"line"
></view>
<view
class=
"footbox"
@
click=
"handleChangeDetail(index)"
>
<view
class=
"footbox"
@
click=
"handleChangeDetail(index)"
>
<text
class=
"desc"
>
详细信息
</text>
<text
class=
"desc"
>
详细信息
</text>
<wd-icon
:name=
"item.showDetail ? 'chevron-down' : 'chevron-right'"
size=
"15px"
<wd-icon
color=
"#9d9d9d"
></wd-icon>
:name=
"item.showDetail ? 'chevron-down' : 'chevron-right'"
size=
"15px"
color=
"#9d9d9d"
></wd-icon>
</view>
</view>
</view>
</view>
</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