diff --git a/src/components/edittablehead/index.vue b/src/components/edittablehead/index.vue index 72c2f0fc..4b7be45d 100644 --- a/src/components/edittablehead/index.vue +++ b/src/components/edittablehead/index.vue @@ -49,6 +49,7 @@ import { useRoute } from 'vue-router'; const functions = inject('functions') as any; import Sortable from 'sortablejs'; +import { handleClearTableQuery } from '@/utils/util'; interface TableColumnType { /** 表格列的key */ prop: string; @@ -131,6 +132,7 @@ const _arr = functions.getStorage($route.fullPath + props.columnListName); if (_arr) { columnRef.value = [..._arr]; + handleClearTableQuery(_arr); emit('update:modelValue', _arr); } diff --git a/src/option/waybill/ChangeOrder.js b/src/option/waybill/ChangeOrder.js index ea19d241..616e59b7 100644 --- a/src/option/waybill/ChangeOrder.js +++ b/src/option/waybill/ChangeOrder.js @@ -187,16 +187,16 @@ export const columnList = [ // fixed: false, // sortable: true, // }, - { - prop: '', - label: '操作', - type: 6, - values: '', - width: '200', - checkarr: [], - fixed: 'right', - sortable: false, - }, + // { + // prop: '', + // label: '操作', + // type: 6, + // values: '', + // width: '200', + // checkarr: [], + // fixed: 'right', + // sortable: false, + // }, ]; export const viewColumnList = [ diff --git a/src/views/basic/forklift/basicForklift.vue b/src/views/basic/forklift/basicForklift.vue index d85f95e0..4905a36d 100644 --- a/src/views/basic/forklift/basicForklift.vue +++ b/src/views/basic/forklift/basicForklift.vue @@ -938,77 +938,6 @@ export default { this.init(); //查询字典 this.queryDictionary(); - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - 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; - }); - 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); - } }, created() {}, computed: { diff --git a/src/views/basic/material/basicTripartiteMaterial.vue b/src/views/basic/material/basicTripartiteMaterial.vue index 76cc4cb5..0bd2b9be 100644 --- a/src/views/basic/material/basicTripartiteMaterial.vue +++ b/src/views/basic/material/basicTripartiteMaterial.vue @@ -215,77 +215,6 @@ export default { mounted() { this.init(); this.onLoad(this.page); - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - 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; - }); - 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: { ...mapGetters(['permission']), diff --git a/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue b/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue index 8660953b..c8933106 100644 --- a/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue +++ b/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue @@ -323,79 +323,6 @@ const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'])); console.log('permission :>> ', permission); -onMounted(() => { - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - let checkListnewarr = functions.getStorage(window.location.pathname + 'checkList'); - let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList'); - let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist'); - if (checkListnewarr) { - details.columnList.map(item => { - item.head = false; - }); - checkListnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - item.head = true; - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.head) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'checkList', arr); - } - if (flexListnewarr) { - details.columnList.map(item => { - item.fixed = false; - }); - flexListnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - if (item.type == 6) { - item.fixed = 'right'; - } else { - item.fixed = true; - } - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.fixed) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'flexList', arr); - } - if (sortlistnewarr) { - details.columnList.map(item => { - item.sortable = false; - }); - sortlistnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - item.sortable = true; - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.sortable) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'sortlist', arr); - } -}); /** 请求页面数据 */ const onLoad = debounce(async (params = {}) => { diff --git a/src/views/basicdata/TripartiteMaterial/list.vue b/src/views/basicdata/TripartiteMaterial/list.vue index f4ba15de..bb5affce 100644 --- a/src/views/basicdata/TripartiteMaterial/list.vue +++ b/src/views/basicdata/TripartiteMaterial/list.vue @@ -372,79 +372,6 @@ const { search, query, shortcuts, stockupDate, data, loadingObj, selectionList, const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'])); console.log('permission :>> ', permission); -onMounted(() => { - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - let checkListnewarr = functions.getStorage(window.location.pathname + 'checkList'); - let flexListnewarr = functions.getStorage(window.location.pathname + 'flexList'); - let sortlistnewarr = functions.getStorage(window.location.pathname + 'sortlist'); - if (checkListnewarr) { - details.columnList.map(item => { - item.head = false; - }); - checkListnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - item.head = true; - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.head) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'checkList', arr); - } - if (flexListnewarr) { - details.columnList.map(item => { - item.fixed = false; - }); - flexListnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - if (item.type == 6) { - item.fixed = 'right'; - } else { - item.fixed = true; - } - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.fixed) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'flexList', arr); - } - if (sortlistnewarr) { - details.columnList.map(item => { - item.sortable = false; - }); - sortlistnewarr.map(ite => { - details.columnList.map(item => { - if (ite == item.label) { - item.sortable = true; - } - }); - }); - } else { - let arr = []; - details.columnList.map(item => { - if (item.sortable) { - arr.push(item.label); - } - }); - functions.setStorage(window.location.pathname + 'sortlist', arr); - } -}); /** 请求页面数据 */ const onLoad = debounce(async (params = {}) => { diff --git a/src/views/basicdata/brand/basicBrand.vue b/src/views/basicdata/brand/basicBrand.vue index 2cbb8a95..14445d8f 100644 --- a/src/views/basicdata/brand/basicBrand.vue +++ b/src/views/basicdata/brand/basicBrand.vue @@ -343,77 +343,6 @@ export default { mounted() { this.init(); this.onLoad(this.page); - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - 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; - }); - 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: { ...mapGetters(['permission']), diff --git a/src/views/basicdata/team/basicdataTeamStaff.vue b/src/views/basicdata/team/basicdataTeamStaff.vue index cb8def13..b5d0f86f 100644 --- a/src/views/basicdata/team/basicdataTeamStaff.vue +++ b/src/views/basicdata/team/basicdataTeamStaff.vue @@ -292,77 +292,6 @@ export default { mounted() { this.init(); this.onLoad(this.page); - /** - * 初始化获取本地缓存的编辑隐藏的列表 - * 固定搭配,不能更改 - */ - 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; - }); - 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: { ...mapGetters(['permission']), diff --git a/src/views/basicdata/vehicle/basicdataVehicle2.vue b/src/views/basicdata/vehicle/basicdataVehicle2.vue index 89753a2e..2df02119 100644 --- a/src/views/basicdata/vehicle/basicdataVehicle2.vue +++ b/src/views/basicdata/vehicle/basicdataVehicle2.vue @@ -1,883 +1,372 @@