- 在base.vue中新增导出按钮和按库区排序选项 - 添加exportCoilWithAll API接口用于批量导出 - 在waybill.vue中新增showNewExport属性控制导出按钮显示 - 优化发货单页面显示,增加订单编号和备注显示 - 新增delivery/canuse页面用于展示可用钢卷 - 修复发货单修改时订单编号显示问题
35 lines
757 B
Vue
35 lines
757 B
Vue
<template>
|
|
<BasePage
|
|
:qrcode="qrcode"
|
|
:showWaybill="showWaybill"
|
|
:showNewExport="showNewExport"
|
|
:querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" :showControl="showControl" :showExportTime="showExportTime" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
includeBindInfo: true,
|
|
// materialType: '成品',
|
|
// status: 1
|
|
},
|
|
showControl: false,
|
|
labelType: '3',
|
|
showStatus: false,
|
|
hideType: false,
|
|
showExportTime: false,
|
|
showWaybill: true,
|
|
showNewExport: true,
|
|
}
|
|
}
|
|
}
|
|
</script> |