Browse Source

修复部分bug

dev-xx
qb 9 months ago
parent
commit
e4c945f8b6
  1. 21
      src/views/distribution/artery/TripartiteTransfer.vue
  2. 23
      src/views/distribution/artery/VehicleArrivalManagement.vue
  3. 5
      src/views/distribution/artery/addTripartiteTransfer.vue
  4. 23
      src/views/distribution/artery/zeroAdditionalRecording.vue
  5. 26
      src/views/distribution/inventory/BookingNote.vue
  6. 7
      src/views/waybill/FreezeOrder.vue
  7. 5
      src/views/waybill/ReceiptManagement.vue
  8. 5
      src/views/waybill/ZeroTagList.vue
  9. 5
      src/views/waybill/orderPackageListDetails.vue

21
src/views/distribution/artery/TripartiteTransfer.vue

@ -971,24 +971,9 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.editColumnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
const currentChange = pageNum => {
details.page.pageNum = pageNum;
onLoad();
};
/** 弹出层开启前清除数据 */

23
src/views/distribution/artery/VehicleArrivalManagement.vue

@ -573,7 +573,6 @@
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="columnList"
@ -924,25 +923,9 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
console.log('type :>> ', type);
if (type == 1) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
const currentChange = (pageNum: number) => {
details.page.pageNum = pageNum;
onLoad();
};
/** 弹出层开启前清除数据 */

5
src/views/distribution/artery/addTripartiteTransfer.vue

@ -975,7 +975,10 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
const currentChange = pageNum => {
details.page.pageNum = pageNum;
initOriginWarehouseOrder();
};
/**
* 设置列表 -- 固定函数

23
src/views/distribution/artery/zeroAdditionalRecording.vue

@ -587,24 +587,9 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
* */
const setnewcolum = (newarr, headarr, type) => {
if (type == 1) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'checkList', headarr);
} else if (type == 2) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'flexList', headarr);
} else if (type == 3) {
details.columnList = newarr;
functions.setStorage(window.location.pathname + 'sortlist', headarr);
}
const currentChange = pageNum => {
details.oldPage.pageNum = pageNum;
onLoad();
};
/** 添加运单 */
@ -653,7 +638,7 @@ const handleRemoveWaybill = () => {
return _flag;
});
handleFilterData()
handleFilterData();
details.oldPage.pageNum = 1;
onLoad();

26
src/views/distribution/inventory/BookingNote.vue

@ -1049,7 +1049,14 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, computeNumber, isNumber, getObjType } from '@/utils/util';
import {
downloadXls,
computeNumber,
isNumber,
getObjType,
handleInputQuery,
handleSelectQuery,
} from '@/utils/util';
import { columnList } from '@/option/distribution/VehicleStowage';
import {
WaybillTrackingColumnList,
@ -1650,7 +1657,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
handleInputQuery(index, row, details.query);
onLoad();
};
@ -1673,11 +1680,7 @@ const btnsc = () => {};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
details.query[row.prop] = index;
if (!index && index !== 0) delete details.query[row.prop];
if (row.prop === 'certificateTypeName') {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
handleSelectQuery(index, row, details.query);
onLoad();
};
@ -1686,15 +1689,6 @@ const selectionChange = (list: any) => {
details.selectionList = list;
};
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = () => {};
/**
* 设置列表 -- 固定函数
* 弹窗的勾选回调用于更改头部数组

7
src/views/waybill/FreezeOrder.vue

@ -277,7 +277,7 @@ onMounted(() => {
/** 请求页面数据 */
/** 请求页面数据 */
const onLoad = async (page: any, params = {}) => {
const onLoad = async (params = {}) => {
const status = details.orderStatus;
try {
// loading
@ -401,7 +401,10 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
const currentChange = pageNum => {
details.page.pageNum = pageNum;
onLoad();
};
/**
* 设置列表 -- 固定函数

5
src/views/waybill/ReceiptManagement.vue

@ -306,7 +306,10 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
const currentChange = (pageNum: number) => {
details.page.pageNum = pageNum;
onLoad(details.page);
};
/**
* 设置列表 -- 固定函数

5
src/views/waybill/ZeroTagList.vue

@ -326,7 +326,10 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
const currentChange = (pageNum: number) => {
details.page.pageNum = pageNum;
onLoad(details.page);
};
/**
* 设置列表 -- 固定函数

5
src/views/waybill/orderPackageListDetails.vue

@ -622,7 +622,10 @@ const sizeChange = (pageSize: number) => {
};
/** 页码改变执行的回调 */
const currentChange = () => {};
const currentChange = (pageNum: number) => {
details.page.pageNum = pageNum;
onLoad();
};
/**
* 设置列表 -- 固定函数

Loading…
Cancel
Save