From 51be36e5424cff6ddc91a4bb6d5e9a1d7e3327cd Mon Sep 17 00:00:00 2001 From: zhangsiyu Date: Thu, 6 Jul 2023 15:52:53 +0800 Subject: [PATCH] Squashed commit of the following: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 78016097ae0593042842fd5fb2847a673b78ed5f Author: 0.0 <1092404103.qq.com> Date: Thu Jul 6 15:51:37 2023 +0800 1.修改表单 commit 2fc3c8a2df2640454e70a9246f4dc1bcedddf631 Author: caoyizhong <1270296080@qq.com> Date: Thu Jul 6 15:50:55 2023 +0800 修改页面 --- src/views/basicdata/brand/basicClient.vue | 2 +- src/views/basicdata/brand/basicClientFrom.vue | 2 +- .../deliverylist/distributionDeliveryList.vue | 77 ++- .../distributionDeliveryListdis.vue | 77 ++- .../distributionDeliveryListmar.vue | 77 ++- .../delivery/distributionStockArticle.vue | 94 ++- .../distributionStockArticleDiscuss.vue | 89 ++- .../distributionStockArticleMarket.vue | 87 ++- .../delivery/distributionStockArticleSelf.vue | 87 ++- .../inventory/distributionStockList.vue | 563 +++++++++++++++++- .../distributionStockListDiscuss.vue | 529 +++++++++++++++- .../inventory/distributionStockListMarket.vue | 529 +++++++++++++++- .../inventory/distributionStockListSelf.vue | 529 +++++++++++++++- .../inventory/distrilbutionBillLadingList.vue | 55 +- .../reservation/reservationDiscuss.vue | 77 ++- .../reservation/reservationMarket.vue | 77 ++- .../signdetail/distributionSigndetail.vue | 217 +++++-- .../signfor/distributionSignfor.vue | 79 ++- .../signfor/distributionSignforedt.vue | 416 +++++++++++++ .../signfor/distributionSignfortreat.vue | 85 ++- .../stockup/distributionStockup.vue | 15 +- .../stockup/distributionStockupDiscuss.vue | 77 ++- 22 files changed, 3576 insertions(+), 264 deletions(-) create mode 100644 src/views/distribution/signfor/distributionSignforedt.vue diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue index 4b9e5c1a..fd9451ee 100644 --- a/src/views/basicdata/brand/basicClient.vue +++ b/src/views/basicdata/brand/basicClient.vue @@ -227,7 +227,7 @@ - + {{item.dictValue}} diff --git a/src/views/basicdata/brand/basicClientFrom.vue b/src/views/basicdata/brand/basicClientFrom.vue index b0daffc4..b73732ce 100644 --- a/src/views/basicdata/brand/basicClientFrom.vue +++ b/src/views/basicdata/brand/basicClientFrom.vue @@ -210,7 +210,7 @@ - + {{item.dictValue}} diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue index a152599e..bf7b24b5 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryList.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue @@ -314,22 +314,76 @@ export default { mounted () { this.queryDictionary(); this.init(); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -350,10 +404,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log("进来了>>>>>>>>>>>>>",value); diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue index d6cf2fd0..08352441 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue @@ -301,22 +301,76 @@ export default { mounted () { this.queryDictionary(); this.init(); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -337,10 +391,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log("进来了>>>>>>>>>>>>>",value); diff --git a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue index 9c8d1c79..1f0890c4 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue @@ -302,22 +302,76 @@ export default { mounted () { this.queryDictionary(); this.init(); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -338,10 +392,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log("进来了>>>>>>>>>>>>>",value); diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index 331f76c7..d576aacc 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -61,7 +61,7 @@ 批量加配转库存品 修改客户信息 修改服务类型 - 转配送 +
@@ -93,7 +93,7 @@ > @@ -469,7 +469,7 @@ export default { sortable: true, }, { - prop: 'typeService', + prop: 'typeName', label: '服务类型', type: 3, values: '', @@ -581,18 +581,76 @@ export default { * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + // let checkList=[] + // this.columnList.map(item => { + // item.head = false; + // }); + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -621,10 +679,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); @@ -644,6 +711,8 @@ export default { console.log(index, row); if(row.prop ==='completeSetName'){ this.query['completeSet'] = index; + }else if(row.prop ==='typeName'){ + this.query['typeService'] = index; }else{ this.query[row.prop] = index; } @@ -952,7 +1021,7 @@ export default { handleEdit (row) { this.title = '编辑' this.box = true - getDetail(row.id).then(res => { + getDetail(row.row.id).then(res => { this.form = res.data.data; }); }, @@ -963,11 +1032,12 @@ export default { // getDetail(row.id).then(res => { // this.form = res.data.data; // }); + // console.log("查看===",row.row); this.$router.push({ path: '/distribution/inventory/distributionStockArticleDetails', query: { - id : row.id, - name: "详情"+row.orderSelfNumbering + id : row.row.id, + name: "详情 - "+row.row.orderSelfNumbering }, }) diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue index 0a5c190f..ec15eef9 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue @@ -92,7 +92,7 @@ > @@ -580,18 +580,80 @@ export default { * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + /** + * 初始化获取本地缓存的编辑隐藏的列表 + * 固定搭配,不能更改 + */ + // let checkList=[] + // this.columnList.map(item => { + // item.head = false; + // }); + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -620,10 +682,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); @@ -961,8 +1032,8 @@ export default { this.$router.push({ path: '/distribution/inventory/distributionStockArticleDetails', query: { - id : row.id, - name: "详情"+row.orderSelfNumbering + id : row.row.id, + name: "详情"+row.row.orderSelfNumbering }, }) diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue index b6dfecbb..81d6af67 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue @@ -92,7 +92,7 @@ > @@ -576,22 +576,80 @@ export default { mounted () { this.init(); this.onLoad(this.page); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + // let checkList=[] + // this.columnList.map(item => { + // item.head = false; + // }); + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -620,10 +678,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); @@ -961,8 +1028,8 @@ export default { this.$router.push({ path: '/distribution/inventory/distributionStockArticleDetails', query: { - id : row.id, - name: "详情"+row.orderSelfNumbering + id : row.row.id, + name: "详情"+row.row.orderSelfNumbering }, }) diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue index ab6b15a5..e808584d 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue @@ -92,7 +92,7 @@ > @@ -576,22 +576,80 @@ export default { mounted () { this.init(); this.onLoad(this.page); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + // let checkList=[] + // this.columnList.map(item => { + // item.head = false; + // }); + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -620,10 +678,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); @@ -961,8 +1028,8 @@ export default { this.$router.push({ path: '/distribution/inventory/distributionStockArticleDetails', query: { - id : row.id, - name: "详情"+row.orderSelfNumbering + id : row.row.id, + name: "详情"+row.row.orderSelfNumbering }, }) diff --git a/src/views/distribution/inventory/distributionStockList.vue b/src/views/distribution/inventory/distributionStockList.vue index 55a52a60..56f4ecda 100644 --- a/src/views/distribution/inventory/distributionStockList.vue +++ b/src/views/distribution/inventory/distributionStockList.vue @@ -23,46 +23,34 @@
新 增 删 除 - 全部拆包 + + 导 入
+
- - - - - - diff --git a/src/views/distribution/signfor/distributionSignfortreat.vue b/src/views/distribution/signfor/distributionSignfortreat.vue index c76928b3..8bd0fa7b 100644 --- a/src/views/distribution/signfor/distributionSignfortreat.vue +++ b/src/views/distribution/signfor/distributionSignfortreat.vue @@ -452,22 +452,76 @@ export default { mounted() { this.queryDictionary(); this.init(); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } // this.columnListedit=JSON.parse(JSON.stringify(this.columnList)) }, @@ -489,10 +543,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); @@ -503,7 +566,15 @@ export default { }, editsolt(scope) { const { row } = scope; + console.log("row>>>>>>>>>>>>>>>>>>>",row); console.log(row); + this.$router.push({ + path: '/distribution/signfor/distributionSignforedt', + query: { + id: row.id, + name: '待签收查看' + } + }); }, btnsc(index, row) { console.log(index, row); diff --git a/src/views/distribution/stockup/distributionStockup.vue b/src/views/distribution/stockup/distributionStockup.vue index 6da3d1dd..1162ed6e 100644 --- a/src/views/distribution/stockup/distributionStockup.vue +++ b/src/views/distribution/stockup/distributionStockup.vue @@ -425,10 +425,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value); diff --git a/src/views/distribution/stockup/distributionStockupDiscuss.vue b/src/views/distribution/stockup/distributionStockupDiscuss.vue index cd18c0f3..5c260748 100644 --- a/src/views/distribution/stockup/distributionStockupDiscuss.vue +++ b/src/views/distribution/stockup/distributionStockupDiscuss.vue @@ -438,22 +438,76 @@ export default { mounted() { this.init(); this.onLoad(this.page); - /** + /** * 初始化获取本地缓存的编辑隐藏的列表 * 固定搭配,不能更改 */ - let newarr = this.$functions.getStorage(window.location.pathname); - if (newarr) { + let checkListnewarr = this.$functions.getStorage(window.location.pathname+'checkList'); + let flexListnewarr = this.$functions.getStorage(window.location.pathname+'flexList'); + let sortlistnewarr = this.$functions.getStorage(window.location.pathname+'sortlist'); + if (checkListnewarr) { this.columnList.map(item => { item.head = false; }); - newarr.map(ite => { + checkListnewarr.map(ite => { this.columnList.map(item => { if (ite == item.label) { item.head = true; } }); }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.head){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'checkList',arr) + } + if (flexListnewarr) { + this.columnList.map(item => { + item.fixed = false; + }); + flexListnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + if(item.type==6){ + item.fixed = 'right'; + }else{ + item.fixed = true; + } + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.fixed){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'flexList',arr) + } + if (sortlistnewarr) { + this.columnList.map(item => { + item.sortable = false; + }); + sortlistnewarr.map(ite => { + this.columnList.map(item => { + if (ite == item.label) { + item.sortable = true; + } + }); + }); + }else{ + let arr=[] + this.columnList.map(item => { + if(item.sortable){ + arr.push(item.label) + } + }); + this.$functions.setStorage(window.location.pathname+'sortlist',arr) } }, computed: { @@ -474,10 +528,19 @@ export default { * 弹窗的勾选回调,用于更改头部数组 * 固定搭配,只需要更换 columnList */ - setnewcolum(newarr, headarr) { + setnewcolum(newarr, headarr,type) { // console.log(newarr,'+++++++++++') - this.columnList = newarr; - this.$functions.setStorage(window.location.pathname, headarr); + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + }, selectionsc(value) { console.log(value);