- 修复钢卷历史页面控制显示问题 - 在交货报表中添加dataType参数 - 修改checkCoilNo接口支持coilId参数 - 优化镀锌报表查询逻辑,使用Promise.all并行请求 - 修复轧硬报表仓库ID错误问题 - 移除钢卷入库页面的只读限制 - 修复钢卷删除功能,支持删除带coilId的记录
24 lines
428 B
Vue
24 lines
428 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showControl="showControl" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: true,
|
|
querys: {
|
|
dataType: 0,
|
|
},
|
|
showControl: true,
|
|
labelType: '2',
|
|
hideType: false
|
|
}
|
|
}
|
|
}
|
|
</script> |