- 将各页面中的itemType字段替换为materialType,使用中文显示物料类型 - 在actflow页面添加待操作状态切换开关 - 移除废弃的warehouseId字段
27 lines
542 B
Vue
27 lines
542 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery" :hideType="hideType" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
qrcode: false,
|
|
querys: {
|
|
// itemType: 'rubbish',
|
|
dataType: 1,
|
|
materialType: '废品'
|
|
// warehouseId: 111,
|
|
},
|
|
hideWarehouseQuery: true,
|
|
labelType: '3',
|
|
hideType: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |