| | |
| | | const multiple = ref(true); |
| | | const total = ref(0); |
| | | const title = ref(""); |
| | | const height = ref(document.documentElement.clientHeight - 270 + "px;") |
| | | const height = ref(document.documentElement.clientHeight - 180 + "px;") |
| | | |
| | | const data = reactive({ |
| | | form: {}, |
| | |
| | | const { queryParams, form, rules } = toRefs(data); |
| | | const columns = ref([ |
| | | { type: 'seq', title: '序号', width: 60 }, |
| | | { title: '工序名称', field: 'processName', width: 200}, |
| | | { title: '异常来源', field: 'source', width: 200}, |
| | | { title: '异常描述', field: 'summary', width: 200}, |
| | | { title: '工序名称', field: 'processName'}, |
| | | { title: '异常来源', field: 'source'}, |
| | | { title: '异常描述', field: 'summary'}, |
| | | { title: '创建时间', field: 'createTime', width: 200}, |
| | | ]) |
| | | |