9 changed files with 899 additions and 74 deletions
@ -0,0 +1,187 @@
|
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 0, |
||||
values: '', |
||||
width: 55, |
||||
checkarr: [], |
||||
fixed: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'waybillNumber', |
||||
label: '运单号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'orderCode', |
||||
label: '订单自编号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'warehouse', |
||||
label: '仓库', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'orderPackageStatusName', |
||||
label: '包件状态', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'orderPackageCode', |
||||
label: '包条码', |
||||
type: 1, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'goodsAllocation', |
||||
label: '货位信息', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'pallet', |
||||
label: '所在托盘', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'firsts', |
||||
label: '一级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'second', |
||||
label: '二级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'thirdProduct', |
||||
label: '三级品', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'materialName', |
||||
label: '物料名称', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'materialCode', |
||||
label: '物料编码', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
|
||||
{ |
||||
prop: 'quantity', |
||||
label: '数量', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseEntryTimeEnd', |
||||
label: '入库时间', |
||||
type: 1, |
||||
values: '', |
||||
width: '180', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'trainNumber', |
||||
label: '客户车次号', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'sendWarehouseName', |
||||
label: '发站仓', |
||||
type: 1, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '230', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
hide: true, |
||||
}, |
||||
]; |
@ -0,0 +1,492 @@
|
||||
<template> |
||||
<basic-container v-loading="loadingObj.list" element-loading-text="Loading..."> |
||||
<el-descriptions :column="3" border> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<user /> |
||||
</el-icon> |
||||
顾客名字 |
||||
</div> |
||||
</template> |
||||
<el-tag size="small">{{ from.customerName }}</el-tag> |
||||
</el-descriptions-item> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<iphone /> |
||||
</el-icon> |
||||
顾客电话 |
||||
</div> |
||||
</template> |
||||
{{ from.customerTelephone }} |
||||
</el-descriptions-item> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<office-building /> |
||||
</el-icon> |
||||
顾客地址 |
||||
</div> |
||||
</template> |
||||
{{ from.customerAddress }} |
||||
</el-descriptions-item> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<user /> |
||||
</el-icon> |
||||
收货人名字 |
||||
</div> |
||||
</template> |
||||
<el-tag size="small">{{ from.consigneePerson }}</el-tag> |
||||
</el-descriptions-item> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<iphone /> |
||||
</el-icon> |
||||
收货人电话 |
||||
</div> |
||||
</template> |
||||
{{ from.consigneeMobile }} |
||||
</el-descriptions-item> |
||||
<el-descriptions-item> |
||||
<template #label> |
||||
<div class="cell-item"> |
||||
<el-icon> |
||||
<office-building /> |
||||
</el-icon> |
||||
收货人地址 |
||||
</div> |
||||
</template> |
||||
{{ from.consigneeAddress }} |
||||
</el-descriptions-item> |
||||
</el-descriptions> |
||||
<!-- 首页表格 --> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<div v-h5uShow="search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query" class="el-fr-d"> |
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset()">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</div> |
||||
<el-tabs type="border-card" class="el_tabs" @click="tabclaick" v-model="activeName"> |
||||
<el-tab-pane label="已入库" name="1"></el-tab-pane> |
||||
<el-tab-pane label="未入库" name="2"></el-tab-pane> |
||||
</el-tabs> |
||||
<!-- 控件模块 --> |
||||
<el-row> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<el-button type="primary" @click="handleBatchBarcode"> 批量查看二维码</el-button> |
||||
</div> |
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<!-- <el-button icon="Search" @click="searchHide" circle></el-button> --> |
||||
</div> |
||||
</div> |
||||
</el-row> |
||||
|
||||
<!-- 首页表格 --> |
||||
<el-row> |
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
class="tableNode" |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<div class="ElBtnClass"> |
||||
<el-text @click="printOrder(slotProps.scope.row)">查看二维码</el-text> |
||||
</div> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
</el-row> |
||||
|
||||
<!-- 分页模块 --> |
||||
<!-- <el-row class="el-fy"> |
||||
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
||||
<div></div> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.currentPage" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</el-row> --> |
||||
</div> |
||||
</basic-container> |
||||
<!-- 打印二维码 --> |
||||
<MyPrint |
||||
:html="details.html" |
||||
v-model="details.popUpShow.QRCodeVisible" |
||||
:isShowExport="false" |
||||
type="titlePrint" |
||||
width="780px" |
||||
></MyPrint> |
||||
|
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@setcolum="setnewcolum" |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
:columnList="details.columnList" |
||||
v-model="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
||||
import { columnList } from '@/option/distribution/Unstoreddetails.js'; |
||||
import { processRowPropertyName, setNodeHeight, getObjType } from '@/utils/util'; |
||||
import { ElMessageBox, ElMessage } from 'element-plus'; |
||||
import { downloadXls, handleClearTableQuery } from '@/utils/util'; |
||||
import { getShowAdvancePackgeCode } from '@/api/waybill/orderPackageListDetails'; |
||||
import { useStore } from 'vuex'; |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import dayjs from 'dayjs'; |
||||
import { |
||||
$_getDetail, |
||||
$_getOrderWarehouseDetail, |
||||
$_orderPackageCode, |
||||
} from '@/api/distribution/distributionStockArticle'; |
||||
const $router = useRouter(); //跳转 |
||||
const $useStore = useStore(); //权限 |
||||
const $route = useRoute(); //获取地址栏参数 |
||||
const activeName = ref('1'); |
||||
const dialogVisible = ref(false); |
||||
const from = ref({ |
||||
unWarehouse: [], |
||||
warehouse: [], |
||||
}); |
||||
const html = ref(''); |
||||
const details = reactive({ |
||||
/** 是否开启搜索 */ |
||||
search: false, |
||||
/** 表格搜索条件 */ |
||||
query: { |
||||
inputQuery: {}, |
||||
selectQuery: {}, |
||||
}, |
||||
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00' |
||||
/** 时间快捷选择设置 */ |
||||
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]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList, |
||||
|
||||
/** 列表数据 */ |
||||
data: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
currentPage: 1, |
||||
pageSize: 50, |
||||
total: 0, |
||||
}, |
||||
|
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 包件明细 */ |
||||
packageOrderListlVisited: false, |
||||
/** 二维码 */ |
||||
QRCodeVisible: false, |
||||
/** 修改客户信息 */ |
||||
editClientInfoVisible: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 包明细 */ |
||||
packageOrderListlVisited: false, |
||||
}, |
||||
html: '', |
||||
}); |
||||
|
||||
const { |
||||
search, |
||||
query, |
||||
shortcuts, |
||||
stockupDate, |
||||
data, |
||||
loadingObj, |
||||
selectionList, |
||||
drawerShow, |
||||
page, |
||||
trickleLoadingPage, |
||||
zeroAdditionalRecordingInfo, |
||||
popUpShow, |
||||
recorddata, |
||||
defaultTime2, |
||||
} = toRefs(details); |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = _flag => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
|
||||
}; |
||||
|
||||
/** 表格表头时间选择 */ |
||||
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]; |
||||
} |
||||
}; |
||||
|
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
processRowPropertyName(index, row, details.query); |
||||
}; |
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = list => { |
||||
console.log(list); |
||||
details.selectionList = list; |
||||
}; |
||||
// 网页顶部搜索按钮 |
||||
const searchChange = () => { |
||||
onLoad(); |
||||
}; |
||||
// 每页多少条 |
||||
const sizeChange = val => { |
||||
details.page.pageSize = val; |
||||
onLoad(); |
||||
}; |
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = val => { |
||||
details.page.currentPage = val; |
||||
onLoad(); |
||||
}; |
||||
// 刷新按钮 |
||||
const searchChangeS = () => { |
||||
details.search = false; //关闭搜索 |
||||
onLoad(); |
||||
}; |
||||
//清空 |
||||
const searchReset = () => { |
||||
details.query = {}; |
||||
details.page.currentPage = 1; |
||||
handleClearTableQuery(details.columnList); |
||||
onLoad(); |
||||
}; |
||||
// 顶部搜索 |
||||
const searchHide = () => { |
||||
console.log(details); |
||||
details.search = !details.search; |
||||
const _node = document.querySelector('.tableNode'); |
||||
setNodeHeight(_node, '', true); |
||||
}; |
||||
// 字典公共函数 |
||||
function updateDictionary(targetArray, dictionaryType) { |
||||
getDictionaryBiz(dictionaryType).then(res => { |
||||
console.log(res, '字典'); |
||||
res.data.data.forEach(item => { |
||||
targetArray.push({ |
||||
value: item.dictKey, |
||||
label: item.dictValue, |
||||
}); |
||||
}); |
||||
}); |
||||
} |
||||
// 页面初始化 |
||||
const onLoad = async () => { |
||||
details.loadingObj.list = true; |
||||
let _data = { |
||||
orderCode: $route.query.orderCode, |
||||
}; |
||||
let _res = await $_getOrderWarehouseDetail(_data); |
||||
console.log(_res, '表格数据'); |
||||
const { code, data } = _res.data; |
||||
if (code !== 200 || !data) { |
||||
return; |
||||
} |
||||
console.log(_res, '基础信息'); |
||||
from.value.warehouse = data.warehouse; //已入库 |
||||
from.value.unWarehouse = data.unWarehouse; //未入库 |
||||
details.data = data.warehouse; |
||||
details.loadingObj.list = false; |
||||
}; |
||||
|
||||
const getDetailaInfo = async () => { |
||||
let _data = { |
||||
id: $route.query.id, |
||||
}; |
||||
let _res = await $_getDetail(_data); |
||||
const { code, data } = _res.data; |
||||
if (code !== 200) { |
||||
return; |
||||
} |
||||
from.value = { ...data }; |
||||
}; |
||||
|
||||
const initPage = () => { |
||||
getDetailaInfo(); //获取基础数据 |
||||
onLoad(); //表格数据 |
||||
}; |
||||
initPage(); |
||||
const tabclaick = () => { |
||||
if (activeName.value == 1) { |
||||
details.data = from.value.warehouse; //已入库 |
||||
} else { |
||||
details.data = from.value.unWarehouse; //已入库 |
||||
} |
||||
}; |
||||
|
||||
const printOrder = async row => { |
||||
try { |
||||
details.loadingObj.list = true; |
||||
details.html = ''; |
||||
let qr = { |
||||
orderPackageCodes: row.orderPackageCode, |
||||
}; |
||||
const res = await getShowAdvancePackgeCode(qr); |
||||
const { code, data } = res.data; |
||||
if (code !== 200 || !data || getObjType(data.moldList) !== 'array') return; |
||||
if (data.moldList.length === 0) return; |
||||
for (const iterator of data.moldList) { |
||||
details.html += iterator; |
||||
} |
||||
details.popUpShow.QRCodeVisible = true; |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}; |
||||
|
||||
/** 批量查看二维码 */ |
||||
const handleBatchBarcode = async () => { |
||||
if (details.selectionList.length === 0) |
||||
return ElMessage.warning({ message: '请选择需要查看的数据' }); |
||||
try { |
||||
details.loadingObj.list = true; |
||||
|
||||
let qr = { |
||||
orderPackageCodes: details.selectionList.map(val => val.orderPackageCode).join(','), |
||||
}; |
||||
|
||||
const res = await getShowAdvancePackgeCode(qr); |
||||
|
||||
details.html = ''; |
||||
const { code, data } = res.data; |
||||
if (code !== 200 || !data || getObjType(data.moldList) !== 'array') return; |
||||
if (data.moldList.length === 0) return; |
||||
|
||||
for (const iterator of data.moldList) { |
||||
details.html += iterator; |
||||
} |
||||
|
||||
details.popUpShow.QRCodeVisible = true; |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
.ElBtnClass button { |
||||
border: none; |
||||
padding: 0; |
||||
background-color: transparent; |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
} |
||||
:deep(.el-card__body) { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
.el-fy { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: flex-end; |
||||
} |
||||
.avue-crud { |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
} |
||||
:deep(.el_tabs) { |
||||
.el-tabs__content { |
||||
display: none; |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue