diff --git a/src/api/distribution/packageNodeSearch.js b/src/api/distribution/packageNodeSearch.js index d7e95197..51da6715 100644 --- a/src/api/distribution/packageNodeSearch.js +++ b/src/api/distribution/packageNodeSearch.js @@ -1,5 +1,4 @@ - - /** 流转节点 */ +/** 流转节点 */ export const columnList = [ // { // prop: 'createUserName', @@ -22,7 +21,7 @@ export const columnList = [ { prop: 'warehouseName', label: '仓库', - type: 1, + type: 30, values: '', width: '130', checkarr: [], @@ -32,7 +31,7 @@ export const columnList = [ // { // prop: 'createTime', // label: '订单自编号', - // type: 1, + // type: 30, // values: '', // width: '150', // checkarr: [], @@ -42,7 +41,7 @@ export const columnList = [ { prop: 'orderPackageCode', label: '包条码', - type: 1, + type: 30, values: '', width: '150', checkarr: [], @@ -52,7 +51,7 @@ export const columnList = [ { prop: 'operator', label: '操作人', - type: 1, + type: 30, values: '', width: '130', checkarr: [], @@ -62,7 +61,7 @@ export const columnList = [ { prop: 'content', label: '描述', - type: 1, + type: 30, values: '', width: '250', checkarr: [], @@ -72,7 +71,7 @@ export const columnList = [ { prop: 'createTime', label: '操作时间', - type: 1, + type: 30, values: '', width: '250', checkarr: [], @@ -82,7 +81,7 @@ export const columnList = [ { prop: 'workNodeName', label: '节点', - type: 1, + type: 30, values: '', width: '130', checkarr: [], @@ -92,7 +91,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '是否干仓配', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -102,7 +101,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '服务类型', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -112,7 +111,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '流转节点', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -122,7 +121,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '库位', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -132,7 +131,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '托盘码', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -142,7 +141,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '一级品名称', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -152,7 +151,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '二级品名称', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -162,7 +161,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '三级品名称', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -172,7 +171,7 @@ export const columnList = [ // { // prop: 'createUserName', // label: '物料名称', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], @@ -182,11 +181,11 @@ export const columnList = [ // { // prop: 'createUserName', // label: '物料编码', - // type: 1, + // type: 30, // values: '', // width: '130', // checkarr: [], // fixed: false, // sortable: true, // }, -]; \ No newline at end of file +]; diff --git a/src/components/edittablehead/index.vue b/src/components/edittablehead/index.vue index e18214f5..d06fdca5 100644 --- a/src/components/edittablehead/index.vue +++ b/src/components/edittablehead/index.vue @@ -163,7 +163,13 @@ const initTable = async () => { if (item.prop + item.label + item.type !== value.prop + value.label + value.type) continue; item.checkarr = value.checkarr || []; - _setArr.push({ ...value, width: item.width }); + _setArr.push({ + ...value, + width: item.width, + fixed: item.fixed, + head: item.head, + sortable: item.sortable, + }); _oldArr.splice(i, 1); break; } diff --git a/src/components/newTablecmt/newTablecmt.vue b/src/components/newTablecmt/newTablecmt.vue deleted file mode 100644 index 47c4f2d0..00000000 --- a/src/components/newTablecmt/newTablecmt.vue +++ /dev/null @@ -1,665 +0,0 @@ - - - - diff --git a/src/components/tablecmt/tablecmt.vue b/src/components/tablecmt/tablecmt.vue index 46d1a907..f872d8cb 100644 --- a/src/components/tablecmt/tablecmt.vue +++ b/src/components/tablecmt/tablecmt.vue @@ -375,6 +375,12 @@ let props = defineProps({ required: false, default: true, }, + /** 是否保存表头宽度设置 */ + isSave: { + type: Boolean as PropType, + required: false, + default: false, + }, }); /** 勾选数据统计 */ const selectCount = ref([]); @@ -736,10 +742,12 @@ const handleWidthChange = (newWidth, oldWidth, column, event) => { console.log('props.columnListName :>> ', props.columnListName); - // postSaveTableSeting({ - // tableKey: $route.path + props.columnListName, - // tableSetCongig: JSON.stringify(props.columnList), - // }); + if (props.isSave) return; + + postSaveTableSeting({ + tableKey: $route.path + props.columnListName, + tableSetCongig: JSON.stringify(props.columnList), + }); }; defineExpose({ handleCheckSelect, handleClearSelect }); diff --git a/src/option/finance/ReconciliationDepositSlip.js b/src/option/finance/ReconciliationDepositSlip.js index 3ae52fbb..0bf2596b 100644 --- a/src/option/finance/ReconciliationDepositSlip.js +++ b/src/option/finance/ReconciliationDepositSlip.js @@ -157,7 +157,7 @@ export const columnList = [ label: '品类件数', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -168,7 +168,7 @@ export const columnList = [ label: '品类单价', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -179,7 +179,7 @@ export const columnList = [ label: '总件数', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -191,7 +191,7 @@ export const columnList = [ label: '总重量', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -203,7 +203,7 @@ export const columnList = [ label: '总体积', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -215,7 +215,7 @@ export const columnList = [ label: '订单开单价', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -226,7 +226,7 @@ export const columnList = [ label: '实际费用', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -238,7 +238,7 @@ export const columnList = [ label: '开单运费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -250,7 +250,7 @@ export const columnList = [ label: '实际运费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -262,7 +262,7 @@ export const columnList = [ label: '开单提货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -274,7 +274,7 @@ export const columnList = [ label: '实际提货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -298,7 +298,7 @@ export const columnList = [ label: '仓储费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -310,7 +310,7 @@ export const columnList = [ label: '仓储管理费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -322,7 +322,7 @@ export const columnList = [ label: '仓储分拣费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -334,7 +334,7 @@ export const columnList = [ label: '仓储操作费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -370,7 +370,7 @@ export const columnList = [ label: '实际配送费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -382,7 +382,7 @@ export const columnList = [ label: '配送装卸费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -394,7 +394,7 @@ export const columnList = [ label: '配送分货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -406,7 +406,7 @@ export const columnList = [ label: '配送上楼费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -418,7 +418,7 @@ export const columnList = [ label: '配送平移费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -430,7 +430,7 @@ export const columnList = [ label: '配送其它费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -442,7 +442,7 @@ export const columnList = [ label: '超区公里费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -454,7 +454,7 @@ export const columnList = [ label: '安装费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -466,7 +466,7 @@ export const columnList = [ label: '其他费用', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -815,7 +815,7 @@ export const columnListB = [ label: '品类件数', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -826,7 +826,7 @@ export const columnListB = [ label: '品类单价', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -837,7 +837,7 @@ export const columnListB = [ label: '总件数', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -849,7 +849,7 @@ export const columnListB = [ label: '总重量', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -861,7 +861,7 @@ export const columnListB = [ label: '总体积', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -873,7 +873,7 @@ export const columnListB = [ label: '订单开单价', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -885,7 +885,7 @@ export const columnListB = [ label: '实际费用', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -897,7 +897,7 @@ export const columnListB = [ label: '开单运费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -909,7 +909,7 @@ export const columnListB = [ label: '实际运费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -921,7 +921,7 @@ export const columnListB = [ label: '开单提货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -933,7 +933,7 @@ export const columnListB = [ label: '实际提货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -957,7 +957,7 @@ export const columnListB = [ label: '仓储费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -969,7 +969,7 @@ export const columnListB = [ label: '仓储管理费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -981,7 +981,7 @@ export const columnListB = [ label: '仓储分拣费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -993,7 +993,7 @@ export const columnListB = [ label: '仓储操作费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1017,7 +1017,7 @@ export const columnListB = [ label: '开单配送费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1029,7 +1029,7 @@ export const columnListB = [ label: '实际配送费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1041,7 +1041,7 @@ export const columnListB = [ label: '配送装卸费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1053,7 +1053,7 @@ export const columnListB = [ label: '配送分货费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1065,7 +1065,7 @@ export const columnListB = [ label: '配送上楼费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1077,7 +1077,7 @@ export const columnListB = [ label: '配送平移费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1089,7 +1089,7 @@ export const columnListB = [ label: '配送其它费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1101,7 +1101,7 @@ export const columnListB = [ label: '超区公里费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1113,7 +1113,7 @@ export const columnListB = [ label: '安装费', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, @@ -1125,7 +1125,7 @@ export const columnListB = [ label: '其他费用', type: 1, values: '', - width: '150', + width: '130', checkarr: [], fixed: false, sortable: true, diff --git a/src/views/warehouse/parcelList/distributionParcelList.vue b/src/views/warehouse/parcelList/distributionParcelList.vue index d442f72d..c5ed5a0a 100644 --- a/src/views/warehouse/parcelList/distributionParcelList.vue +++ b/src/views/warehouse/parcelList/distributionParcelList.vue @@ -202,7 +202,13 @@ import { import { getDictionaryBiz } from '@/api/system/dict'; import option from '@/option/distribution/distributionParcelList'; import { mapGetters } from 'vuex'; -import { downloadXls, debounce, setNodeHeight, handleClearTableQuery } from '@/utils/util'; +import { + downloadXls, + debounce, + setNodeHeight, + handleClearTableQuery, + handleInputQuery, +} from '@/utils/util'; import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList'; import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; import print from '@/utils/print'; @@ -672,7 +678,7 @@ export default { label: '操作', type: 6, values: '', - width: '130', + width: '200', checkarr: [], fixed: 'right', sortable: true, @@ -721,13 +727,19 @@ export default { this.loading = true; this.loadingObj.pageLoading = true; try { - if (Object.keys(this.query).length === 0) return (this.data = []); + const _submitData = { ...params, ...this.query }; + const keys = Object.keys(_submitData); + for (let i = 0; i < keys.length; i++) { + const _key = keys[i]; + const _val = _submitData[_key]; + + if (_val || _val === 0) continue; + delete _submitData[_key]; + } + + if (Object.keys(_submitData).length === 0) return (this.data = []); - const res = await getpage( - page.currentPage, - page.pageSize, - Object.assign(params, this.query) - ); + const res = await getpage(page.currentPage, page.pageSize, _submitData); const { code, data } = res.data; if (code !== 200) return; console.log(res, '获取到的页面初始值'); @@ -863,8 +875,7 @@ export default { }, inputsc(index, row) { - this.query[row.prop] = index; - if (!index) delete this.query[row.prop]; + handleInputQuery(index, row, this.query); this.page.currentPage = 1; this.onLoad(this.page); },