- 新增wms/coil/ship.vue发货页面 - 在product.vue中添加status查询参数 - 更新real.vue中状态标签的显示条件 - 修改do.vue面板中的物料信息显示字段,替换厚度/宽度为材质/表面处理等字段
26 lines
476 B
Vue
26 lines
476 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :showStatus="showStatus" :hideType="hideType" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
dataType: 1,
|
|
materialType: '成品',
|
|
status: 0
|
|
},
|
|
labelType: '3',
|
|
showStatus: true,
|
|
hideType: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |