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/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..f882b39d 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: { @@ -961,8 +1023,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..6c36f7c9 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: { @@ -961,8 +1019,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..6172a974 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: { @@ -961,8 +1019,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..21456635 100644 --- a/src/views/distribution/inventory/distributionStockList.vue +++ b/src/views/distribution/inventory/distributionStockList.vue @@ -23,46 +23,34 @@
新 增 删 除 - 全部拆包 + + 导 入
+
- - - - - -