添加钢卷异常信息管理模块,包括异常记录、查询和展示功能 - 新增异常信息列表页面和详情页面 - 在钢卷管理页面添加异常数量显示和操作入口 - 实现异常信息的增删改查API接口 - 在领料页面添加异常标记和操作按钮 - 添加相关字典数据用于异常信息分类
27 lines
559 B
Vue
27 lines
559 B
Vue
<template>
|
|
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideType="hideType" :showAbnormal="showAbnormal" :showControl="showControl" />
|
|
</template>
|
|
|
|
<script>
|
|
import BasePage from './panels/base.vue';
|
|
|
|
export default {
|
|
components: {
|
|
BasePage
|
|
},
|
|
data() {
|
|
return {
|
|
querys: {
|
|
dataType: 1,
|
|
// 筛选异常数量大于等于1的
|
|
minAbnormalCount: 1
|
|
},
|
|
labelType: '2',
|
|
qrcode: false,
|
|
hideType: false,
|
|
showAbnormal: true,
|
|
showControl: false,
|
|
}
|
|
}
|
|
}
|
|
</script> |