From abe786d155646ea741ff45b70ebf57d9d8bb46d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F=E5=95=BE?= <1144797966@qq.com> Date: Sun, 14 Jul 2024 11:04:06 +0800 Subject: [PATCH 1/8] =?UTF-8?q?page=20=20=E6=94=B9=E4=B8=BA30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/invoicing/components/shopList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/invoicing/components/shopList.vue b/src/views/invoicing/components/shopList.vue index dc5ae97..f5277a8 100644 --- a/src/views/invoicing/components/shopList.vue +++ b/src/views/invoicing/components/shopList.vue @@ -80,7 +80,7 @@ export default { categoryList: [], tableData: { page: 0, - size: 10, + size: 30, total: 0, loading: false, list: [] @@ -114,7 +114,7 @@ export default { this.searhForm.name = '' this.searhForm.category = '' this.tableData.page = 0 - this.tableData.size = 10 + this.tableData.size = 30 this.tableData.list = [] this.getTableData() }, From cfa32e18ba3db637b1f4f2b013054adef35e2dc1 Mon Sep 17 00:00:00 2001 From: duan <1004387497@qq.com> Date: Mon, 15 Jul 2024 10:35:35 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=AE=89=E5=85=A8=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E5=90=8E=E9=87=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/shop/components/securitySetting.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/shop/components/securitySetting.vue b/src/views/shop/components/securitySetting.vue index ca32b64..5602d91 100644 --- a/src/views/shop/components/securitySetting.vue +++ b/src/views/shop/components/securitySetting.vue @@ -49,7 +49,16 @@ export default { code: this.form.prepareAmount, pwd: md5(this.form.password), } + if (!this.form.prepareAmount) { + this.$message({ + message: "请输入验证码或密码" + }) + return + } const res = await modfiyUserInfo(data); + this.form.prepareAmount = '' + this.form.password = "******" + this.disabled = true this.$message({ message: '修改成功', type: 'success' From 7cadb25712f8f89fdd39365218b555bc1da49b2e Mon Sep 17 00:00:00 2001 From: duan <1004387497@qq.com> Date: Wed, 17 Jul 2024 18:06:13 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E4=BB=8E=E5=95=86=E5=93=81=E5=BA=93?= =?UTF-8?q?=E5=AD=98-=E5=BA=93=E5=AD=98=E8=AE=B0=E5=BD=95-=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E8=AE=A2=E5=8D=95=E5=8F=B7=E8=B7=B3=E8=BD=AC=E8=BF=87?= =?UTF-8?q?=E6=9D=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/invoicing.js | 10 ++ .../invoicing/components/invoicingDetail.vue | 10 ++ src/views/invoicing/goods_stoks.vue | 23 ++++- src/views/order_manage/order_list.vue | 93 ++++++------------- 4 files changed, 70 insertions(+), 66 deletions(-) diff --git a/src/api/invoicing.js b/src/api/invoicing.js index 06432bc..cbf2b92 100644 --- a/src/api/invoicing.js +++ b/src/api/invoicing.js @@ -241,6 +241,16 @@ export function stockStateChange(params) { } }); } +// 下架 +export function stockStateChangess(params) { + return request({ + url: `/api/stock/grounding`, + method: "put", + params: { + ...params + } + }); +} // 警戒设置 export function stockStatewarnLine(params) { return request({ diff --git a/src/views/invoicing/components/invoicingDetail.vue b/src/views/invoicing/components/invoicingDetail.vue index b70f107..2dfdbdb 100644 --- a/src/views/invoicing/components/invoicingDetail.vue +++ b/src/views/invoicing/components/invoicingDetail.vue @@ -43,6 +43,13 @@ {{ scope.row.leftNumber + scope.row.stockNumber }} {{ scope.row.unitName }} + + + - + + + + + -
+
\ No newline at end of file From 58bf05d7c426dd79f675293b8dafb44d5280d3b8 Mon Sep 17 00:00:00 2001 From: YeMingfei666 <1619116647@qq.com> Date: Fri, 19 Jul 2024 09:04:36 +0800 Subject: [PATCH 7/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/invoicing/components/cons_record_detail.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/invoicing/components/cons_record_detail.vue b/src/views/invoicing/components/cons_record_detail.vue index ca2b244..af0677d 100644 --- a/src/views/invoicing/components/cons_record_detail.vue +++ b/src/views/invoicing/components/cons_record_detail.vue @@ -160,10 +160,11 @@ export default { }, }; - + \ No newline at end of file