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
2dd1d51c
Commit
2dd1d51c
authored
Mar 18, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单管理页面修改订单优惠卷id字段
parent
bad0b4dd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
index.vue
src/views/system/order/index.vue
+1
-1
roomOrderIndex.vue
src/views/system/order/roomOrderIndex.vue
+10
-10
No files found.
src/views/system/order/index.vue
View file @
2dd1d51c
...
...
@@ -225,7 +225,7 @@
<dict-tag
:options=
"dict.type.store_platform_type"
:value=
"scope.row.platformType"
/>
</
template
>
</el-table-column>
<el-table-column
v-if=
"columns[10].visible"
align=
"center"
label=
"优惠券id"
prop=
"coupon
Sku
Id"
width=
"100"
/>
<el-table-column
v-if=
"columns[10].visible"
align=
"center"
label=
"优惠券id"
prop=
"couponId"
width=
"100"
/>
<el-table-column
v-if=
"columns[11].visible"
label=
"优惠券名称"
align=
"center"
prop=
"couponName"
width=
"100"
/>
<el-table-column
v-if=
"columns[12].visible"
align=
"center"
label=
"优惠券原价"
prop=
"couponPrice"
width=
"100"
/>
<el-table-column
v-if=
"columns[13].visible"
align=
"center"
label=
"优惠券促销价"
prop=
"couponPayPrice"
width=
"100"
/>
...
...
src/views/system/order/roomOrderIndex.vue
View file @
2dd1d51c
...
...
@@ -14,32 +14,32 @@
<!--
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
-->
</el-row>
<el-table
v-loading=
"loading"
:data=
"orderList"
>
<el-table-column
align=
"center"
label=
"订单编号"
prop=
"orderNo"
width=
"
1
50"
/>
<el-table-column
align=
"center"
label=
"门店名称"
prop=
"storeName"
width=
"120"
/>
<el-table-column
align=
"center"
label=
"房间名称"
prop=
"roomName"
width=
"120"
/>
<el-table-column
align=
"center"
label=
"手机号"
prop=
"consumerPhone"
width=
"110"
/>
<el-table-column
align=
"center"
label=
"会员昵称"
prop=
"consumerName"
width=
"100"
/>
<el-table-column
align=
"center"
label=
"预约开始时间"
prop=
"preStartDate"
width=
"100"
>
<el-table-column
align=
"center"
label=
"订单编号"
prop=
"orderNo"
width=
"
2
50"
/>
<el-table-column
align=
"center"
label=
"门店名称"
prop=
"storeName"
/>
<el-table-column
align=
"center"
label=
"房间名称"
prop=
"roomName"
/>
<el-table-column
align=
"center"
label=
"手机号"
prop=
"consumerPhone"
/>
<el-table-column
align=
"center"
label=
"会员昵称"
prop=
"consumerName"
/>
<el-table-column
align=
"center"
label=
"预约开始时间"
prop=
"preStartDate"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
preStartDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"预约结束时间"
align
=
"center"
prop
=
"preEndDate"
width
=
"100
"
>
<
el
-
table
-
column
align
=
"center"
label
=
"预约结束时间"
prop
=
"preEndDate
"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
preEndDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"开始时间"
align
=
"center"
prop
=
"startDate"
width
=
"100
"
>
<
el
-
table
-
column
align
=
"center"
label
=
"开始时间"
prop
=
"startDate
"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
startDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"结束时间"
align
=
"center"
prop
=
"endDate"
width
=
"100
"
>
<
el
-
table
-
column
align
=
"center"
label
=
"结束时间"
prop
=
"endDate
"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
parseTime
(
scope
.
row
.
endDate
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"center"
label
=
"订单状态"
prop
=
"status"
width
=
"100"
>
<
el
-
table
-
column
align
=
"center"
label
=
"订单状态"
prop
=
"status"
>
<
template
slot
-
scope
=
"scope"
>
<
dict
-
tag
:
options
=
"dict.type.order_status_admin"
:
value
=
"scope.row.status"
/>
<
/template
>
...
...
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