Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
Overview
Overview
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
pseer
gxpt_web
Commits
daf16e39
Commit
daf16e39
authored
Mar 11, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优惠券领取记录表中,添加优惠券发放时间
parent
dc0802d6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
index.vue
src/views/system/consumerCoupon/index.vue
+6
-1
index.vue
src/views/system/refund/index.vue
+4
-4
No files found.
src/views/system/consumerCoupon/index.vue
View file @
daf16e39
...
@@ -225,7 +225,12 @@
...
@@ -225,7 +225,12 @@
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"使用时间"
align
=
"center"
prop
=
"useDate"
width
=
"180"
>
<
el
-
table
-
column
label
=
"使用时间"
align
=
"center"
prop
=
"useDate"
width
=
"180"
>
<
template
slot
-
scope
=
"scope"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
useDate
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
span
>
{{
parseTime
(
scope
.
row
.
useDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"优惠卷发放时间"
align
=
"center"
prop
=
"createTime"
width
=
"180"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
createTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<!--
<
el
-
table
-
column
label
=
"使用状态"
align
=
"center"
prop
=
"useStatus"
/>-->
<!--
<
el
-
table
-
column
label
=
"使用状态"
align
=
"center"
prop
=
"useStatus"
/>-->
...
...
src/views/system/refund/index.vue
View file @
daf16e39
...
@@ -200,16 +200,16 @@
...
@@ -200,16 +200,16 @@
<el-table-column
label=
"优惠券金额"
align=
"center"
prop=
"couponPrice"
width=
"100"
/>
<el-table-column
label=
"优惠券金额"
align=
"center"
prop=
"couponPrice"
width=
"100"
/>
<el-table-column
label=
"订单总价"
align=
"center"
prop=
"totalPrice"
/>
<el-table-column
label=
"订单总价"
align=
"center"
prop=
"totalPrice"
/>
<el-table-column
label=
"实际支付金额"
align=
"center"
prop=
"payPrice"
width=
"110"
/>
<el-table-column
label=
"实际支付金额"
align=
"center"
prop=
"payPrice"
width=
"110"
/>
<el-table-column
label=
"支付时间"
align=
"center"
prop=
"payTime"
width=
"1
2
0"
>
<el-table-column
label=
"支付时间"
align=
"center"
prop=
"payTime"
width=
"1
8
0"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
payTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
payTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"订单时长"
align
=
"center"
prop
=
"timeLong"
/>
<
el
-
table
-
column
label
=
"订单时长"
align
=
"center"
prop
=
"timeLong"
/>
<
el
-
table
-
column
label
=
"退款说明"
align
=
"center"
prop
=
"refundReason"
/>
<
el
-
table
-
column
label
=
"退款说明"
align
=
"center"
prop
=
"refundReason"
/>
<
el
-
table
-
column
label
=
"退款时间"
align
=
"center"
prop
=
"refundReasonTime"
width
=
"1
2
0"
>
<
el
-
table
-
column
label
=
"退款时间"
align
=
"center"
prop
=
"refundReasonTime"
width
=
"1
8
0"
>
<
template
slot
-
scope
=
"scope"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
refundReasonTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<
span
>
{{
parseTime
(
scope
.
row
.
refundReasonTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"退款金额"
align
=
"center"
prop
=
"refundPrice"
/>
<
el
-
table
-
column
label
=
"退款金额"
align
=
"center"
prop
=
"refundPrice"
/>
...
...
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