Browse Source

部分表格新增表格刷新

dev-xx
qb 1 year ago
parent
commit
91b29346f4
  1. 5
      src/components/SelectBox/SelectBox.vue
  2. 25
      src/components/tablecmt/tablecmt.vue
  3. 18
      src/utils/util.js
  4. 112
      src/views/aftersales/aftersalesWorkOrder.vue
  5. 72
      src/views/basic/coderule/basicTenantCode.vue
  6. 114
      src/views/basic/forklift/basicForklift.vue
  7. 93
      src/views/distribution/artery/AddVehicleStowage.vue
  8. 7
      src/views/distribution/artery/TripartiteTransfer.vue
  9. 5
      src/views/distribution/artery/TripartiteTransferDetails.vue
  10. 22
      src/views/distribution/artery/VehicleArrivalManagement.vue
  11. 70
      src/views/distribution/artery/VehicleStowage.vue
  12. 1
      src/views/distribution/artery/VehicleStowageDetails.vue
  13. 22
      src/views/distribution/artery/addTripartiteTransfer.vue
  14. 44
      src/views/distribution/artery/directGoMarket.vue
  15. 8
      src/views/distribution/artery/directGoMarketDetails.vue
  16. 1
      src/views/distribution/artery/handleLoadingDestination.vue
  17. 8
      src/views/distribution/artery/truckLoadingDetails.vue
  18. 27
      src/views/distribution/artery/zeroAdditionalRecording.vue
  19. 45
      src/views/distribution/inventory/CreateOrder.vue
  20. 4
      src/views/distribution/inventory/addArteryDistrilbutionBillLadingList.vue
  21. 57
      src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue

5
src/components/SelectBox/SelectBox.vue

@ -21,9 +21,6 @@
"
v-if="isShowBox"
>
<!-- <el-scrollbar>
<p v-for="item in 20" :key="item" class="scrollbar-demo-item">{{ item }}</p>
</el-scrollbar> -->
<div class="content">
<SelectComponent
:className="props.className"
@ -77,8 +74,6 @@ const _computed = computed({
},
});
console.log('props :>> ', props);
className.value = props.className || '';
const selectBox = ref(null);

25
src/components/tablecmt/tablecmt.vue

@ -44,6 +44,12 @@
class="mx-1"
></el-text>
<el-icon
v-if="column.type == 12 && props.isShowRefresh !== false"
@click="handleRefresh"
><RefreshRight
/></el-icon>
<el-input
v-if="column.type == 2 || column.type == 13"
v-model.trim="column.values"
@ -339,6 +345,11 @@ let props = defineProps({
required: false,
default: null,
},
isShowRefresh: {
type: Boolean as PropType<boolean>,
required: false,
default: true,
},
});
/** 勾选数据统计 */
const selectCount = ref([]);
@ -491,6 +502,8 @@ function makeCargo(value, column: TableColumnType) {
emit('makeCargo', value, column);
}
function inputchange(value, column: TableColumnType) {
console.log('value :>> ', value);
console.log('column :>> ', column);
if (typeof value == 'string') {
emit('inputTxt', value, column);
}
@ -673,6 +686,18 @@ function copyContent(content: string) {
}
}
const handleRefresh = () => {
for (let i = 0; i < newcolumnList.value.length; i++) {
const item = newcolumnList.value[i];
item.values = '';
if (item.type === 2 || item.type === 13) emit('inputTxt', item.values, item);
else if (item.type === 3) emit('selectCheck', item.values, item);
else if (item.type === 4) emit('timeCheck', item.values, item);
}
};
defineExpose({ handleCheckSelect, handleClearSelect });
</script>
<style lang="scss">

18
src/utils/util.js

@ -628,8 +628,7 @@ export function debounce(func, delay) {
const args = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
// func.apply(context, args);
func();
func.apply(context, args);
clearTimeout(timer);
}, delay);
};
@ -640,8 +639,6 @@ export const removeZeroWidth = str => {
return str.replace(/[\u200B-\u200D\uFEFF]/g, '');
};
/**判断对象除了指定值为真其余值是否为假**/
// 测试数据
/*let data1 = {
@ -665,17 +662,16 @@ let targetParam3 = 'operatorTime';
console.log(checkParams(data3, targetParam3)); // 输出 true
*/
/**
*
* @param {Object} data
* @param {String} targetParam
* @returns
*
* @param {Object} data
* @param {String} targetParam
* @returns
*/
export function checkParams(data, targetParam) {
const keys = Object.keys(data);
if (keys.includes(targetParam) && keys.every(key => key === targetParam || data[key] === "")) {
if (keys.includes(targetParam) && keys.every(key => key === targetParam || data[key] === '')) {
return true; // 指定参数存在且没有其他参数或其他参数值为空时返回 true
} else {
return false; // 其他情况返回 false
}
};
}

112
src/views/aftersales/aftersalesWorkOrder.vue

