From 01eeccaecfafad2257a4b1e18bdc56f5e9c6dd38 Mon Sep 17 00:00:00 2001 From: GaoHao <1210693421@qq.com> Date: Fri, 25 Oct 2024 09:55:57 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=BC=98=E6=83=A0?= =?UTF-8?q?=E5=88=B8=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components copy/wine/addModal.vue | 388 ++++++++++++++++++ .../components copy/wine/record.vue | 145 +++++++ .../components copy/winestorage/addModal.vue | 188 +++++++++ .../winestorage/historyModal.vue | 38 ++ .../components copy/winestorage/record.vue | 166 ++++++++ .../components copy/winetotal/winetotal.vue | 82 ++++ .../addCoupon.vue => add_coupon.vue} | 255 +++++++----- .../components/coupon_details.vue | 204 +++++++++ src/views/coupon_manage/couponEnum.js | 25 +- src/views/coupon_manage/coupon_list.vue | 51 +-- 10 files changed, 1413 insertions(+), 129 deletions(-) create mode 100644 src/views/application/components copy/wine/addModal.vue create mode 100644 src/views/application/components copy/wine/record.vue create mode 100644 src/views/application/components copy/winestorage/addModal.vue create mode 100644 src/views/application/components copy/winestorage/historyModal.vue create mode 100644 src/views/application/components copy/winestorage/record.vue create mode 100644 src/views/application/components copy/winetotal/winetotal.vue rename src/views/coupon_manage/{components/addCoupon.vue => add_coupon.vue} (53%) create mode 100644 src/views/coupon_manage/components/coupon_details.vue diff --git a/src/views/application/components copy/wine/addModal.vue b/src/views/application/components copy/wine/addModal.vue new file mode 100644 index 0000000..a52be43 --- /dev/null +++ b/src/views/application/components copy/wine/addModal.vue @@ -0,0 +1,388 @@ + + + + + \ No newline at end of file diff --git a/src/views/application/components copy/wine/record.vue b/src/views/application/components copy/wine/record.vue new file mode 100644 index 0000000..7e4ada5 --- /dev/null +++ b/src/views/application/components copy/wine/record.vue @@ -0,0 +1,145 @@ + + + \ No newline at end of file diff --git a/src/views/application/components copy/winestorage/addModal.vue b/src/views/application/components copy/winestorage/addModal.vue new file mode 100644 index 0000000..c7c0b84 --- /dev/null +++ b/src/views/application/components copy/winestorage/addModal.vue @@ -0,0 +1,188 @@ + + + + + \ No newline at end of file diff --git a/src/views/application/components copy/winestorage/historyModal.vue b/src/views/application/components copy/winestorage/historyModal.vue new file mode 100644 index 0000000..41961be --- /dev/null +++ b/src/views/application/components copy/winestorage/historyModal.vue @@ -0,0 +1,38 @@ + + + \ No newline at end of file diff --git a/src/views/application/components copy/winestorage/record.vue b/src/views/application/components copy/winestorage/record.vue new file mode 100644 index 0000000..4837e0b --- /dev/null +++ b/src/views/application/components copy/winestorage/record.vue @@ -0,0 +1,166 @@ + + + \ No newline at end of file diff --git a/src/views/application/components copy/winetotal/winetotal.vue b/src/views/application/components copy/winetotal/winetotal.vue new file mode 100644 index 0000000..5a57a65 --- /dev/null +++ b/src/views/application/components copy/winetotal/winetotal.vue @@ -0,0 +1,82 @@ + + + + + \ No newline at end of file diff --git a/src/views/coupon_manage/components/addCoupon.vue b/src/views/coupon_manage/add_coupon.vue similarity index 53% rename from src/views/coupon_manage/components/addCoupon.vue rename to src/views/coupon_manage/add_coupon.vue index fa12b7a..25d5dea 100644 --- a/src/views/coupon_manage/components/addCoupon.vue +++ b/src/views/coupon_manage/add_coupon.vue @@ -1,83 +1,111 @@ \ No newline at end of file diff --git a/src/views/coupon_manage/components/coupon_details.vue b/src/views/coupon_manage/components/coupon_details.vue new file mode 100644 index 0000000..b0fb115 --- /dev/null +++ b/src/views/coupon_manage/components/coupon_details.vue @@ -0,0 +1,204 @@ + + + + + diff --git a/src/views/coupon_manage/couponEnum.js b/src/views/coupon_manage/couponEnum.js index 9bf81ab..94a6b6e 100644 --- a/src/views/coupon_manage/couponEnum.js +++ b/src/views/coupon_manage/couponEnum.js @@ -19,14 +19,33 @@ export default { label: '折扣' } ], - effectType: [ + cycle: [ + { label: '周一'}, + { label: '周二'}, + { label: '周三'}, + { label: '周四'}, + { label: '周五'}, + { label: '周六'}, + { label: '周七'}, + ], + validityType: [ { value: '0', - label: '一直有效' + label: '领券后有效期内可用' }, { value: '1', - label: '时限有效' + label: '固定有效期范围内可用' + } + ], + effectType: [ + { + value: '0', + label: '全时段可用' + }, + { + value: '1', + label: '指定时间段' } ] } \ No newline at end of file diff --git a/src/views/coupon_manage/coupon_list.vue b/src/views/coupon_manage/coupon_list.vue index 9c9b65a..ec307f0 100644 --- a/src/views/coupon_manage/coupon_list.vue +++ b/src/views/coupon_manage/coupon_list.vue @@ -1,42 +1,43 @@ \ No newline at end of file + From 30d4be1560044c8c97c3342651f29461bff48975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=95=BE?= <1144797966@qq.com> Date: Wed, 30 Oct 2024 13:32:43 +0800 Subject: [PATCH 3/8] =?UTF-8?q?unbind=E6=9C=AA=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/table/status.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/table/status.js b/src/views/table/status.js index 5dd3993..a8d2007 100644 --- a/src/views/table/status.js +++ b/src/views/table/status.js @@ -30,5 +30,9 @@ export default { cleaning: { label: "待清台", type: "#FAAD14", + }, + unbind: { + label: "未绑定", + type: "rgb(221,221,221)", } } \ No newline at end of file From 909760e9bf6ec2b48af232c80624745623232fe2 Mon Sep 17 00:00:00 2001 From: duan <1004387497@qq.com> Date: Wed, 30 Oct 2024 16:50:32 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E8=80=97=E6=9D=90=E5=89=AF=E5=8D=95?= =?UTF-8?q?=E4=BD=8D=E5=9B=9E=E6=98=BE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/invoicing/consumable/information.vue | 4 ++++ src/views/invoicing/operation_in.vue | 2 +- src/views/invoicing/operation_out.vue | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/invoicing/consumable/information.vue b/src/views/invoicing/consumable/information.vue index c29c018..cc1b31f 100644 --- a/src/views/invoicing/consumable/information.vue +++ b/src/views/invoicing/consumable/information.vue @@ -889,6 +889,10 @@ export default { // 单位编辑 editorHandles(row) { this.unitItem = row; + this.switchs = 2 + if (row.conUnitTwo) { + this.switchs = 1 + } this.dialogtitleunit = true; }, diff --git a/src/views/invoicing/operation_in.vue b/src/views/invoicing/operation_in.vue index 5339e28..97bd84d 100644 --- a/src/views/invoicing/operation_in.vue +++ b/src/views/invoicing/operation_in.vue @@ -124,7 +124,7 @@