From 02286c80c317d1b09a16496c8ee87501d0c6d69c Mon Sep 17 00:00:00 2001 From: "liujw155@outlook.com" Date: Wed, 22 Dec 2021 16:30:23 +0800 Subject: [PATCH] add mall write off --- src/pages.json | 18 ++ src/pages/write_off/mall/confirm/confirm.vue | 199 +++++++++++++++++++++ src/pages/write_off/mall/list/list.vue | 152 ++++++++++++++++ src/pages/write_off/mall/success/success.vue | 135 ++++++++++++++ .../number_of_people/number_of_people.vue | 91 +++++++++- 5 files changed, 594 insertions(+), 1 deletion(-) create mode 100644 src/pages/write_off/mall/confirm/confirm.vue create mode 100644 src/pages/write_off/mall/list/list.vue create mode 100644 src/pages/write_off/mall/success/success.vue diff --git a/src/pages.json b/src/pages.json index c8cc1fc..4c5beba 100644 --- a/src/pages.json +++ b/src/pages.json @@ -134,6 +134,24 @@ } }, { + "path": "pages/write_off/mall/success/success", + "style": { + "navigationBarTitleText": "核销订单" + } + }, + { + "path": "pages/write_off/mall/confirm/confirm", + "style": { + "navigationBarTitleText": "核销订单" + } + }, + { + "path": "pages/write_off/mall/list/list", + "style": { + "navigationBarTitleText": "商城订单核销" + } + }, + { "path": "pages/write_off/number_of_people/number_of_people", "style": { "navigationBarTitleText": "查询" diff --git a/src/pages/write_off/mall/confirm/confirm.vue b/src/pages/write_off/mall/confirm/confirm.vue new file mode 100644 index 0000000..0ab34a9 --- /dev/null +++ b/src/pages/write_off/mall/confirm/confirm.vue @@ -0,0 +1,199 @@ + + + + + \ No newline at end of file diff --git a/src/pages/write_off/mall/list/list.vue b/src/pages/write_off/mall/list/list.vue new file mode 100644 index 0000000..e1cf36d --- /dev/null +++ b/src/pages/write_off/mall/list/list.vue @@ -0,0 +1,152 @@ + + + + + \ No newline at end of file diff --git a/src/pages/write_off/mall/success/success.vue b/src/pages/write_off/mall/success/success.vue new file mode 100644 index 0000000..536e14f --- /dev/null +++ b/src/pages/write_off/mall/success/success.vue @@ -0,0 +1,135 @@ + + + + + \ No newline at end of file diff --git a/src/pages/write_off/number_of_people/number_of_people.vue b/src/pages/write_off/number_of_people/number_of_people.vue index 8cebbd4..777aecb 100644 --- a/src/pages/write_off/number_of_people/number_of_people.vue +++ b/src/pages/write_off/number_of_people/number_of_people.vue @@ -17,7 +17,23 @@ 温馨提示:\n\r修改现场人数可能会影响现场灯光开关,请谨慎操作! 如后台有开启散客开关灯功能的,则散客人数达到阶梯最低X人时,对应灯光会自动开灯;少于X人的已开启的灯会自动关闭。 - + + + + 修改现场散客人数 + + 当前现场散客人数为:69 + + + + 修改现场人数可能会影响现场灯光开关,请谨慎操作! + + + 取消 + 确认 + + + @@ -99,5 +115,78 @@ export default { } } + .nop-modifies-modal{ + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + padding-top: 78upx; + width: 620upx; + height: 706upx; + background-color: #fff; + border-radius: 10upx; + .nmm-close{ + position: absolute; + right: 30upx; + top: 30upx; + width: 34upx; + height: 34upx; + background-color: skyblue; + } + .nmm-tit{ + line-height: 44upx; + text-align: center; + font-weight: 500; + font-size: 32upx; + color: #1A1A1A; + } + .nmm-info{ + padding: 54upx 80upx 80upx; + .ni-num{ + margin-bottom: 30upx; + font-size: 28upx; + line-height: 48upx; + color: #1A1A1A; + @include textHide(1); + } + .ni-ipt{ + margin-bottom: 26upx; + padding: 0 20upx; + height: 88upx; + border-radius: 10upx; + border: 2upx solid #D8D8D8; + >input{ + flex-grow: 1; + height: 100%; + font-size: 28upx; + color: #1A1A1A; + } + } + .ni-tip{ + font-size: 24upx; + line-height: 34upx; + color: #EA5061; + } + } + .nmm-btns{ + @include centerFlex(center); + >view{ + margin: 0 10upx; + width: 240upx; + height: 88upx; + line-height: 84upx; + text-align: center; + font-size: 32upx; + border-radius: 10upx; + border: 2upx solid $themeColor; + color: $themeColor; + &+view{ + color: #fff; + background-color: $themeColor; + } + } + } + + } } \ No newline at end of file