Browse Source

修复干线部分bug

dev-xx
qb 11 months ago
parent
commit
93b4d7f400
  1. 6
      src/api/distribution/VehicleStowageDetails.js
  2. 3
      src/components/WaybillPrintTemplate/WaybillPrintTemplate.vue
  3. 2
      src/router/index.js
  4. 1
      src/views/distribution/artery/VehicleStowageDetails.vue
  5. 15
      src/views/distribution/checkInventoryTask/createTask.vue
  6. 234
      src/views/distribution/inventory/BookingNote.vue
  7. 9
      src/views/distribution/inventory/CreateOrder.vue
  8. 95
      src/views/waybill/CreateZeroOrder.vue
  9. 12
      src/views/waybill/orderPackageList.vue
  10. 58
      src/views/waybill/orderPackageListDetails.vue

6
src/api/distribution/VehicleStowageDetails.js

@ -23,7 +23,7 @@ export const postCarsLoadDetailInfo = data => {
};
/**
* 通过名称查询仓库信息
* 配载日志
*/
export const postFindCarsLoadLogs = data => {
return request({
@ -34,7 +34,7 @@ export const postFindCarsLoadLogs = data => {
};
/**
* 通过名称查询仓库信息
* 查询运输合同
*/
export const postFindContractList = data => {
return request({
@ -45,7 +45,7 @@ export const postFindContractList = data => {
};
/**
* 通过名称查询仓库信息
* 新增运输合同
*/
export const postAddContractByLoadId = data => {
return request({

3
src/components/WaybillPrintTemplate/WaybillPrintTemplate.vue

@ -165,7 +165,8 @@ const printTemplate = (type: 'haveTem' | 'notHaveTem') => {
for (let j = 0; j < element.childNodes.length; j++) {
const child = element.childNodes[j];
if (child.className !== 'image-container') continue;
child.style.setProperty('--isShow', type === 'haveTem' ? 'flex' : 'none');
// child.style.setProperty('--isShow', type === 'haveTem' ? 'flex' : 'none');
child.style.height = '0px';
child.style.setProperty('--aa', type === 'haveTem' ? '#000' : '#fff');
break;
}

2
src/router/index.js

@ -18,8 +18,6 @@ AvueRouter.install({
Router.$avueRouter.formatRoutes(Store.getters.menuAll, true);
console.log('Router :>> ', Router.getRoutes());
export function resetRouter() {
// 重置路由 比如用于身份验证失败,需要重新登录时 先清空当前的路有权限
const newRouter = createRouter();

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

@ -933,7 +933,6 @@ const setnewcolum = (newarr, headarr, type) => {
/** 合并行 */
const arraySpanMethod = (row: any) => {
console.log('123 :>> ', 123);
// if (details.type === 'plan') return;
const { column } = row;

15
src/views/distribution/checkInventoryTask/createTask.vue

@ -176,12 +176,7 @@
<el-button type="primary" @click="TcAddData" v-if="Statusjudgment"> </el-button>
<el-button type="primary" @click="InventoryModification">提交修改</el-button>
<el-button type="primary" @click="ModifyingStatus">修改状态</el-button>
<el-button
icon="Download"
v-if="InventoryState"
type="primary"
@click="handleUncountedExport"
>
<el-button icon="Download" type="primary" @click="handleUncountedExport">
导出
</el-button>
</div>
@ -2656,10 +2651,14 @@ const handleUncountedExport = () => {
ElMessageBox.confirm('是否导出未盘点数据?').then(async () => {
try {
TcPdloading.value = true;
const res = await postExportContrastStockInfo({ questNum: UncountedDetails.value.questNum });
const res = await postExportContrastStockInfo({
questNum: UncountedDetails.value.questNum,
// InventoryState true false
questStatus: InventoryState.value ? 0 : 1,
});
if (res.status !== 200) return;
downloadXls(res.data, '未盘点数据.xlsx');
downloadXls(res.data, `${InventoryState.value ? '未盘点' : '已盘点'}数据.xlsx`);
} catch (error) {
console.log('error :>> ', error);
} finally {

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

@ -1,5 +1,5 @@
<template>
<basic-container v-loading="details.loadingObj.pageLaoding">
<basic-container v-loading="details.loadingObj.pageLoading">
<div class="avue-crud">
<el-tabs type="border-card" v-model="activeTab" @tab-click="handleTabClick">
<el-tab-pane label="详 情 信 息" name="tab1">
@ -8,7 +8,7 @@
<div class="flex-c-sb form_top">
<div>
<div class="flex-c-sb" style="font-size: 16px">
<div class="flex-c-c" v-if="query.brand">
<div class="flex-c-c" style="margin-right: 50px" v-if="query.brand">
<el-icon color="#172e60"><User /></el-icon>
品牌:
<span class="red">{{ query.brand }}</span>
@ -28,18 +28,33 @@
</div>
</div>
<div class="flex-c-c">
<div style="margin-right: 10px" class="flex-c-c">
<el-icon size="1rem"><User /></el-icon>
<span style="margin-left: 10px">{{ query.agent }}</span>
<div>
<div v-if="details.query.orderCode" class="flex-c-sb mb10">
<div class="flex-c-c" style="margin-right: 50px">
<el-icon color="#172e60"><Shop /></el-icon>
商场名称
<span class="red">{{ query.dealerName || '暂无数据' }}</span>
</div>
<div class="flex-c-c">
<el-icon color="#172e60"><Shop /></el-icon>
商场编码
<span class="red">{{ query.dealerCode || '暂无数据' }}</span>
</div>
</div>
<div class="flex-c-c">
<div style="margin-right: 10px" class="flex-c-c">
<el-icon size="1rem"><User /></el-icon>
<span style="margin-left: 10px">{{ query.agent }}</span>
</div>
<el-date-picker
v-model="query.documentMakingTime"
prefix-icon="Calendar"
readonly
type="datetime"
placeholder="创建时间"
/>
</div>
<el-date-picker
v-model="query.documentMakingTime"
prefix-icon="Calendar"
readonly
type="datetime"
placeholder="创建时间"
/>
</div>
</div>
@ -440,12 +455,7 @@
<el-form label-width="fit-content" :rules="details.rules">
<el-row>
<el-form-item label="支付方式:">
<el-select
v-model="query.payType"
disabled
class="m-2"
placeholder="支付方式"
>
<el-select v-model="query.payType" disabled>
<el-option
v-for="item in query.payTypeList || []"
:key="item.dictValue"
@ -456,12 +466,7 @@
</el-form-item>
<el-form-item label="付款方式:" prop="payWay">
<el-select
v-model="query.payWay"
disabled
class="m-2"
placeholder="付款方式"
>
<el-select v-model="query.payWay" disabled>
<el-option
v-for="item in query.payWayList || []"
:key="item.dictValue"
@ -683,13 +688,7 @@
<div>
<el-row>
<el-form-item label-width="fit-content" label="支付方式:">
<el-select
disabled
v-model="query.payType"
:teleported="false"
class="m-2"
placeholder="支付方式"
>
<el-select disabled v-model="query.payType" :teleported="false">
<el-option
v-for="item in details.info.payTypeList"
:key="item.dictValue"
@ -700,13 +699,7 @@
</el-form-item>
<el-form-item label="付款方式:" label-width="fit-content" prop="payWay">
<el-select
disabled
v-model="query.payWay"
:teleported="false"
class="m-2"
placeholder="付款方式"
>
<el-select disabled v-model="query.payWay" :teleported="false">
<el-option
v-for="item in details.info.payWayList"
:key="item.dictValue"
@ -824,7 +817,7 @@
label-width="fit-content"
class="el-times"
>
<el-select disabled v-model="query.deliveryWay" class="m-2" placeholder="送货方式">
<el-select disabled v-model="query.deliveryWay">
<el-option
v-for="item in query.deliveryWayList"
:key="item.dictValue"
@ -840,7 +833,7 @@
label-width="fit-content"
class="el-times"
>
<el-select disabled v-model="query.urgency" class="m-2" placeholder="紧急度">
<el-select disabled v-model="query.urgency">
<el-option
v-for="item in query.urgencyList || []"
:key="item.dictValue"
@ -863,14 +856,7 @@
</el-form-item>
<el-form-item label="回单要求:" label-width="fit-content" class="el-times">
<el-select
disabled
v-model="query.receipt"
class="m-2"
filterable
multiple
placeholder="回单要求"
>
<el-select disabled v-model="query.receipt" filterable multiple>
<el-option
v-for="item in query.receiptList"
:key="item.dictValue"
@ -881,12 +867,7 @@
</el-form-item>
<el-form-item label="运输方式:" label-width="fit-content" class="el-times">
<el-select
disabled
v-model="query.transportType"
class="m-2"
placeholder="运输方式"
>
<el-select disabled v-model="query.transportType">
<el-option
v-for="item in query.transportTypeList"
:key="item.dictValue"
@ -934,9 +915,7 @@
</el-button>
<el-button type="primary" icon="el-icon-edit" @click="handleEdit"> </el-button>
<el-button type="primary" icon="el-icon-printer" @click="searchReset()">
</el-button
>
<el-button type="primary" icon="el-icon-printer" @click="handlePrint"> </el-button>
<el-button type="primary" icon="el-icon-close" @click="back()"> </el-button>
</div>
@ -1043,6 +1022,14 @@
</el-tabs>
</div>
</basic-container>
<!-- 运单打印 -->
<WaybillPrintTemplate
v-model="details.popUpShow.WaybillPrintTemplate"
:html="details.html"
width="70%"
/>
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
@ -1078,6 +1065,7 @@ import {
} from '@/option/distribution/BookingNote';
import { useRouter, useRoute } from 'vue-router';
import { postFindWaybillDetail, postCheckWaybill } from '@/api/distribution/CreateOrder.js';
import { postPrintBatch } from '@/api/waybill/WaybillOrderList.js';
import { getLazyTreeAll } from '@/api/base/region';
import {
postWarehouseFindWaybillInfo,
@ -1360,7 +1348,7 @@ const details = reactive<any>({
loadingObj: {
/** 配载信息loading */
stowageLoading: false,
pageLaoding: false,
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
@ -1372,11 +1360,10 @@ const details = reactive<any>({
pageSize: 30,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 装车详情 */
truckLoadingDetailVisited: false,
/** 打印弹窗 */
WaybillPrintTemplate: false,
},
/** 列表Dom节点 */
listNode: '',
@ -1385,6 +1372,8 @@ const details = reactive<any>({
activeTabItem: 'tabItem1',
/** 回单列表 */
receiptImgList: [],
/** 打印html */
html: '',
});
const info = ref<any>({});
@ -1445,7 +1434,7 @@ getLazyTreeAll().then(res => {
/** 请求页面数据 */
const onLoad = async () => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
details.pageInfo = { ...$route.query };
@ -1526,14 +1515,14 @@ const onLoad = async () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
/** 查看运单跟踪 */
const handleFindInfo = async type => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
details.data = [];
const submitData = {
waybillId: $route.query.id,
@ -1572,7 +1561,7 @@ const handleFindInfo = async type => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
@ -1775,7 +1764,7 @@ const handleAudit = () => {
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
try {
const res = await postCheckWaybill({ waybillId: $route.query.id });
@ -1787,7 +1776,7 @@ const handleAudit = () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
});
};
@ -1817,6 +1806,40 @@ const handleFindContractList = async () => {
}
};
/** 打印 */
const handlePrint = async () => {
try {
details.loadingObj.pageLoading = true;
const res = await postPrintBatch({
ids: $route.query.id,
tempId: 15,
});
const { code, data } = res.data;
if (code !== 200 || !data || data.length === 0) return;
let _html = '';
for (let i = 0; i < data.length; i++) {
const value = data[i];
_html += JSON.parse(JSON.stringify(value.templateHtml));
}
console.log('res :>> ', res);
details.html = _html;
details.popUpShow.WaybillPrintTemplate = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
watch(
() => $route.query,
() => {
@ -1827,7 +1850,9 @@ watch(
</script>
<style scoped lang="scss">
$borderColor: #172e60;
$borderColor: var(--el-color-primary);
$borderType: 1px solid $borderColor;
:deep(.el-date-editor.el-input, .el-date-editor.el-input__wrapper) {
height: 100% !important;
}
@ -1839,20 +1864,20 @@ $borderColor: #172e60;
}
.border-left {
border-left: 1px dashed $borderColor;
border-left: $borderType;
}
//
.avue-crud {
font-size: 12px !important;
}
// .avue-crud {
// font-size: 12px !important;
// }
.form_top {
margin-bottom: 10px;
}
.border-top {
border-top: 1px dashed $borderColor;
border-top: $borderType;
}
:deep(.el-date-editor.el-input, .el-date-editor.el-input__wrapper) {
@ -1863,14 +1888,14 @@ $borderColor: #172e60;
width: 100%;
display: flex;
// border-top: 1px solid $borderColor;
border-left: 1px dashed $borderColor;
border-left: $borderType;
border-bottom: none;
box-sizing: border-box;
&:first-child {
// display: block;
border-top: 1px dashed $borderColor;
border-left: 1px dashed $borderColor;
border-top: $borderType;
border-left: $borderType;
margin-top: 10px;
> div {
@ -1880,8 +1905,8 @@ $borderColor: #172e60;
&:last-child {
display: block;
border-bottom: 1px dashed $borderColor;
border-right: 1px dashed $borderColor;
border-bottom: $borderType;
border-right: $borderType;
box-sizing: border-box;
> div {
@ -1893,8 +1918,8 @@ $borderColor: #172e60;
> div {
flex: 1;
padding: 5px;
border-bottom: 1px dashed $borderColor;
border-right: 1px dashed $borderColor;
border-bottom: $borderType;
border-right: $borderType;
display: inline-flex;
box-sizing: border-box;
}
@ -1959,18 +1984,18 @@ $borderColor: #172e60;
--el-color-danger: #f00;
}
:deep(.el-form-item.is-error .el-input__wrapper) {
--el-color-danger: #f00;
}
// :deep(.el-form-item.is-error .el-input__wrapper) {
// --el-color-danger: #f00;
// }
:deep(
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before,
.el-form-item.is-required:not(.is-no-asterisk).asterisk-left
> .el-form-item__label-wrap
> .el-form-item__label:before
) {
--el-color-danger: #f00;
}
// :deep(
// .el-form-item.is-required:not(.is-no-asterisk).asterisk-left > .el-form-item__label:before,
// .el-form-item.is-required:not(.is-no-asterisk).asterisk-left
// > .el-form-item__label-wrap
// > .el-form-item__label:before
// ) {
// --el-color-danger: #f00;
// }
//
.footer {
@ -2024,4 +2049,29 @@ $borderColor: #172e60;
.receipt_img {
border-radius: 5px;
}
// tab
:deep(.el-tabs__item.is-active) {
color: var(--el-color-primary);
font-weight: bold;
}
:deep(.el-tabs__item:hover) {
color: var(--el-color-primary);
font-weight: bold;
}
:deep(.el-tabs__item) {
color: #959a9e;
transition: all 0.3s;
}
//
:deep(.el-input.is-disabled .el-input__wrapper) {
background: #fff;
}
:deep(.el-input.is-disabled .el-input__inner) {
-webkit-text-fill-color: var(--el-color-primary) !important;
}
</style>

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

@ -38,12 +38,12 @@
<div>
<div class="flex-c-sb">
<div class="flex-c-c" style="margin-right: 50px">
<el-icon color="#172e60"><User /></el-icon>
<el-icon color="#172e60"><Shop /></el-icon>
商场名称
<span class="red">{{ query.dealerName || '暂无数据' }}</span>
</div>
<div class="flex-c-c">
<el-icon color="#172e60"><Van /></el-icon>
<el-icon color="#172e60"><Shop /></el-icon>
商场编码
<span class="red">{{ query.dealerCode || '暂无数据' }}</span>
</div>
@ -3311,11 +3311,6 @@ $borderType: 1px solid $borderColor;
border-left: $borderType;
}
//
.avue-crud {
font-size: 12px !important;
}
.form_top {
margin-bottom: 10px;
}

95
src/views/waybill/CreateZeroOrder.vue

@ -515,7 +515,7 @@
:class="{ goodsNameRow: true, active: val.goodsId === item.goodsId }"
v-for="val in item.goodsListOptions"
:key="val.goodsId"
@click="handleChooseGoods(item, val)"
@click="() => handleChooseGoods(item, val)"
>
{{ val.goodsName }}
</div>
@ -984,15 +984,18 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
:show-close="false"
:visible.sync="details.popUpShow.titleVisited"
width="30%"
v-model="details.popUpShow.titleVisited"
>
<div style="text-align: center">是否继续开单</div>
<div class="flex-c-c mt20">
<el-button icon="CircleClose" @click="back"> </el-button>
<el-button type="primary" icon="CircleCheck" @click="handleRepetition"> </el-button>
<!-- <el-button type="primary" icon="Printer" @click="handlePrint"> </el-button> -->
<div v-loading="details.loadingObj.pageLoading">
<div style="text-align: center">是否继续开单</div>
<div class="flex-c-c mt20">
<el-button icon="CircleClose" @click="back"> </el-button>
<el-button type="primary" icon="CircleCheck" @click="handleRepetition"> </el-button>
<el-button type="primary" icon="Printer" v-if="details.waybillId" @click="handlePrint">
</el-button>
</div>
</div>
</el-dialog>
@ -1004,7 +1007,6 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
:show-close="false"
:visible.sync="details.popUpShow.causeVisited"
width="50%"
v-model="details.popUpShow.causeVisited"
>
@ -1052,6 +1054,13 @@
<el-button type="primary" icon="CircleCheck" @click="handleSubmitCause"> </el-button>
</div>
</el-dialog>
<!-- 运单打印 -->
<WaybillPrintTemplate
v-model="details.popUpShow.WaybillPrintTemplate"
:html="details.html"
width="70%"
/>
</div>
</template>
@ -1071,6 +1080,7 @@ import dayjs from 'dayjs';
import { mapGetters } from 'vuex';
/** 获取字典 */
import { getDictionaryBiz } from '@/api/system/dict';
import { postPrintBatch } from '@/api/waybill/WaybillOrderList.js';
import { downloadXls, computeNumber, debounce, setNodeHeight } from '@/utils/util';
import { getLazyTreeAll } from '@/api/base/region';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -1416,7 +1426,9 @@ const details = reactive<any>({
/** 是否继续开单 */
titleVisited: false,
/** 改单原因 */
titleVisited: false,
causeVisited: false,
/** 打印弹窗 */
WaybillPrintTemplate: false,
},
itemRules: {
/** 计价方式 */
@ -1454,6 +1466,7 @@ const details = reactive<any>({
consignerLoading: false,
/** 提交 */
submitLoadingBtn: false,
pageLoading: false,
},
/** 列表Dom节点 */
listNode: '',
@ -1514,6 +1527,10 @@ const details = reactive<any>({
],
/** 修改数据 */
changeData: [],
/** 提交后后台返回的waybillId */
waybillId: '',
/** 打印html */
html: '',
});
/** 是否禁用 */
@ -2370,12 +2387,15 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
console.log('submitData :>> ', submitData);
res = await postOpenOrderOpenZeroWaybill(submitData);
const { code, msg } = res.data;
const { code, data, msg } = res.data;
if (code !== 200) return;
ElMessage({
message: msg,
type: 'success',
});
details.waybillId = getObjType(data) === 'object' ? data.waybillId || '' : '';
// ,
if (details.pageInfo.type !== 'edit') details.popUpShow.titleVisited = true;
} else {
@ -2637,13 +2657,15 @@ const handleAssignmentItemPrice = (value, isOnload = false) => {
const { pickup, template, trunkLine } = details.priceTemplate;
// 线
if (trunkLine && template && !isOnload) {
// ,
if (isDisabled.value) handleSpecialBrandPrice(value, trunkLine, template);
else handleAssignmentItemPriceTrunkline(value, trunkLine, template);
//
} else value.price = 0;
if (!isOnload) {
if (trunkLine && template) {
// ,
if (isDisabled.value) handleSpecialBrandPrice(value, trunkLine, template);
else handleAssignmentItemPriceTrunkline(value, trunkLine, template);
//
} else value.price = 0;
}
//
if (pickup && template) {
@ -2785,6 +2807,40 @@ const handleSubmitCause = () => {
});
};
/** 打印 */
const handlePrint = async () => {
try {
details.loadingObj.pageLoading = true;
const res = await postPrintBatch({
ids: details.waybillId,
tempId: 15,
});
const { code, data } = res.data;
if (code !== 200 || !data || data.length === 0) return;
let _html = '';
for (let i = 0; i < data.length; i++) {
const value = data[i];
_html += JSON.parse(JSON.stringify(value.templateHtml));
}
console.log('res :>> ', res);
details.html = _html;
details.popUpShow.WaybillPrintTemplate = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
};
watch(
() => $route.query,
() => {
@ -2815,11 +2871,6 @@ $borderType: 1px solid $borderColor;
margin: 0 !important;
}
//
.avue-crud {
font-size: 12px !important;
}
.form_top {
margin-bottom: 10px;
}

12
src/views/waybill/orderPackageList.vue

@ -783,7 +783,7 @@ const handleBatchPutInStorage = () => {
})
.then(async () => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
const submitData = {
orderPackageCode: orderPackageCodes.join(','),
@ -803,7 +803,7 @@ const handleBatchPutInStorage = () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
})
.catch(() => {});
@ -814,7 +814,7 @@ const handleBatchBarcode = async () => {
if (details.selectionList.length === 0)
return ElMessage.warning({ message: '请选择需要查看的数据' });
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
let qr = {
orderPackageCodes: details.selectionList.map(val => val.orderPackageCode).join(','),
@ -830,14 +830,14 @@ const handleBatchBarcode = async () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
/** 显示流转节点 */
const handleShowFlowNode = async ({ row }) => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
const response = await postFinaPackageTrackLogList({ orderPackageCode: row.orderPackageCode });
const { code, data } = response.data;
@ -856,7 +856,7 @@ const handleShowFlowNode = async ({ row }) => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
</script>

58
src/views/waybill/orderPackageListDetails.vue

@ -1,5 +1,5 @@
<template>
<basic-container v-loading="details.loadingObj.pageLaoding">
<basic-container v-loading="details.loadingObj.pageLoading">
<div class="avue-crud">
<!-- 搜索模块 -->
<div v-h5uShow="!search">
@ -352,7 +352,7 @@ const details = reactive<any>({
list: false,
packageListLoading: false,
/** 页面loading */
pageLaoding: false,
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
@ -392,20 +392,7 @@ const details = reactive<any>({
html: '',
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
} = toRefs(details);
const { search, query, shortcuts, loadingObj, selectionList, drawerShow } = toRefs(details);
/** vuex */
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList']));
@ -605,15 +592,16 @@ const beforeClose = done => {
/** 查看包内产品 */
const handleShowPackageOrderList = ({ row }) => {
details.popUpShow.packageDetailColumnListVisited = true;
nextTick(() => {
// ,
const _node: any = document.querySelector('.packageDetailColumnListVisited .maboxhi');
if (!_node) return;
_node.style.height = '550px';
console.log('_node :>> ', _node);
});
// details.popUpShow.packageDetailColumnListVisited = true;
// nextTick(() => {
// // ,
// const _node: any = document.querySelector('.packageDetailColumnListVisited .maboxhi');
// if (!_node) return;
// _node.style.height = '550px';
// console.log('_node :>> ', _node);
// });
return ElMessage.warning({ message: '暂未开放' });
};
/** 修改客户信息 */
@ -663,7 +651,7 @@ const handleFullScrean = (_type: 'open' | 'close', _name: string) => {
/** 单列查看包条码 */
const printOrder = async ({ row }) => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
details.html = '';
let qr = {
orderPackageCodes: row.orderPackageCode,
@ -677,7 +665,7 @@ const printOrder = async ({ row }) => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
@ -737,7 +725,7 @@ const handleBatchPutInStorage = () => {
})
.then(async () => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
const submitData = {
orderPackageCode: orderPackageCodes.join(','),
@ -757,7 +745,7 @@ const handleBatchPutInStorage = () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
})
.catch(() => {});
@ -766,7 +754,7 @@ const handleBatchPutInStorage = () => {
/** 显示流转节点 */
const handleShowFlowNode = async ({ row }) => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
const response = await postFinaPackageTrackLogList({ orderPackageCode: row.orderPackageCode });
const { code, data } = response.data;
@ -785,7 +773,7 @@ const handleShowFlowNode = async ({ row }) => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};
@ -799,7 +787,7 @@ const handleBatchDelete = () => {
type: 'warning',
}).then(async () => {
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
const submitData = { advanceDetailIds: details.selectionList.map(item => item.id) };
@ -815,7 +803,7 @@ const handleBatchDelete = () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
});
};
@ -825,7 +813,7 @@ const handleBatchBarcode = async () => {
if (details.selectionList.length === 0)
return ElMessage.warning({ message: '请选择需要查看的数据' });
try {
details.loadingObj.pageLaoding = true;
details.loadingObj.pageLoading = true;
let qr = {
orderPackageCodes: details.selectionList.map(val => val.orderPackageCode).join(','),
@ -841,7 +829,7 @@ const handleBatchBarcode = async () => {
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLaoding = false;
details.loadingObj.pageLoading = false;
}
};

Loading…
Cancel
Save