From f12d8b66444abf4bd607e55d96fbc14d666ce252 Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Thu, 18 Jun 2020 13:49:24 +0800 Subject: [PATCH 01/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BF=94=E5=9B=9E?= =?UTF-8?q?=EF=BC=8C=E6=A0=B7=E5=BC=8F=E9=97=AE=E9=A2=98=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Login.vue | 2 +- src/pages/shop/IncreaseStaffManager.vue | 3 ++- src/pages/user/AccountManagementModify.vue | 10 ++++++---- src/pages/user/AccountManagerAdd.vue | 9 +++++---- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/pages/Login.vue b/src/pages/Login.vue index 3b040fd..b5dbd13 100644 --- a/src/pages/Login.vue +++ b/src/pages/Login.vue @@ -104,7 +104,7 @@ sessionStorage.setItem("userId", data.data.results.userId); sessionStorage.setItem("roleCode", data.data.results.roleCode); that.$router.push('/home'); - that.$Message.info("登陆成功"); + that.$Message.success("登陆成功"); }else if(code === '0004'){ that.$Message.info("账号不存在"); }else if(code === '0003'){ diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index 9b5e2a8..1c9c1b0 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -501,7 +501,8 @@ export default { } }, back: function() { - this.$router.push({ path: "/shop/increase/manager" }); + // this.$router.push({ path: "/shop/increase/manager" }); + this.$router.back(); }, // 删除 remove: function(row) { diff --git a/src/pages/user/AccountManagementModify.vue b/src/pages/user/AccountManagementModify.vue index f05baa6..1115bba 100644 --- a/src/pages/user/AccountManagementModify.vue +++ b/src/pages/user/AccountManagementModify.vue @@ -133,7 +133,7 @@ > @@ -293,15 +293,17 @@ import IncreaseData from "../../services/generalize/IncreaseData"; that.$Message.error("该账号已经被使用!"); } else if (data.results == 0) { that.$Message.success("修改账号成功"); - that.$router.push({ path: "/account/manager" }); + // that.$router.push({ path: "/account/manager" }); + that.goBackPage(); } } }); }); }, //修改账号取消 - modifyAccountcancel: function() { - this.$router.push({ path: "/account/manager" }); + goBackPage: function() { + // this.$router.push({ path: "/account/manager" }); + this.$router.back(); }, //角色改变 roleChange(roleBean) { diff --git a/src/pages/user/AccountManagerAdd.vue b/src/pages/user/AccountManagerAdd.vue index cad6e4f..91db6ab 100644 --- a/src/pages/user/AccountManagerAdd.vue +++ b/src/pages/user/AccountManagerAdd.vue @@ -134,7 +134,7 @@ > @@ -294,15 +294,16 @@ that.$Message.error("该账号已经被使用!"); } else if (data.results == "0000") { that.$Message.success("保存账号成功"); - that.$router.push({ path: "/account/manager" }); + that.goBackPage(); } } }); }); }, // 添加账号取消 - addAccountCancel: function() { - this.$router.push({ path: "/account/manager" }); + goBackPage: function() { + // this.$router.push({ path: "/account/manager" }); + this.$router.back(); }, //角色改变 roleChange(roleBean) { From 86054700b74ba5e0293fd86e88701c633fe46648 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Fri, 19 Jun 2020 13:48:08 +0800 Subject: [PATCH 02/17] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E5=AE=A2=E6=88=B7type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseDataStaff.vue | 8 ++++++++ src/pages/shop/IncreaseStaffManager.vue | 17 ++++++++++++++--- src/services/staff/staff.js | 5 +++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/src/pages/shop/IncreaseDataStaff.vue b/src/pages/shop/IncreaseDataStaff.vue index bd57302..5294149 100644 --- a/src/pages/shop/IncreaseDataStaff.vue +++ b/src/pages/shop/IncreaseDataStaff.vue @@ -118,6 +118,14 @@ { title: '日增好友平均(去重)', key: 'avgNewCustomer' + }, + { + title: '历史门店拓客总数', + key: 'historyAllCustomers' + }, + { + title: '历史门店新增好友数', + key: 'historyAddCustomers' } ], data1: [], diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index 1c9c1b0..421825f 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -221,7 +221,7 @@ export default { return h("div", [ h("i-switch", { props: { - value: params.row.status, + value: params.row.accountFlag, "true-value": 1, //开启值 "false-value": 2, //关闭值 size: "large" @@ -233,11 +233,11 @@ export default { // _this.modifyStatus(params.row.accountId, value); let request = { status: value, - id: _this.formValidate.id + id: params.row.accountId }; debugger; //修改接口 - _this.editSattf(request); + _this.editSattfStatus(request); } }, scopedSlots: { @@ -441,6 +441,17 @@ export default { } }); }, + editSattfStatus: function(request) { + let that = this; + staff.editSattf(request, function(data) { + data = data.data; + if (data.code == "0000") { + that.$Message.success("修改成功!"); + that.isShowAdd = false; + that.listOfLogistics(); + } + }); + }, searchCustomerDataBtnClick: function() { this.listOfLogistics(); diff --git a/src/services/staff/staff.js b/src/services/staff/staff.js index d297f5f..6937bb7 100644 --- a/src/services/staff/staff.js +++ b/src/services/staff/staff.js @@ -44,6 +44,10 @@ export function editSattf(params, call) { return http.post('/store/staff/edit',params).then(call) } +export function editSattfStatus(params, call) { + return http.post('/account/modify/status',params).then(call) +} + export function removeStaff(params, call) { return http.post('/store/staff/delete',params).then(call) } @@ -55,5 +59,6 @@ export default { downRoleData, addSattf, editSattf, + editSattfStatus, removeStaff } From aace02150a0a0521108501e5269910957a4d1352 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Fri, 19 Jun 2020 15:50:00 +0800 Subject: [PATCH 03/17] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E5=AE=A2=E6=88=B7type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index 421825f..d8e17fc 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -222,8 +222,8 @@ export default { h("i-switch", { props: { value: params.row.accountFlag, - "true-value": 1, //开启值 - "false-value": 2, //关闭值 + "true-value": true, //开启值 + "false-value": false, //关闭值 size: "large" }, on: { From 72b450bc83a8631bd518419c8ec7f024ed66e57f Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Fri, 19 Jun 2020 00:25:45 +0800 Subject: [PATCH 04/17] =?UTF-8?q?=E7=BB=84=E7=BB=87=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=8C=E9=97=A8=E5=BA=97=E4=BF=AE=E6=94=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/organization/OrganizationStore.vue | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/pages/organization/OrganizationStore.vue b/src/pages/organization/OrganizationStore.vue index f0fd69f..3abd9d8 100644 --- a/src/pages/organization/OrganizationStore.vue +++ b/src/pages/organization/OrganizationStore.vue @@ -66,8 +66,8 @@ placeholder="请输入店铺简称"> - - @@ -158,7 +158,7 @@ name: '', code: '', abbreviation: '', - parentId: 0 + customerId: 0 }, ruleValidate: { name: [ @@ -170,7 +170,7 @@ detailName: [ {required: true, message: '店铺简称不能为空', trigger: 'blur'} ], - parentId: [ + customerId: [ { required: true, type: 'number', message: '请选择客户', trigger: 'change' } ] }, @@ -204,7 +204,7 @@ name: "", code: '', abbreviation: '', - parentId: 0 + customerId: 0 } }else{ this.formValidate = { @@ -212,7 +212,8 @@ name: item.name, code: item.code, abbreviation: item.abbreviation, - parentId: item.customerId + customerId: item.customerId + } } }, @@ -224,7 +225,7 @@ }, handleSubmit(value) { if (value) { - if(!value.parentId){ + if(!value.customerId){ this.$Message.info('请输入表单内容'); return; } @@ -316,7 +317,7 @@ name: val.name, code: val.code, abbreviation: val.abbreviation, - customerId: val.parentId + customerId: val.customerId }; that.btnLoading = true; service.postOrganizationStoreAdd(request, function (res) { @@ -343,7 +344,7 @@ name: val.name, code: val.code, abbreviation: val.abbreviation, - customerId: val.parentId + customerId: val.customerId }; service.postOrganizationStoreModify(request, function (res) { that.btnLoading = false; From c32ed846a082019fc60f9492ba62dbc7fdf58dab Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Sat, 20 Jun 2020 03:31:39 +0800 Subject: [PATCH 05/17] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/home/CustomerView.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/pages/home/CustomerView.vue b/src/pages/home/CustomerView.vue index 71c418e..7f97ff2 100644 --- a/src/pages/home/CustomerView.vue +++ b/src/pages/home/CustomerView.vue @@ -200,7 +200,7 @@ }, data() { return { - userId: JSON.parse(sessionStorage.getItem("loginInfo")).userId, + userId: null, intervalId : 0, //加载遮罩 spinShow: false, @@ -286,6 +286,12 @@ }, }, mounted: function () { + if(!JSON.parse(sessionStorage.getItem("loginInfo"))){ + this.$router.push("/login"); + return; + } + this.userId = JSON.parse(sessionStorage.getItem("loginInfo")).userId; + this.dateBtnClick('今日'); this.timingRefresh(); }, From 060c87506b3b67256db062b9526326282af1188e Mon Sep 17 00:00:00 2001 From: yechenhao Date: Tue, 23 Jun 2020 16:27:18 +0800 Subject: [PATCH 06/17] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E5=AE=A2=E6=88=B7type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/data/CustomerDetail.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/data/CustomerDetail.vue b/src/pages/data/CustomerDetail.vue index fce20c8..afe85b8 100644 --- a/src/pages/data/CustomerDetail.vue +++ b/src/pages/data/CustomerDetail.vue @@ -4,6 +4,7 @@ + 选择日期 Date: Tue, 23 Jun 2020 23:49:19 +0800 Subject: [PATCH 07/17] =?UTF-8?q?=E9=9B=B6=E5=94=AE=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/generalize/IncreaseData.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/generalize/IncreaseData.js b/src/services/generalize/IncreaseData.js index c7a950b..b799b61 100644 --- a/src/services/generalize/IncreaseData.js +++ b/src/services/generalize/IncreaseData.js @@ -43,7 +43,7 @@ export function listOfSellerByStore(params, call) { * @returns {Promise} */ export function generalizeOfRetail(params, call) { - return http.get('/retail/retail', params).then(call) + return http.get('/retail/retail/new', params).then(call) } /** From b4b31f25bef992c74ebe1d6461b69c671944f792 Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Tue, 23 Jun 2020 15:51:52 +0800 Subject: [PATCH 08/17] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=87=8D=E7=BD=AE?= =?UTF-8?q?=E4=BA=8C=E7=BB=B4=E7=A0=81=E6=8C=89=E9=92=AE=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStoreManager.vue | 19 +++++ src/services/store/IncreaseStoreManager.js | 85 +++++++++++++--------- 2 files changed, 71 insertions(+), 33 deletions(-) diff --git a/src/pages/shop/IncreaseStoreManager.vue b/src/pages/shop/IncreaseStoreManager.vue index 5ce3955..c387373 100644 --- a/src/pages/shop/IncreaseStoreManager.vue +++ b/src/pages/shop/IncreaseStoreManager.vue @@ -53,6 +53,7 @@
+
@@ -539,6 +540,24 @@ }) }, + + /** + * 重置二维码 + * @param index + */ + resetQrCode: function(index){ + if(!index){ + return; + } + http.postStoreStaffQrCodeReset({storeCode: index.code, staffCode: index.cpUserId}, function (data) { + if(data.code === '0000'){ + this.$Message.success('重置成功'); + }else{ + this.$Message.error('重置失败'); + + } + }); + }, //切页处理 handlePage: function (value) { this.pageNum = value; diff --git a/src/services/store/IncreaseStoreManager.js b/src/services/store/IncreaseStoreManager.js index c7727db..564398d 100644 --- a/src/services/store/IncreaseStoreManager.js +++ b/src/services/store/IncreaseStoreManager.js @@ -13,35 +13,40 @@ import axios from 'axios' * @returns {Promise} */ export function uploadUser(params, call) { - return http.post('/store/emp/import', params).then(call) + return http.post('/store/emp/import', params).then(call) } + export function storeList(params, call, errorCallBack) { - return http - .post('/store/emp/list', params) - .then(call) - .catch(errorCallBack) + return http + .post('/store/emp/list', params) + .then(call) + .catch(errorCallBack) } + export function addStoreWX(params, call) { - return http.post('/user/add', params).then(call) + return http.post('/user/add', params).then(call) } + export function modifyStoreWX(params, call) { return http.post('/user/update', params).then(call); } -export function downloadImg(params,name, call) { - return http.downloadImg('/user/img/download',name, params).then(call); + +export function downloadImg(params, name, call) { + return http.downloadImg('/user/img/download', name, params).then(call); } /** * 下拉框数据品牌公司 */ export function downCompanyData(params, call) { - return http.get('/retail/company', params).then(call) + return http.get('/retail/company', params).then(call) } + /** * 下拉框数据品牌公司 */ export function downBigRegionData(params, call) { - return http.get('/retail/big/region', params).then(call) + return http.get('/retail/big/region', params).then(call) } /** @@ -51,10 +56,11 @@ export function downBigRegionData(params, call) { * @returns {Promise} */ export function downloadStoreCode(params, call) { - return http - .downloadZip('/store/emp/download/store/code/bsd', '门店码', params) - .then(call) + return http + .downloadZip('/store/emp/download/store/code/bsd', '门店码', params) + .then(call) } + /** * 下载门店导购码 * @param params @@ -62,17 +68,17 @@ export function downloadStoreCode(params, call) { * @returns {Promise} */ export function downloadStoreSellerCode(params, call) { - return http - .downloadZip( - '/store/emp/download/store/seller/code/bsd', - '门店导购码', - params - ) - .then(call) + return http + .downloadZip( + '/store/emp/download/store/seller/code/bsd', + '门店导购码', + params + ) + .then(call) } export function getBaseUrl() { - return axios.defaults.baseURL + return axios.defaults.baseURL } /** @@ -83,22 +89,34 @@ export function getBaseUrl() { * @returns {Promise} */ export function downloadDataListToList(params, call, errorCallBack) { - return http - .downloadFileToExcel( - '/store/emp/download/store/excel/bsd', - '推广管理-店铺列表', - params - ) - .then(call) - .catch(errorCallBack) + return http + .downloadFileToExcel( + '/store/emp/download/store/excel/bsd', + '推广管理-店铺列表', + params + ) + .then(call) + .catch(errorCallBack) } export function getWelcomeList(params, call) { - return http.get('/activity/instance/list', params).then(call) + return http.get('/activity/instance/list', params).then(call) } + export function deleteWelcome(params, call) { - return http.get('/activity/instance/deleteWelcome', params).then(call) + return http.get('/activity/instance/deleteWelcome', params).then(call) } + +/** + * 重置二维码 + * @param params + * @param call + * @returns {Promise} + */ +export function postStoreStaffQrCodeReset(params, call) { + return http.post('/store/staff/qrcode/reset', params).then(call) +} + export default { uploadUser, getBaseUrl, @@ -111,6 +129,7 @@ export default { downloadStoreCode, downloadStoreSellerCode, downloadDataListToList, - getWelcomeList, - deleteWelcome, + getWelcomeList, + deleteWelcome, + postStoreStaffQrCodeReset } From cf0a975a721700e1e189f6131b339e509c81166a Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:07:13 +0800 Subject: [PATCH 09/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index d8e17fc..a1f1876 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -443,7 +443,7 @@ export default { }, editSattfStatus: function(request) { let that = this; - staff.editSattf(request, function(data) { + staff.editSattfStatus(request, function(data) { data = data.data; if (data.code == "0000") { that.$Message.success("修改成功!"); From 3c85fd6dc9263cb52059eaa84cc47808d360a860 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:19:10 +0800 Subject: [PATCH 10/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index a1f1876..fa40b92 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -222,8 +222,8 @@ export default { h("i-switch", { props: { value: params.row.accountFlag, - "true-value": true, //开启值 - "false-value": false, //关闭值 + "true-value": 1, //开启值 + "false-value": 0, //关闭值 size: "large" }, on: { From e7cbe284a0f591f60e2c3d6dc0233dd298047573 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:24:29 +0800 Subject: [PATCH 11/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index fa40b92..17f6b6d 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -222,17 +222,23 @@ export default { h("i-switch", { props: { value: params.row.accountFlag, - "true-value": 1, //开启值 - "false-value": 0, //关闭值 + "true-value": true, //开启值 + "false-value": false, //关闭值 size: "large" }, on: { //操作事件 "on-change": function(value) { + let status = null; + if (value == true){ + status = 1; + }else{ + status = 0; + } //修改后请求方法 // _this.modifyStatus(params.row.accountId, value); let request = { - status: value, + status: status, id: params.row.accountId }; debugger; From 8cdcfd3b94cfa0d01eb62e7e14454fa103309e33 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:24:58 +0800 Subject: [PATCH 12/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index 17f6b6d..e85f594 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -241,7 +241,6 @@ export default { status: status, id: params.row.accountId }; - debugger; //修改接口 _this.editSattfStatus(request); } From 518d221d88cba93cd2fce9067e41b40c40fa1cdf Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:29:21 +0800 Subject: [PATCH 13/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index e85f594..e7caa3e 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -239,7 +239,7 @@ export default { // _this.modifyStatus(params.row.accountId, value); let request = { status: status, - id: params.row.accountId + accountId: params.row.accountId }; //修改接口 _this.editSattfStatus(request); From abf4f2ce1064d862b829b698e7ac29b676b96f07 Mon Sep 17 00:00:00 2001 From: yechenhao Date: Wed, 24 Jun 2020 16:38:46 +0800 Subject: [PATCH 14/17] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E8=B4=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/shop/IncreaseStaffManager.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/shop/IncreaseStaffManager.vue b/src/pages/shop/IncreaseStaffManager.vue index e7caa3e..440a54e 100644 --- a/src/pages/shop/IncreaseStaffManager.vue +++ b/src/pages/shop/IncreaseStaffManager.vue @@ -452,7 +452,6 @@ export default { data = data.data; if (data.code == "0000") { that.$Message.success("修改成功!"); - that.isShowAdd = false; that.listOfLogistics(); } }); From 4798e009bae8b07381687e1161531d5c56ff56d8 Mon Sep 17 00:00:00 2001 From: kevin jiang Date: Sat, 27 Jun 2020 06:20:22 +0800 Subject: [PATCH 15/17] =?UTF-8?q?=E5=88=A4=E6=96=AD=E6=98=AF=E5=90=A6?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/organization/OrganizationMain.vue | 3 +++ src/pages/user/AccountManager.vue | 4 ++++ src/utils/Common.js | 7 +++++++ 3 files changed, 14 insertions(+) diff --git a/src/pages/organization/OrganizationMain.vue b/src/pages/organization/OrganizationMain.vue index 066c902..453b5b6 100644 --- a/src/pages/organization/OrganizationMain.vue +++ b/src/pages/organization/OrganizationMain.vue @@ -13,6 +13,8 @@