@ -220,6 +220,7 @@
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
:isShowRefresh="false"
:tableRowClassName="
(row, index) => {
if (row.departStatus != null && row.departStatus) return 'Abnormal';
@ -264,8 +265,6 @@
>结果确定</el-button
>
<!-- 仲裁中确定结束仲裁按钮 -->
<el-button
v-if="TabPermissions == '5' && UserPermissions != '仓库客服'"
@ -766,6 +765,7 @@
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
:isShowRefresh="false"
:tableRowClassName="
(row, index) => {
if (row.conditions != null && row.conditions == '1') return 'Abnormal';
@ -798,6 +798,7 @@
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
:isShowRefresh="false"
:tableRowClassName="
(row, index) => {
if (row.conditions != null && row.conditions == '1') return 'Abnormal';
@ -933,6 +934,7 @@
:columnList="customerserviceColumnList"
:tableData="customerData"
:loading="CustomerLoad"
:isShowRefresh="false"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@ -1671,7 +1673,7 @@ const TransportLossNode = ref([
]);
const Statusprocessing = val => {
console.log(val,'状态处理的值');
console.log(val, '状态处理的值');
val.forEach(item => {
// null
// for (const property in item) {
@ -1695,7 +1697,6 @@ const Statusprocessing = val => {
//
if (item.discoveryNode == 1) {
item.discoveryNodeNameS = columnList[3].checkarr[0].label; //
} else if (item.discoveryNode == 2) {
item.discoveryNodeNameS = columnList[3].checkarr[1].label; //
} else if (item.discoveryNode == 3) {
@ -1712,7 +1713,6 @@ const Statusprocessing = val => {
item.discoveryNodeNameS = columnList[3].checkarr[7].label; //
}
if (item.workOrderStatus == 10) {
item.workOrderStatusNameS = columnList[10].checkarr[0].label; //
} else if (item.workOrderStatus == 20) {
@ -1812,14 +1812,14 @@ const IndexTable = (val, Refresh) => {
if (res.data.data.records.length) {
Statusprocessing(res.data.data.records);
console.log(res.data.data.records, 'res.data.data.records有值');
TabList.value.find(res => res.name == TabPermissions.value).DataList =res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).DataList =
res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).total = res.data.data.total;
TabList.value.find(res => res.name == TabPermissions.value).request = false;
console.log(TabList.value, '当前存储的值');
details.data = TabList.value.find(res => res.name == TabPermissions.value).DataList;
page.value.total = TabList.value.find(res => res.name == TabPermissions.value).total;
console.log(TabList.value, 'TabList.value===>');
} else {
TabList.value.find(res => res.name == TabPermissions.value).DataList = [];
TabList.value.find(res => res.name == TabPermissions.value).total = 0;
@ -2259,7 +2259,7 @@ const CancelappealFn = val => {
//
const appeal = (val, state) => {
console.log(state,'state');
console.log(state, 'state');
AppealAttachment.value = []; //
Appealselection.value = ''; //
Reasonforappeal.value = ''; //
@ -2304,30 +2304,30 @@ const appeal = (val, state) => {
details.selectionList.push(val.row);
}
dialogappeal.value = true; //
}
}
};
//
const appealAll=()=>{
//
console.log(details.selectionList, 'details.selectionList');
if (!details.selectionList.length) {
ElMessage({
message: '请选择要申诉的数据',
type: 'warning',
});
return;
}
if (details.selectionList.length > 1) {
ElMessage({
message: '只能单条申诉',
type: 'warning',
});
return;
}
dialogappeal.value = true; //
}
const appealAll = () => {
//
console.log(details.selectionList, 'details.selectionList');
if (!details.selectionList.length) {
ElMessage({
message: '请选择要申诉的数据',
type: 'warning',
});
return;
}
if (details.selectionList.length > 1) {
ElMessage({
message: '只能单条申诉',
type: 'warning',
});
return;
}
dialogappeal.value = true; //
};
//
const DetermineClaims = val => {
console.log(val.row);
@ -2427,7 +2427,7 @@ const Appealbutton = state => {
let data = {
peopleEntityList: [], //
imagePath: '', //
workOrderId:selectList.value[0],//ID
workOrderId: selectList.value[0], //ID
};
if (AppealeditorState.value) {
data.workOrderId = details.selectionList[0].workOrderId;
@ -3039,28 +3039,30 @@ const TimeoutHandling = (val, Refresh) => {
size: details.page.pageSize,
...val,
};
$_listOwn(data).then(res => {
details.loadingObj.list = false; //
console.log(res, '超时记录');
if (res.data.data.records.length) {
Statusprocessing(res.data.data.records);
// details.data = res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).DataList = res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).total = res.data.data.total;
TabList.value.find(res => res.name == TabPermissions.value).request = false;
page.value.total = TabList.value.find(res => res.name == TabPermissions.value).total;
details.data = TabList.value.find(res => res.name == TabPermissions.value).DataList;
} else {
TabList.value.find(res => res.name == TabPermissions.value).DataList = [];
TabList.value.find(res => res.name == TabPermissions.value).total = 0;
TabList.value.find(res => res.name == TabPermissions.value).request = true;
details.data= res.data.data.records
}
}).catch(res=>{
details.loadingObj.list = false; //
});
$_listOwn(data)
.then(res => {
details.loadingObj.list = false; //
console.log(res, '超时记录');
if (res.data.data.records.length) {
Statusprocessing(res.data.data.records);
// details.data = res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).DataList =
res.data.data.records;
TabList.value.find(res => res.name == TabPermissions.value).total = res.data.data.total;
TabList.value.find(res => res.name == TabPermissions.value).request = false;
page.value.total = TabList.value.find(res => res.name == TabPermissions.value).total;
details.data = TabList.value.find(res => res.name == TabPermissions.value).DataList;
} else {
TabList.value.find(res => res.name == TabPermissions.value).DataList = [];
TabList.value.find(res => res.name == TabPermissions.value).total = 0;
TabList.value.find(res => res.name == TabPermissions.value).request = true;
details.data = res.data.data.records;
}
})
.catch(res => {
details.loadingObj.list = false; //
});
};
//
@ -3382,8 +3384,8 @@ const ProcessingPartyFun = (val, Refresh) => {
console.log(details.data, '存储的数据');
} else {
TabList.value.find(res => res.name == TabPermissions.value).DataList = [];
TabList.value.find(res => res.name == TabPermissions.value).total = 0;
TabList.value.find(res => res.name == TabPermissions.value).request = true;
TabList.value.find(res => res.name == TabPermissions.value).total = 0;
TabList.value.find(res => res.name == TabPermissions.value).request = true;
details.data = res.data.data.record;
}
loading.value = false; //
@ -3766,9 +3768,7 @@ const ResultConfirmation = val => {
};
//
const findingAudit=()=>{
}
const findingAudit = () => {};
//
const BatchReturn = () => {
BatchFrom.value.businessDepartment = [];

72
src/views/basic/coderule/basicTenantCode.vue

@ -201,7 +201,7 @@ import { getList, getDetail, add, update, remove } from '@/api/basic/basicTenant
import option from '@/option/basic/basicTenantCode';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import { setNodeHeight } from '@/utils/util';
import { setNodeHeight, debounce } from '@/utils/util';
export default {
data() {
@ -209,13 +209,22 @@ export default {
columnList: [
{
prop: '',
label: '序号',
label: '复选框',
type: 0,
values: '',
width: 60,
checkarr: [],
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 60,
checkarr: [],
fixed: true,
},
{
prop: 'codeType',
label: '编码类型',
@ -310,6 +319,33 @@ export default {
buttonLoadingList: {
handleSubmitBtn: false,
},
onLoad: debounce(function (page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
console.log(data);
//
this.codeType.forEach(item => {
data.records.forEach(code => {
if (item.dictKey === code.codeType) {
code.codeType = item.dictValue;
}
});
});
//
this.showType.forEach(item => {
data.records.forEach(code => {
if (item.dictKey === code.showType) {
code.showType = item.dictValue;
}
});
});
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
}, 500),
};
},
created() {
@ -408,6 +444,11 @@ export default {
}
});
},
inputsc(index, row) {
this.query[row.prop] = index;
if (index === '') delete this.query[row.prop];
this.onLoad(this.page);
},
handleAdd() {
this.title = '新增';
this.form = {};
@ -493,33 +534,6 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
console.log(data);
//
this.codeType.forEach(item => {
data.records.forEach(code => {
if (item.dictKey === code.codeType) {
code.codeType = item.dictValue;
}
});
});
//
this.showType.forEach(item => {
data.records.forEach(code => {
if (item.dictKey === code.showType) {
code.showType = item.dictValue;
}
});
});
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
},
},
};
</script>

114
src/views/basic/forklift/basicForklift.vue

@ -528,7 +528,7 @@ import option from '@/option/basic/basicForklift2';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import { getToken } from '@/utils/auth';
import { setNodeHeight } from '@/utils/util';
import { setNodeHeight, debounce } from '@/utils/util';
export default {
data() {
@ -536,13 +536,22 @@ export default {
columnList: [
{
prop: '',
label: '序号',
label: '复选框',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: '',
label: '序号',
type: 12,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'businessLine',
label: '事业线',
@ -866,6 +875,62 @@ export default {
buttonLoadingList: {
handleSubmitBtn: false,
},
onLoad: debounce(async function (page, params = {}) {
try {
this.loading = true;
const res = await getList(
page.currentPage,
page.pageSize,
Object.assign(params, this.query)
);
const { code, data } = res.data;
if (code !== 200) return;
// eslint-disable-next-line no-empty
for (let i = 0; i < data.records.length; i++) {
// 线
for (let j = 0; j < this.businessLineData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].businessLine == this.businessLineData[j].dictKey) {
data.records[i].businessLine = this.businessLineData[j].dictValue;
}
}
//
for (let j = 0; j < this.supplierData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].supplier == this.supplierData[j].dictKey) {
data.records[i].supplier = this.supplierData[j].dictValue;
}
}
for (let j = 0; j < this.assetTypeData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].assetType == this.assetTypeData[j].dictKey) {
data.records[i].assetType = this.assetTypeData[j].dictValue;
}
}
for (let j = 0; j < this.forkliftTypeData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].forkliftType == this.forkliftTypeData[j].dictKey) {
data.records[i].forkliftType = this.forkliftTypeData[j].dictValue;
}
}
for (let j = 0; j < this.paymentMethodData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].paymentMethod == this.paymentMethodData[j].dictKey) {
data.records[i].paymentMethod = this.paymentMethodData[j].dictValue;
}
}
}
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loading = false;
}
}, 100),
};
},
mounted() {
@ -1196,51 +1261,6 @@ export default {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad(page, params = {}) {
this.loading = true;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data;
// eslint-disable-next-line no-empty
for (let i = 0; i < data.records.length; i++) {
// 线
for (let j = 0; j < this.businessLineData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].businessLine == this.businessLineData[j].dictKey) {
data.records[i].businessLine = this.businessLineData[j].dictValue;
}
}
//
for (let j = 0; j < this.supplierData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].supplier == this.supplierData[j].dictKey) {
data.records[i].supplier = this.supplierData[j].dictValue;
}
}
for (let j = 0; j < this.assetTypeData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].assetType == this.assetTypeData[j].dictKey) {
data.records[i].assetType = this.assetTypeData[j].dictValue;
}
}
for (let j = 0; j < this.forkliftTypeData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].forkliftType == this.forkliftTypeData[j].dictKey) {
data.records[i].forkliftType = this.forkliftTypeData[j].dictValue;
}
}
for (let j = 0; j < this.paymentMethodData.length; j++) {
// eslint-disable-next-line no-empty
if (data.records[i].paymentMethod == this.paymentMethodData[j].dictKey) {
data.records[i].paymentMethod = this.paymentMethodData[j].dictValue;
}
}
}
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
});
},
urlsplit() {
if (this.fileList.length > 0) {
let url = [];

93
src/views/distribution/artery/AddVehicleStowage.vue

@ -244,6 +244,7 @@
:tableData="details.nodeInfoData"
:loading="loadingObj.stowageLoading"
ref="nodeInfoRef"
:isShowRefresh="false"
>
<template #default="slotProps">
<el-input-number
@ -279,7 +280,7 @@
</el-divider>
<!-- 搜索区域 -->
<div v-if="!search">
<div v-h5uShow="!search">
<el-form
:inline="true"
label-width="80px"
@ -389,7 +390,7 @@
</el-divider>
<!-- 搜索区域 -->
<div v-if="!search">
<div v-h5uShow="!search">
<el-form
:inline="true"
label-width="80px"
@ -447,7 +448,11 @@
<!-- 展开搜索和刷新 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button
icon="el-icon-refresh"
@click="handleNewDataRefresh(item)"
circle
></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
@ -463,7 +468,6 @@
@selection="list => item.selectionChange(list, index)"
:isselectfun="
row => {
console.log(row);
return !Boolean(row.realNum);
}
"
@ -574,7 +578,14 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, setNodeHeight, computeNumber, isNumber, deepClone } from '@/utils/util';
import {
downloadXls,
setNodeHeight,
computeNumber,
isNumber,
deepClone,
debounce,
} from '@/utils/util';
import {
columnList,
nodeInfoColumnList,
@ -616,8 +627,6 @@ const ruleFormRef = ref();
//
const selectNodeRef = ref();
console.log('ruleFormRef :>> ', ruleFormRef);
//
const userInfo = computed(() => $store.state.user.userInfo);
@ -810,7 +819,6 @@ const newColumnListNode = ref();
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
/** 设置页面表格高度 */
const setTabelHeight = async () => {
@ -819,13 +827,9 @@ const setTabelHeight = async () => {
const _listNode = document.querySelectorAll('.columnList.maboxhi');
console.log('nodeInfoRef.value.$el :>> ', nodeInfoRef.value.$el);
//
setNodeHeight(nodeInfoRef.value.$el, 'auto');
console.log('_listNode :>> ', _listNode);
if (_listNode.length === 0) return;
setNodeHeight(_listNode, '55vh');
};
@ -838,10 +842,7 @@ onMounted(() => {
//
const clearSelectionList = () => {
details.selectionList = [];
console.log('newColumnListNode :>> ', newColumnListNode);
console.log('oldColumnListNode :>> ', oldColumnListNode);
newColumnListNode.value.forEach(val => {
console.log('val :>> ', val);
val.handleCheckSelect([]);
});
oldColumnListNode.value.forEach(val => {
@ -872,7 +873,7 @@ const handleEditForbidden = (_arr: any[]) => {
};
/** 请求运单数据 */
const initOriginWarehouseOrder = async (params = {}) => {
const initOriginWarehouseOrder = debounce(async (params = {}) => {
try {
details.loadingObj.oldListLoading = true;
const submitData = {
@ -884,7 +885,6 @@ const initOriginWarehouseOrder = async (params = {}) => {
if (Number(details.pageType) === 2) submitData.loadId = details.loadId;
if (submitData.orderCodes.length === 0) delete submitData.orderCodes;
const res = await postFindAllOrderList(submitData);
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.data = data.records;
@ -894,7 +894,7 @@ const initOriginWarehouseOrder = async (params = {}) => {
} finally {
details.loadingObj.oldListLoading = false;
}
};
}, 100);
/** 请求添加在调度池中的数据 */
const initDispatchOrder = async item => {
@ -943,7 +943,6 @@ const onLoad = async () => {
const { code, data } = res.data;
if (code !== 200) return;
details.pageInfo = data;
console.log('data.startWarehouseInfo.nodeName :>> ', data.startWarehouseInfo.nodeName);
details.nodeInfoData = [
{
nodeName: data.startWarehouseInfo.warehouseName,
@ -954,15 +953,12 @@ const onLoad = async () => {
},
];
details.nodeInfoData = handleEditForbidden(details.nodeInfoData);
console.log('details.nodeInfoData :>> ', details.nodeInfoData);
details.form.startWarehouseName = data.startWarehouseInfo.warehouseName;
details.form.startWarehouseId = data.startWarehouseInfo.warehouseId;
}
//
else {
console.log('222 :>> ', 222);
const res = await postSelectEditDetailByLoadId({ loadId: details.loadId });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
@ -987,11 +983,8 @@ const onLoad = async () => {
loading: false,
selectionChange(list, index) {
details.nodeInfoData[index].selectionList = list;
console.log('list :>> ', list);
},
itemInputsc(value, row, index) {
console.log('this :>> ', this);
try {
//
const reg = new RegExp(value, 'i');
@ -1060,7 +1053,6 @@ const remoteMethod = async val => {
const { code, data } = res.data;
if (code !== 200) return;
details.options = data;
console.log('res :>> ', res);
};
remoteMethod('');
@ -1101,14 +1093,12 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
console.log('111 :>> ', 111);
if (index === '') delete details.query[row.prop];
initOriginWarehouseOrder();
};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
@ -1168,6 +1158,22 @@ const setnewcolum = (newarr, headarr, type) => {
}
};
const handleNewDataRefresh = item => {
for (let index = 0; index < item.lineCarsOrderList.length; index++) {
const iterator = item.lineCarsOrderList[index];
const _code = iterator.orderCode + ',' + iterator.waybillNo;
const _index = details.orderCodeList.indexOf(_code);
// +
details.orderCodeList.splice(_index, 1);
}
item.lineCarsOrderList = [];
item.renderData = [];
details.page.pageNum = 1;
initOriginWarehouseOrder();
};
/** 弹出层开启前清除数据 */
const beforeClose = done => {
done();
@ -1180,7 +1186,6 @@ const handleNameChange = (type: number) => {
const findValue = type === 1 ? form.value.driverName : form.value.assistantName;
const _value = details.driverListByName.find(value => value.driverId === findValue);
console.log('_value :>> ', _value);
if (type === 1) {
form.value.driverName = _value.driverName;
form.value.driverId = _value.driverId;
@ -1195,7 +1200,6 @@ const handleNameChange = (type: number) => {
/** 车辆改变 */
const handleCarChange = (type: number) => {
const _value = details.carListByName.find(value => value.carId === form.value.carNumber);
console.log('_value :>> ', _value);
form.value.carNumber = _value.carNumber;
form.value.carId = _value.carId;
};
@ -1260,11 +1264,8 @@ const handleAddNode = async (index: number) => {
loading: false,
selectionChange(list, index) {
details.nodeInfoData[index].selectionList = list;
console.log('list :>> ', list);
},
itemInputsc(value, row, index) {
console.log('this :>> ', this);
try {
//
const reg = new RegExp(value, 'i');
@ -1307,7 +1308,6 @@ const handleAddNode = async (index: number) => {
/** 删除目的仓 */
const handleDelNode = (index: number, row) => {
console.log('row :>> ', row);
ElMessageBox.confirm('确认删除该节点吗?', '', {
confirmButtonText: '确认',
cancelButtonText: '取消',
@ -1345,7 +1345,6 @@ const handleAddWaybill = async (index: number) => {
});
}
console.log('_node :>> ', _node);
//
if (Number(details.pageType) === 3) return;
for (let item of details.selectionList) {
@ -1364,8 +1363,6 @@ const handleAddWaybill = async (index: number) => {
_node.renderData = _node.lineCarsOrderList;
console.log('details.orderCodeList :>> ', details.orderCodeList);
clearSelectionList();
details.page.pageNum = 1;
initOriginWarehouseOrder();
@ -1374,7 +1371,6 @@ const handleAddWaybill = async (index: number) => {
/** 移除调度池 */
const handleRemoveWaybill = async (index: number) => {
const _node = details.nodeInfoData[index];
console.log('details.nodeInfoData[index] :>> ', details.nodeInfoData[index]);
//
if (!_node.nodeName || !_node.nodeId) {
@ -1390,7 +1386,6 @@ const handleRemoveWaybill = async (index: number) => {
_node.lineCarsOrderList = _node.lineCarsOrderList.filter((val, index) => {
//
if (Number(details.pageType) === 2) {
console.log('_node :>> ', _node);
if (val.carsOrderId) {
const _index = _node.MappingData.indexOf(val.carsOrderId);
_node.MappingData.splice(_index, 1);
@ -1420,7 +1415,6 @@ const remoteMethodDriver = async val => {
// if (!val) return;
const res = await postFindDriverListByName({ driverName: val });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.driverListByName = data;
@ -1434,7 +1428,6 @@ const remoteMethodCar = async val => {
// if (!val) return;
const res = await postFindCarListByName({ carNumber: val });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
details.carListByName = data;
@ -1443,12 +1436,10 @@ remoteMethodCar('');
/** 修改计划数 */
const handleEditplanNum = ({ row }, item) => {
console.log('row :>> ', row);
details.editInfo = row;
details.editInfo.enterPlanNum = Number(row.planNum);
details.editInfo.item = item;
console.log('details.editInfo :>> ', details.editInfo);
details.popUpShow.editPlanNumberVisited = true;
};
@ -1548,7 +1539,6 @@ const addSubmit = async () => {
submitData.addCarsLoadLineList[0].addList = _lineCarsOrderList;
submitData.addCarsLoadLineList[0].removeList = [];
console.log('submitData :>> ', submitData);
const res = await postSaveNew(submitData);
const { code, msg } = res.data;
if (code !== 200) return;
@ -1609,7 +1599,6 @@ const editSubmit = async () => {
val.sort = i + 1;
const _index = details.allCarsLineList.indexOf(val.nodeId);
console.log('_index :>> ', _index);
if (_index === -1) {
//
val.updateType = 2;
@ -1646,8 +1635,6 @@ const editSubmit = async () => {
});
}
console.log('_addArr.length :>> ', _addArr.length);
console.log('val.MappingData.length :>> ', val.MappingData.length);
// ,
if ((val.updateType !== 2 && _addArr.length > 0) || val.MappingData.length > 0)
val.updateType = 1;
@ -1660,11 +1647,6 @@ const editSubmit = async () => {
submitData.addCarsLoadLineList[details.active].addList = _lineCarsOrderList;
submitData.addCarsLoadLineList[details.active].removeList = details._removeList;
// const submitData = { loadId: details.loadId, ...details.form };
console.log('details.form :>> ', details.form);
console.log('submitData :>> ', submitData);
const res = await postUpdateCarsLoadBasicData(submitData);
const { code, msg } = res.data;
if (code !== 200) return;
@ -1673,7 +1655,6 @@ const editSubmit = async () => {
type: 'success',
});
back();
// console.log('res :>> ', res);
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -1693,11 +1674,6 @@ const nodeCostSubmit = async () => {
carsLoadLineList: details.nodeInfoData,
};
console.log('details.nodeInfoData :>> ', details.nodeInfoData);
console.log('details.form :>> ', details.form);
console.log('submitData :>> ', submitData);
const res = await postUpdateLoadFeeByNodeId(submitData);
const { code, msg } = res.data;
if (code !== 200) return;
@ -1718,7 +1694,6 @@ const nodeCostSubmit = async () => {
const handleSubmit = (formEl: FormInstance | undefined) => {
if (btnLoadingObj.submitBtn) return;
if (!formEl) return;
console.log('111 :>> ', 111);
formEl.validate(async (valid, fields) => {
if (valid) {
try {

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

@ -367,7 +367,7 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, deepClone, setNodeHeight } from '@/utils/util';
import { downloadXls, deepClone, setNodeHeight, debounce } from '@/utils/util';
import { columnList, detailsColumnList } from '@/option/distribution/TripartiteTransfer';
import { packageColumnList } from '@/option/distribution/VehicleStowage';
import {
@ -646,7 +646,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -674,7 +674,7 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
};
}, 10);
// onLoad();
/** 初始化页面 */
@ -724,6 +724,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (index === '') delete details.query[row.prop];
onLoad();
};

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

@ -593,7 +593,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async () => {
const onLoad = debounce(async () => {
try {
details.loadingObj.pageLoading = true;
@ -644,7 +644,7 @@ const onLoad = async () => {
} finally {
details.loadingObj.pageLoading = false;
}
};
}, 10);
onLoad();
@ -754,6 +754,7 @@ const remoteMethodDriver = async val => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index) delete details.query[row.prop];
onLoad();
};

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

@ -279,6 +279,7 @@
:loading="loadingObj.list"
@inputTxt="packageInputsc"
@selection="list => (details.packageSelectedData = list)"
:isShowRefresh="false"
>
<template #default="slotProps">
<el-text
@ -353,7 +354,7 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, deepClone, setNodeHeight } from '@/utils/util';
import { downloadXls, deepClone, setNodeHeight, debounce } from '@/utils/util';
import { columnList } from '@/option/distribution/VehicleArrivalManagement';
import { packageColumnList } from '@/option/distribution/VehicleStowage';
import {
@ -579,7 +580,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -602,13 +603,13 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
};
}, 10);
onLoad(details.page);
onLoad();
/** 搜索 */
const searchChange = () => {
onLoad(details.page);
onLoad();
};
/** 清空表单 */
@ -616,7 +617,7 @@ const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.pageNum = 1;
onLoad(details.page);
onLoad();
};
/** 展开列表控件 */
@ -634,7 +635,8 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
onLoad(details.page);
if (!index) delete details.query[row.prop];
onLoad();
};
/** 表格表头时间选择 */
@ -647,7 +649,7 @@ const timesc = (index, row) => {
if (!index) {
delete details.query[row.prop];
}
onLoad(details.page);
onLoad();
};
/** 表格表头输入框搜索 */
@ -661,7 +663,7 @@ const selectsc = (index, row) => {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
onLoad(details.page);
onLoad();
};
/** 表格表头复选框选择 */
@ -672,7 +674,7 @@ const selectionChange = (list: any) => {
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad(details.page);
onLoad();
};
/** 页码改变执行的回调 */

70
src/views/distribution/artery/VehicleStowage.vue

@ -56,40 +56,36 @@
</div>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新增配载 </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset"> </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset"
>装载清单</el-button
>
<el-button type="primary" icon="el-icon-printer" @click="searchReset"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="el-icon-van" @click="handleStartCar"> </el-button>
<el-button type="primary" icon="el-icon-delete" @click="handleCancelStartCar"
>取消发车</el-button
>
<el-button type="primary" icon="el-icon-delete" @click="handleCancelCarsLoad"
>取消配载</el-button
>
<el-button type="primary" icon="el-icon-document" @click="handleComparativeStatement"
>对比报表</el-button
>
<el-button type="primary" icon="el-icon-document" @click="searchReset"
>卸车报告</el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="el-icon-plus" @click="handleAdd">新增配载 </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset"> </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset">装载清单</el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset"
>装载卸车清单(财务)</el-button
>
<el-button type="primary" icon="el-icon-van" @click="handleStartCar"> </el-button>
<el-button type="primary" icon="el-icon-delete" @click="handleCancelStartCar"
>取消发车</el-button
>
<el-button type="primary" icon="el-icon-delete" @click="handleCancelCarsLoad"
>取消配载</el-button
>
<el-button type="primary" icon="el-icon-document" @click="handleComparativeStatement"
>对比报表</el-button
>
<el-button type="primary" icon="el-icon-document" @click="searchReset"
>卸车报告</el-button
>
</div>
</el-row>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="el-icon-search" @click="searchHide" circle></el-button>
</div>
</div>
<!-- 列表模块 -->
<tablecmt
@ -286,6 +282,7 @@
:loading="loadingObj.list"
@inputTxt="packageInputsc"
@selection="list => (details.packageSelectedData = list)"
:isShowRefresh="false"
>
<template #default="slotProps">
<el-text
@ -516,7 +513,7 @@ const details = reactive<any>({
/** 选择目的地弹窗 */
chooseDestinationVisited: false,
/** 装载清单 */
listOfLoadedWagons: false,
listOfLoadedWagons: true,
},
/** 列表Dom节点 */
listNode: '',
@ -660,7 +657,7 @@ onMounted(() => {
});
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -693,7 +690,7 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
};
}, 10);
const initOnload = () => {
details.page.pageNum = 1;
@ -746,6 +743,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index) delete details.query[row.prop];
initOnload();
};

1
src/views/distribution/artery/VehicleStowageDetails.vue

@ -113,6 +113,7 @@
:tableData="details.nodeInfoData"
:loading="loadingObj.stowageLoading"
ref="nodeInfoRef"
:isShowRefresh="false"
>
<template #default="slotProps">
<div>{{ slotProps.scope.row[slotProps.scope.column.property] }}</div>

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

@ -763,7 +763,7 @@ watch(
);
/** 请求运单数据 */
const initOriginWarehouseOrder = async (params = {}) => {
const initOriginWarehouseOrder = debounce(async function (params = {}) {
try {
details.loadingObj.oldListLoading = true;
const submitData = {
@ -785,11 +785,11 @@ const initOriginWarehouseOrder = async (params = {}) => {
} finally {
details.loadingObj.oldListLoading = false;
}
};
}, 100);
/** 搜索 */
const searchChange = () => {
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 清空表单 */
@ -797,7 +797,7 @@ const searchReset = () => {
details.query = {};
details.stockupDate = [];
details.page.pageNum = 1;
onLoad(details.page);
initOriginWarehouseOrder();
};
//
@ -862,7 +862,7 @@ remoteMethodDriver('');
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头时间选择 */
@ -875,7 +875,7 @@ const timesc = (index, row) => {
if (!index) {
delete details.query[row.prop];
}
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头下拉框选择 */
@ -886,7 +886,7 @@ const selectsc = (index, row) => {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
}
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头复选框选择 */
@ -897,7 +897,7 @@ const selectionChange = (list: any) => {
/** 表格表头输入框搜索 */
const newInputsc = (index, row) => {
details.newQuery[row.prop] = index;
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头时间选择 */
@ -910,7 +910,7 @@ const newTimesc = (index, row) => {
if (!index) {
delete details.newQuery[row.prop];
}
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头输入框搜索 */
@ -924,7 +924,7 @@ const newSelectsc = (index, row) => {
details.newQuery['certificateType'] = index;
if (!index) delete details.newQuery['certificateType'];
}
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 表格表头复选框选择 */
@ -935,7 +935,7 @@ const newSelectionChange = (list: any) => {
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.page.pageSize = pageSize;
onLoad(details.page);
initOriginWarehouseOrder();
};
/** 页码改变执行的回调 */

44
src/views/distribution/artery/directGoMarket.vue

@ -154,7 +154,7 @@ import {
postFindWaybillOrderListToMall,
getUpdateWaybillOrderIsCustemer,
} from '@/api/distribution/directGoMarket';
import { downloadXls, deepClone } from '@/utils/util';
import { downloadXls, deepClone, debounce } from '@/utils/util';
import { oldColumnList, newColumnList } from '@/option/distribution/zeroAdditionalRecording';
import { ElMessage } from 'element-plus';
import { useRoute, useRouter } from 'vue-router';
@ -287,7 +287,7 @@ onMounted(() => {
}, 100);
});
const initOldData = async (params = {}) => {
const initOldData = debounce(async function (params = {}) {
try {
details.loadingObj.oldListLoading = true;
const submitData = {
@ -308,9 +308,9 @@ const initOldData = async (params = {}) => {
} finally {
details.loadingObj.oldListLoading = false;
}
};
}, 10);
const initNewData = async (params = {}) => {
const initNewData = debounce(async function (params = {}) {
try {
details.loadingObj.newListLoading = true;
const submitData = {
@ -331,11 +331,10 @@ const initNewData = async (params = {}) => {
} finally {
details.loadingObj.newListLoading = false;
}
};
}, 10);
/** 请求页面数据 */
const onLoad = () => {
details;
initOldData();
initNewData();
};
@ -387,8 +386,9 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
onLoad();
details.oldQuery[row.prop] = index;
if (index === '') delete details.oldQuery[row.prop];
initOldData();
};
/** 表格表头时间选择 */
@ -397,11 +397,11 @@ const timesc = (index, row) => {
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
details.oldQuery[row.prop] = index;
if (!index) {
delete details.query[row.prop];
delete details.oldQuery[row.prop];
}
onLoad();
initOldData();
};
/** 表格表头输入框搜索 */
@ -409,13 +409,13 @@ const btnsc = () => {};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
details.query[row.prop] = index;
if (!index) delete details.query[row.prop];
details.oldQuery[row.prop] = index;
if (!index) delete details.oldQuery[row.prop];
if (row.prop === 'certificateTypeName') {
details.query['certificateType'] = index;
if (!index) delete details.query['certificateType'];
details.oldQuery['certificateType'] = index;
if (!index) delete details.oldQuery['certificateType'];
}
onLoad();
initOldData();
};
/** 表格表头复选框选择 */
@ -426,7 +426,7 @@ const selectionChange = (list: any) => {
/** 表格表头输入框搜索 */
const newInputsc = (index, row) => {
details.newQuery[row.prop] = index;
onLoad();
initNewData();
};
/** 表格表头时间选择 */
@ -439,7 +439,7 @@ const newTimesc = (index, row) => {
if (!index) {
delete details.newQuery[row.prop];
}
onLoad();
initNewData();
};
/** 表格表头输入框搜索 */
@ -453,7 +453,7 @@ const newSelectsc = (index, row) => {
details.newQuery['certificateType'] = index;
if (!index) delete details.newQuery['certificateType'];
}
onLoad();
initNewData();
};
/** 表格表头复选框选择 */
@ -464,23 +464,25 @@ const newSelectionChange = (list: any) => {
/** 每页数量改变执行的回调 */
const sizeChange = (pageSize: number) => {
details.oldPage.pageSize = pageSize;
onLoad();
initOldData();
};
/** 页码改变执行的回调 */
const currentChange = pageNum => {
details.oldPage.pageNum = pageNum;
initOldData();
};
/** 每页数量改变执行的回调 */
const newSizeChange = (pageSize: number) => {
details.newPage.pageSize = pageSize;
onLoad();
initNewData();
};
/** 页码改变执行的回调 */
const newCurrentChange = pageNum => {
details.newPage.pageNum = pageNum;
initNewData();
};
/**

8
src/views/distribution/artery/directGoMarketDetails.vue

@ -130,6 +130,7 @@
return Number(row.scanStatus) !== 3;
}
"
:isShowRefresh="false"
>
<template #default="slotProps">
<el-text
@ -267,7 +268,7 @@ import {
} from '@/api/distribution/directGoMarket';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, deepClone } from '@/utils/util';
import { downloadXls, deepClone, debounce } from '@/utils/util';
import { columnList, detailsColumnList } from '@/option/distribution/directGoMarketDetails';
import { useRouter, useRoute } from 'vue-router';
@ -540,7 +541,7 @@ const initData = (data, row) => {
};
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -572,7 +573,7 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
};
}, 10);
const initOnLoad = () => {
details.page.pageNum = 1;
@ -667,6 +668,7 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (index === '') delete details.query[row.prop];
initOnLoad();
};

1
src/views/distribution/artery/handleLoadingDestination.vue

@ -32,6 +32,7 @@
@timeCheck="timesc"
@selectCheck="selectsc"
@selection="selectionChange"
:isShowRefresh="false"
>
<template #default="slotProps">
<el-text @click="handleConfiguration(slotProps.scope)">配置包条码</el-text>

8
src/views/distribution/artery/truckLoadingDetails.vue

@ -215,7 +215,7 @@ import {
import { getShowAdvancePackgeCode } from '@/api/waybill/orderPackageListDetails';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { downloadXls, getHtmls } from '@/utils/util';
import { downloadXls, getHtmls, debounce } from '@/utils/util';
import { detailsColumnList } from '@/option/distribution/TripartiteTransfer';
import { useRouter, useRoute } from 'vue-router';
import print from '@/utils/print';
@ -462,7 +462,7 @@ const initData = (data, row) => {
};
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
@ -490,7 +490,7 @@ const onLoad = async (params = {}) => {
} finally {
details.loadingObj.list = false;
}
};
}, 10);
/** 搜索 */
const searchChange = () => {
@ -545,6 +545,8 @@ const searchHide = () => {
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index) delete details.query[row.prop];
onLoad();
};

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

@ -265,7 +265,7 @@ import {
postDeleteZeroSuppleById,
postFindNextNodeList,
} from '@/api/distribution/zeroAdditionalRecording';
import { downloadXls } from '@/utils/util';
import { downloadXls, setNodeHeight, debounce } from '@/utils/util';
import { oldColumnList, newColumnList } from '@/option/distribution/zeroAdditionalRecording';
import { ElMessage } from 'element-plus';
import { useRoute, useRouter } from 'vue-router';
@ -423,7 +423,7 @@ const initFinalNodeId = async () => {
initFinalNodeId();
/** 请求页面数据 */
const onLoad = async (params = {}) => {
const onLoad = debounce(async (params = {}) => {
try {
details.loadingObj.oldListLoading = true;
const submitData = {
@ -448,7 +448,7 @@ const onLoad = async (params = {}) => {
details.loadingObj.oldListLoading = false;
}
// postloadZeroSuppleList
};
}, 10);
onLoad();
@ -481,30 +481,15 @@ const showdrawer = (_flag?: boolean, _type?: number) => {
/** 是否开启搜索区 */
const searchHide = () => {
function getWinHight() {
var windowHight = 0;
if (document.body.clientHeight && document.documentElement.clientHeight) {
windowHight =
document.body.clientHeight < document.documentElement.clientHeight
? document.body.clientHeight
: document.documentElement.clientHeight;
} else {
}
return document.documentElement.clientHeight;
}
details.search = !details.search;
const timer = setTimeout(() => {
details.listNodeList.forEach(_node => {
console.log('_node :>> ', _node);
_node.style.height = getWinHight() - _node.getBoundingClientRect().top - 70 + 'px';
});
clearTimeout(timer);
}, 10);
setNodeHeight(details.listNodeList, '');
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.oldQuery[row.prop] = index;
if (!index) delete details.oldQuery[row.prop];
onLoad();
};

45
src/views/distribution/inventory/CreateOrder.vue

@ -983,7 +983,7 @@ import { columnList, packageListColumnList } from '@/option/waybill/TemporarySto
import { getopenOrderAdvancePageList } from '@/api/waybill/TemporaryStorageList';
import { getLazyTreeAll } from '@/api/base/region';
import { ElMessage, ElMessageBox } from 'element-plus';
import type { FormInstance, FormRules } from 'element-plus';
import type { FormInstance, FormRules, Action } from 'element-plus';
import { useRouter, useRoute } from 'vue-router';
import {
postOpenOrderFindClientInfo,
@ -1580,7 +1580,6 @@ const totalCost = computed(() => {
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
console.log('permission :>> ', permission);
onMounted(() => {});
@ -1589,8 +1588,6 @@ const handleTranslationLocation = () => {
//
const _location = details.query.destination;
console.log('_location :>> ', _location);
let _arr = [];
//
@ -1638,19 +1635,15 @@ getLazyTreeAll().then(res => {
const onLoad = async (idsArr = []) => {
try {
details.query = deepClone(details.deepQuery);
console.log('details.query :>> ', details.deepQuery);
console.log('JSON.parse(details.pageInfo.ids) :>> ', JSON.parse(details.pageInfo.ids));
let ids = [];
if (idsArr.length === 0) ids = JSON.parse(details.pageInfo.ids);
else ids = idsArr;
const res = await getOpenOrderAdvanceToWaybillInfo({ advanceIds: ids });
const { code, data } = res.data;
console.log('data :>> ', data);
if (code !== 200) return;
//
info.value = deepClone(data);
console.log('info.value :>> ', info.value === data);
for (let key in data) {
details.query[key] = data[key] || '';
}
@ -1726,7 +1719,6 @@ const initPageInfo = async (idsArr = []) => {
details.loadingObj.submitLoadingBtn = true;
details.pageInfo = { ...$route.query };
console.log('details.pageInfo :>> ', details.pageInfo);
if (details.pageInfo.type !== 'edit') await onLoad(idsArr);
else {
const res = await postFindWaybillDetail({ waybillId: details.pageInfo.id });
@ -1736,7 +1728,6 @@ const initPageInfo = async (idsArr = []) => {
details.query = { ...data, ...data.warehouseWaybill };
delete details.query.warehouseWaybill;
details.query.queryDestinationWarehouseName = details.query.destinationWarehouseName;
console.log('data :>> ', data);
details.query.openOrderDate = data.warehouseWaybill.createTime;
details.query.orderCode = data.warehouseWaybill.orderNo;
details.query.transportType = '1';
@ -1758,7 +1749,6 @@ const initPageInfo = async (idsArr = []) => {
: data.warehouseWaybill.dpay;
//
if (details.regionOptione.length !== 0) handleTranslationLocation();
console.log('details.query :>> ', details.query);
// goodsList
if (data.warehouseWaybill.detailList.length === 0)
@ -1929,7 +1919,6 @@ const initOrderList = async (params = {}) => {
const res = await getopenOrderAdvancePageList(details.page, { ...details.form, ...params });
//
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
@ -2091,7 +2080,6 @@ const remoteMethod = val => {
/** 目的仓选择时给目的仓名称赋值 */
const destinationWarehouseNameChange = val => {
console.log('val :>> ', val);
const _item = details.options.find(value => value.warehouseId === val);
details.query.destinationWarehouseName = _item.warehouseName;
details.query.destinationWarehouseId = _item.warehouseId;
@ -2100,9 +2088,6 @@ const destinationWarehouseNameChange = val => {
/** 计算行合计 */
const handleComputed = (row: any) => {
// if (!row.price) return;
console.log('row :>> ', row);
if (row.chargeType === 1) row.subtotalFreight = computeNumber(row.num, '*', row.price).result;
else if (row.chargeType === 2)
row.subtotalFreight = computeNumber(row.volume, '*', row.price).result;
@ -2174,7 +2159,6 @@ const handleChooseConsigner = (column, prop, order) => {
/** 切换tabBar */
const handleClickAll = e => {
console.log('e :>> ', e);
const _name = e.props.name;
details.orderStatus = _name;
init();
@ -2243,15 +2227,12 @@ const handlePayWay = (number?: number) => {
};
const handleRefreshText = (key, value, refreshValue?: string | number) => {
console.log('key :>> ', key);
if (value) return;
query.value[key] = refreshValue ? refreshValue : '';
console.log('query :>> ', query);
};
/** 重置数据 */
const resetForm = (formEl: FormInstance | undefined) => {
console.log('formEl :>> ', formEl);
if (!formEl) return;
formEl.resetFields();
details.goodsList = [
@ -2290,7 +2271,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
//
const _flag = details.goodsList.every(val => {
console.log('val :>> ', val);
if (!val.goodsName || !isNumber(val.num) || val.num === 0) return false;
return true;
});
@ -2302,7 +2282,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
});
}
console.log('submit!');
const submitData = {
...details.query,
waybillDetailList: details.goodsList,
@ -2317,7 +2296,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
const { destination } = submitData;
console.log('destination :>> ', destination);
if (destination.length === 1) {
return ElMessage({ message: '请选择正确到站地址', type: 'warning' });
}
@ -2363,7 +2341,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
submitData.waybillType = 1;
if (typeof submitData.receipt === 'object')
submitData.receipt = submitData.receipt.join(',');
console.log('submitData :>> ', submitData);
//
details.submitData = submitData;
@ -2409,7 +2386,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
submitData.waybillType = 1;
if (typeof submitData.receipt === 'object')
submitData.receipt = submitData.receipt.join(',');
console.log('submitData :>> ', submitData);
//
details.submitData = submitData;
@ -2418,14 +2394,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
if (!response.data.data) return ElMessage.warning('没有更改的数据');
// console.log(
// 'response.data.data.replaceAll :>> ',
// response.data.data.replaceAll(';', '</ br>')
// );
ElMessageBox.alert(response.data.data.replaceAll(';', ' <br /> '), '被更改数据', {
// if you want to disable its autofocus
// autofocus: false,
dangerouslyUseHTMLString: true,
confirmButtonText: '确认',
callback: async (action: Action) => {
@ -2452,7 +2421,6 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
// ,
if (details.pageInfo.type === 'add') details.popUpShow.titleVisited = true;
console.log('res :>> ', res);
} catch (error) {
console.log('error :>> ', error);
} finally {
@ -2499,7 +2467,7 @@ const handleFindPrice = async (condition?: any) => {
const { destination } = details.query;
if (destination.length <= 1) return;
if (!destination || destination.length <= 1) return;
if (!details.query.consigneeId) return;
if (!details.query.departureWarehouseId) return;
if (!details.query.destinationWarehouseId) return;
@ -2512,8 +2480,6 @@ const handleFindPrice = async (condition?: any) => {
goodsIds: [] as any[],
};
console.log(submitData);
// id
if (condition) {
const { goodsId } = condition;
@ -2522,16 +2488,12 @@ const handleFindPrice = async (condition?: any) => {
} else {
const _goodsIdsArr = [];
console.log('details.goodsList', details.goodsList);
// goodsId
for (let index = 0; index < details.goodsList.length; index++) {
const { goodsId } = details.goodsList[index];
if (goodsId) _goodsIdsArr.push(goodsId);
}
console.log('_goodsIdsArr', _goodsIdsArr);
if (_goodsIdsArr.length === 0) return;
submitData.goodsIds = _goodsIdsArr;
}
@ -2553,7 +2515,6 @@ const handleFindPrice = async (condition?: any) => {
const res = await postFindArrPrice(submitData);
// const { code, data } = res.data;
const { code, data } = res.data;
console.log('data :>> ', data);
if (code !== 200 || data.length === 0) return;
@ -2570,7 +2531,6 @@ const handleFindPrice = async (condition?: any) => {
condition[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
}
console.log('condition :>> ', condition);
handleComputed(condition);
} else {
for (let idx = 0; idx < details.goodsList.length; idx++) {
@ -2599,7 +2559,6 @@ const handleFindPrice = async (condition?: any) => {
if (element.itemName === value.name)
val[value.key] = isNumber(element.cost) ? Number(element.cost) : 0;
}
console.log('val :>> ', val);
}
handleComputed(val);
}

4
src/views/distribution/inventory/addArteryDistrilbutionBillLadingList.vue

@ -612,7 +612,7 @@ const initData = async () => {
/**
* @param {boolean} isRefresh 是否刷新
*/
const onLoad = async (isRefresh = false) => {
const onLoad = debounce(async (isRefresh = false) => {
try {
if (isRefresh) details.addInfo.oldPages.pageNum = 1;
@ -639,7 +639,7 @@ const onLoad = async (isRefresh = false) => {
} finally {
details.loadingObj.oldListLoading = false;
}
};
}, 10);
/** 初始化页面请求数据 */
const initPage = async () => {

57
src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue

@ -321,23 +321,12 @@
</template>
<script lang="ts">
import {
remove,
getListOwn,
getListOwnNUm,
getBillLadingExport,
} from '@/api/distribution/distrilbutionBillLading';
import { remove } from '@/api/distribution/distrilbutionBillLading';
//
import {
postPageList,
postFindChargeTypeList,
postSaveNew,
postList,
postUpdateBillladingStatus,
postBillladingDetail,
postBillladingPackageDetail,
postUpdateBillladingWaybillNum,
postAddWaybillToBillladingId,
} from '@/api/distribution/arteryDistrilbutionBillLadingList';
//
import {
@ -348,7 +337,7 @@ import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import { getToken } from '@/utils/auth';
import dayjs from 'dayjs';
import { downloadXls, setNodeHeight } from '@/utils/util';
import { downloadXls, setNodeHeight, debounce } from '@/utils/util';
export default {
data() {
@ -473,6 +462,27 @@ export default {
},
},
],
/** 请求页面数据 */
onLoad: debounce(async function (page, params = {}) {
try {
// loading
this.loading = true;
//
const res = await postPageList({ ...page, ...this.query, ...params });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
this.data = data.records;
this.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loading = false;
}
}),
};
},
mounted() {
@ -901,27 +911,6 @@ export default {
bodyContent.style.height = '600px';
});
},
/** 请求页面数据 */
async onLoad(page, params = {}) {
try {
// loading
this.loading = true;
//
const res = await postPageList({ ...page, ...this.query, ...params });
console.log('res :>> ', res);
const { code, data } = res.data;
if (code !== 200) return;
this.data = data.records;
this.page.total = data.total;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loading = false;
}
},
async getMenDian(row, num) {},
//
async remoteCodeMethod(query) {

Loading…
Cancel
Save