10 changed files with 1307 additions and 52 deletions
@ -0,0 +1,28 @@
|
||||
import request from '@/axios'; |
||||
|
||||
/** 获取订单详情 */ |
||||
export const getDetail = params => { |
||||
return request({ |
||||
url: '/api/logpm-distribution/distributionStockArticle/detail', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
||||
|
||||
/** 获取包件列表 */ |
||||
export const getPackageList = params => { |
||||
return request({ |
||||
url: '/api/logpm-distribution/distributionParcelList/list', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
||||
|
||||
/** 获取零担列表 */ |
||||
export const getZeroList = params => { |
||||
return request({ |
||||
url: '/api/logpm-distribution/distributionParcelList/zeroListTransfer', |
||||
method: 'get', |
||||
params, |
||||
}); |
||||
}; |
@ -0,0 +1,507 @@
|
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
values: '', |
||||
width: 55, |
||||
checkarr: [], |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
checkarr: [], |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'waybillNumber', |
||||
label: '运单号', |
||||
type: 2, |
||||
values: '', |
||||
width: '160', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'serviceNumber', |
||||
label: '服务号', |
||||
type: 2, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: true, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'orderCode', |
||||
label: '订单自编号', |
||||
type: 2, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'mallName', |
||||
label: '商场名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'totalNumber', |
||||
label: '订单总件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'handQuantity', |
||||
label: '在库件数', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'notReceived', |
||||
label: '未入库数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'sortingQuantity', |
||||
label: '分拣数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'deliveryQuantity', |
||||
label: '配送数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
isshowSummary: true, |
||||
}, |
||||
{ |
||||
prop: 'transferQuantity', |
||||
label: '中转数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'signinQuantity', |
||||
label: '签收数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
isshowSummary: true, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'groundingStatusName', |
||||
label: '上架状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [ |
||||
// {
|
||||
// value: '0',
|
||||
// label: '未上架',
|
||||
// },
|
||||
// {
|
||||
// value: '1',
|
||||
// label: '部分上架',
|
||||
// }, {
|
||||
// value: '2',
|
||||
// label: '已上架',
|
||||
// },
|
||||
// {
|
||||
// value: '3',
|
||||
// label: '已下架',130
|
||||
// },
|
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'allocation', |
||||
label: '货位信息', |
||||
type: 13, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'descriptionGoods', |
||||
label: '货物名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'isZeroName', |
||||
label: '是否零担', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [ |
||||
{ |
||||
value: '0', |
||||
label: '否', |
||||
}, |
||||
{ |
||||
value: '1', |
||||
label: '是', |
||||
}, |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouse', |
||||
label: '所在仓库', |
||||
type: 2, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseEntryTime', |
||||
label: '入库时间', |
||||
type: 4, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseEntryTimeEnd', |
||||
label: '最新入库时间', |
||||
type: 4, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'storeTime', |
||||
label: '在库时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'consigneeUnit', |
||||
label: '收货单位', |
||||
type: 2, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'consigneePerson', |
||||
label: '收货人', |
||||
type: 2, |
||||
values: '', |
||||
width: '160', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'resource', |
||||
label: '订单来源', |
||||
type: 1, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'brand', |
||||
label: '品牌', |
||||
type: 2, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'trays', |
||||
label: '所在托盘', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'freezeStatusName', |
||||
label: '冻结状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [ |
||||
// {
|
||||
// value: '1',
|
||||
// label: '已冻结',
|
||||
// },
|
||||
// {
|
||||
// value: '0',
|
||||
// label: '未冻结',
|
||||
// },
|
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'orderStatusName', |
||||
label: '订单状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'reservationStatusName', |
||||
label: '预约状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'stockupStatusName', |
||||
label: '备货状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'orderReceiveStatusName', |
||||
label: '入库状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'completeSetName', |
||||
label: '是否齐套', |
||||
type: 14, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [ |
||||
{ |
||||
value: '2', |
||||
label: '已齐套', |
||||
}, |
||||
{ |
||||
value: '1', |
||||
label: '未齐套', |
||||
}, |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'weight', |
||||
label: '重量', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'volume', |
||||
label: '体积', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'acceptWarehouseName', |
||||
label: '目的仓', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'typeServerName', |
||||
label: '服务类型', |
||||
type: 3, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'customerName', |
||||
label: '顾客名字', |
||||
type: 2, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'customerTelephone', |
||||
label: '顾客电话', |
||||
type: 2, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'customerAddress', |
||||
label: '顾客地址', |
||||
type: 2, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'fee', |
||||
label: '增值服务', |
||||
type: 1, |
||||
values: '', |
||||
width: '140', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'createUserName', |
||||
label: '创建人', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'createTime', |
||||
label: '创建时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '100', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
// {
|
||||
// prop: 'inventoryDate',
|
||||
// label: '最新盘点时间',
|
||||
// type: 1,
|
||||
// values: '',
|
||||
// width: '130',
|
||||
// checkarr: [],
|
||||
// fixed: false,
|
||||
// sortable: true,
|
||||
// },
|
||||
// {
|
||||
// prop: 'inventoryPerson',
|
||||
// label: '盘点人',
|
||||
// type: 1,
|
||||
// values: '',
|
||||
// width: '130',
|
||||
// checkarr: [],
|
||||
// fixed: false,
|
||||
// sortable: true,
|
||||
// },
|
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '250', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
hide: true, |
||||
}, |
||||
// 更多列的配置...
|
||||
]; |
||||
|
||||
export default columnList; |
@ -0,0 +1,614 @@
|
||||
<template> |
||||
<basic-container v-loading="details.loadingObj.pageLoading"> |
||||
<div class="avue-crud"> |
||||
<tablecmt |
||||
style="height: initial !important" |
||||
:isInitHeigt="false" |
||||
:columnList="details.customer.columnList" |
||||
:tableData="details.consigneeData" |
||||
> |
||||
<template #default="slotProps"> </template> |
||||
</tablecmt> |
||||
|
||||
<tablecmt |
||||
style="height: initial !important; margin: 10px 0" |
||||
:isInitHeigt="false" |
||||
:columnList="details.consignee.columnList" |
||||
:tableData="details.consigneeData" |
||||
> |
||||
<template #default="slotProps"> </template> |
||||
</tablecmt> |
||||
|
||||
<!-- 控件模块 --> |
||||
<div class="flex-c-sb mb10"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="flex"> |
||||
<div class="pageTitle"> |
||||
{{ $route.query.isZero === '1' ? '零担列表' : '定制品列表' }} |
||||
</div> |
||||
<el-button class="ml20" type="primary" @click="allhandleQRCode">批量查看二维码</el-button> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div> |
||||
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button> |
||||
</div> |
||||
</div> |
||||
|
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
style="height: 64vh" |
||||
:isInitHeigt="false" |
||||
:columnList="$route.query.isZero + '' === '1' ? details.zerocolumnList : details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="$route.query.isZero + '1' !== '1'"> |
||||
<el-text |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
@click="handleTrajectory(slotProps.scope.row)" |
||||
>查看轨迹 |
||||
</el-text> |
||||
<el-text |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
@click="handleQRCode(slotProps.scope.row)" |
||||
>查看二维码 |
||||
</el-text> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
|
||||
<template v-if="$route.query.isZero + '' !== '1'"> |
||||
<!-- 分页模块 --> |
||||
<div class="flex-c-sb mt20"> |
||||
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
||||
<!-- 分页模块 --> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.current" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.size" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</template> |
||||
</div> |
||||
</basic-container> |
||||
|
||||
<!-- 打印二维码 --> |
||||
<MyPrint |
||||
:html="details.html" |
||||
v-model="details.popUpShow.QRCodeVisible" |
||||
:isShowExport="false" |
||||
type="titlePrint" |
||||
width="780px" |
||||
></MyPrint> |
||||
|
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { |
||||
ref, |
||||
reactive, |
||||
toRefs, |
||||
computed, |
||||
onMounted, |
||||
nextTick, |
||||
getCurrentInstance, |
||||
watch, |
||||
} from 'vue'; |
||||
import dayjs from 'dayjs'; |
||||
import { mapGetters } from 'vuex'; |
||||
/** 获取字典 */ |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import { |
||||
downloadXls, |
||||
setNodeHeight, |
||||
getHtmls, |
||||
deepClone, |
||||
handleClearTableQuery, |
||||
debounce, |
||||
handleSelectQuery, |
||||
handleInputQuery, |
||||
handleTranslationDataSeclect, |
||||
getObjType, |
||||
hanleTextLineFeed, |
||||
} from '@/utils/util'; |
||||
import { |
||||
columnList, |
||||
zerocolumnList, |
||||
} from '@/option/distribution/distributionStockArticleDetails.js'; |
||||
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; |
||||
import { getListName } from '@/api/basicdata/basicdataVehicle'; |
||||
import { getListTransfer } from '@/api/warehouse/OrderInTransit'; |
||||
import { getDetail, getPackageList, getZeroList } from '@/api/distribution/OrderInTransitDetails'; |
||||
import { useStore } from 'vuex'; |
||||
import { useRouter, useRoute } from 'vue-router'; |
||||
import { ElMessage, ElMessageBox } from 'element-plus'; |
||||
|
||||
// 获取路由实例 |
||||
const $router = useRouter(); |
||||
const $route = useRoute(); |
||||
|
||||
const $store = useStore(); |
||||
const details = reactive<any>({ |
||||
/** 是否开启搜索 */ |
||||
search: true, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 定制品列表 */ |
||||
columnList: deepClone(columnList), |
||||
/** 零担列表 */ |
||||
zerocolumnList: deepClone(zerocolumnList), |
||||
/** 列表数据 */ |
||||
data: [], |
||||
/** 顾客 */ |
||||
customer: { |
||||
columnList: [ |
||||
{ |
||||
prop: 'customerName', |
||||
label: '顾客名字', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
{ |
||||
prop: 'customerTelephone', |
||||
label: '顾客电话', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
{ |
||||
prop: 'customerAddress', |
||||
label: '顾客地址', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
], |
||||
}, |
||||
/** 收货人 */ |
||||
consignee: { |
||||
columnList: [ |
||||
{ |
||||
prop: 'consigneePerson', |
||||
label: '收货人名字', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
{ |
||||
prop: 'consigneeMobile', |
||||
label: '收货人电话', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
{ |
||||
prop: 'consigneeAddress', |
||||
label: '收货人地址', |
||||
type: 1, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: false, |
||||
}, |
||||
], |
||||
}, |
||||
consigneeData: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
/** 页面loading */ |
||||
pageLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
current: 1, |
||||
size: 30, |
||||
total: 0, |
||||
}, |
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 查看二维码 */ |
||||
QRCodeVisible: false, |
||||
}, |
||||
warehouseOption: [], |
||||
html: '', |
||||
}); |
||||
|
||||
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page } = |
||||
toRefs(details); |
||||
|
||||
/** 请求页面数据 */ |
||||
const onLoad = debounce(async (isTranslation = true) => { |
||||
try { |
||||
details.loadingObj.list = true; |
||||
|
||||
if ($route.query.isZero + '' === '1') { |
||||
const submitData = { |
||||
...details.query, |
||||
waybillNumber: $route.query.waybillNumber, |
||||
orderCode: $route.query.orderCode, |
||||
}; |
||||
|
||||
const res = await getZeroList(submitData); |
||||
|
||||
const { code, data } = res.data; |
||||
if (code !== 200 || getObjType(data) !== 'array') return; |
||||
details.data = data || []; |
||||
details.page.total = details.data.length; |
||||
} else { |
||||
const submitData = { |
||||
...details.query, |
||||
...details.page, |
||||
stockArticleId: $route.query.id, |
||||
}; |
||||
|
||||
delete submitData.total; |
||||
|
||||
const res = await getPackageList(submitData); |
||||
|
||||
const { code, data } = res.data; |
||||
if (code !== 200 || getObjType(data) !== 'object') return; |
||||
details.data = data.records || []; |
||||
details.page.total = data.total; |
||||
} |
||||
|
||||
isTranslation && handleTranslationDataSeclect(details.data, details.columnList); |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}, 10); |
||||
|
||||
const getOrderInfo = async () => { |
||||
const res = await getDetail({ id: $route.query.id }); |
||||
const { code, data } = res.data; |
||||
if (code !== 200 || getObjType(data) !== 'object') return; |
||||
details.consigneeData = [data]; |
||||
}; |
||||
|
||||
const handleData = (key, res) => { |
||||
const { code, data } = res.data; |
||||
if (code !== 200) return; |
||||
for (let i = 0; i < details.columnList.length; i++) { |
||||
const value = details.columnList[i]; |
||||
|
||||
if (value.label === key) |
||||
return (value.checkarr = |
||||
getObjType(data) === 'array' |
||||
? data.map(val => { |
||||
val.label = val.dictValue; |
||||
val.value = val.dictKey; |
||||
return val; |
||||
}) |
||||
: []); |
||||
} |
||||
}; |
||||
|
||||
// 获取字典数据 |
||||
const initData = async () => { |
||||
try { |
||||
details.loadingObj.pageLoading = true; |
||||
|
||||
await Promise.all([ |
||||
// 车辆来源 |
||||
// getDictionaryBiz('distribution_type').then(res => handleData('服务类型', res)), |
||||
// getDictionaryBiz('order_status').then(res => handleData('订单状态', res)), |
||||
// getDictionaryBiz('basic_grounding').then(res => handleData('上架状态', res)), |
||||
// getDictionaryBiz('freeze_status').then(res => handleData('冻结状态', res)), |
||||
// getDictionaryBiz('order_stockup_status').then(res => handleData('备货状态', res)), |
||||
// getDictionaryBiz('order_reservation_status').then(res => handleData('预约状态', res)), |
||||
// getDictionaryBiz('order_receive_status').then(res => handleData('入库状态', res)), |
||||
getOrderInfo(), |
||||
onLoad(false), |
||||
]); |
||||
|
||||
await nextTick(); |
||||
handleTranslationDataSeclect(details.data, details.columnList); |
||||
console.log('details.columnList :>> ', details.columnList); |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.pageLoading = false; |
||||
} |
||||
}; |
||||
|
||||
/** 初始化请求仓库数据 */ |
||||
getListName({ name: '' }).then(res => { |
||||
const { code, data } = res.data; |
||||
if (code !== 200 || getObjType(data) !== 'array') return; |
||||
details.warehouseOption = data.map(val => { |
||||
return { |
||||
dictKey: val.id, |
||||
dictValue: val.name, |
||||
}; |
||||
}); |
||||
}); |
||||
|
||||
/** 搜索 */ |
||||
const searchChange = () => { |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 清空表单 */ |
||||
const searchReset = () => { |
||||
details.query = {}; |
||||
details.page.current = 1; |
||||
handleClearTableQuery(details.columnList); |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = (_flag?: boolean) => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
|
||||
/** 是否开启搜索区 */ |
||||
const searchHide = () => { |
||||
details.search = !details.search; |
||||
|
||||
setNodeHeight(details.listNode, '', true); |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
handleInputQuery(index, row, details.query); |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
handleSelectQuery(index, row, details.query); |
||||
|
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = (list: any) => { |
||||
details.selectionList = list; |
||||
}; |
||||
|
||||
/** 每页数量改变执行的回调 */ |
||||
const sizeChange = (size: number) => { |
||||
details.page.size = size; |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = current => { |
||||
details.page.current = current; |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 查看轨迹 */ |
||||
const handleTrajectory = row => { |
||||
console.log('>>>>', row); |
||||
$router.push({ |
||||
path: '/distribution/signdetail/packageNodeSearch', |
||||
query: { |
||||
orderPackageCode: row.orderPackageCode, |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
/** 查看二维码 */ |
||||
const handleQRCode = async row => { |
||||
try { |
||||
details.loadingObj.pageLoading = true; |
||||
let qr = { |
||||
ids: row.id, |
||||
}; |
||||
details.html = ''; |
||||
const res = await showOrderPackgeCode(qr); |
||||
const { code, data } = res.data; |
||||
if (code !== 200) return; |
||||
// details.html = details.getHtmls(data.dataList, data.templateHtml); |
||||
for (let i = 0; i < data.moldList.length; i++) { |
||||
const element = data.moldList[i]; |
||||
details.html += element; |
||||
} |
||||
details.popUpShow.QRCodeVisible = true; |
||||
|
||||
await nextTick(); |
||||
|
||||
hanleTextLineFeed('category', 14); |
||||
hanleTextLineFeed('materialName', 14); |
||||
hanleTextLineFeed('qrCode', 18); |
||||
hanleTextLineFeed('customer', 45); |
||||
} catch (err) { |
||||
console.log('err :>> ', err); |
||||
} finally { |
||||
details.loadingObj.pageLoading = false; |
||||
} |
||||
}; |
||||
|
||||
// 批量查看二维码 |
||||
const allhandleQRCode = async () => { |
||||
try { |
||||
details.loadingObj.pageLoading = true; |
||||
|
||||
console.log(details.selectionList); |
||||
if (details.selectionList.length == 0) { |
||||
ElMessage.error({ message: '请先选择包件' }); |
||||
return; |
||||
} |
||||
let checkcode = []; |
||||
details.selectionList.map(item => { |
||||
checkcode.push(item.id); |
||||
// checkcode.push(item.orderPackageCode) |
||||
}); |
||||
// return |
||||
let qr = { |
||||
ids: checkcode.join(','), |
||||
// qrCodes: checkcode.join(','), |
||||
}; |
||||
details.html = ''; |
||||
const res = await showOrderPackgeCode(qr); |
||||
|
||||
const { code, data } = res.data; |
||||
|
||||
if (code !== 200) return; |
||||
|
||||
for (let i = 0; i < data.moldList.length; i++) { |
||||
const element = data.moldList[i]; |
||||
details.html += element; |
||||
} |
||||
|
||||
details.popUpShow.QRCodeVisible = true; |
||||
|
||||
await nextTick(); |
||||
|
||||
hanleTextLineFeed('category', 14); |
||||
hanleTextLineFeed('materialName', 14); |
||||
hanleTextLineFeed('qrCode', 18); |
||||
hanleTextLineFeed('customer', 45); |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.pageLoading = false; |
||||
} |
||||
}; |
||||
|
||||
watch( |
||||
() => $route.fullPath, |
||||
() => { |
||||
console.log('$route.fullPath :>> ', $route.fullPath); |
||||
if ($route.path !== '/distribution/inventory/delivery/OrderInTransitDetails') return; |
||||
initData(); |
||||
}, |
||||
{ |
||||
immediate: true, |
||||
} |
||||
); |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
// 日期选择器 |
||||
:deep(.el-date-editor.el-input) { |
||||
height: 100% !important; |
||||
width: 100% !important; |
||||
} |
||||
|
||||
:deep(.el-range-editor.el-input__wrapper) { |
||||
height: 100% !important; |
||||
} |
||||
|
||||
.avue-crud { |
||||
position: relative; |
||||
} |
||||
|
||||
// 弹窗 |
||||
:deep(.el-overlay) { |
||||
position: absolute; |
||||
} |
||||
|
||||
:deep(.el-input-number .el-input__inner) { |
||||
text-align: left !important; |
||||
} |
||||
|
||||
:deep(.el-overlay-dialog) { |
||||
position: absolute; |
||||
} |
||||
|
||||
.pageTitle { |
||||
display: flex; |
||||
align-items: center; |
||||
font-weight: bold; |
||||
color: var(--el-color-primary); |
||||
|
||||
&::before { |
||||
content: ''; |
||||
height: 20px; |
||||
width: 4px; |
||||
background-color: var(--el-color-primary); |
||||
margin-right: 5px; |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue