add:增加出库原数据存储

This commit is contained in:
zhangzq
2024-12-04 17:35:28 +08:00
parent 65534db1b5
commit ae414cfe0c
2 changed files with 11 additions and 3 deletions

View File

@@ -98,7 +98,7 @@
<template slot-scope="scope">{{ scope.row.form_data[item.value] }}</template> <template slot-scope="scope">{{ scope.row.form_data[item.value] }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="create_time" label="创建时间" /> <el-table-column prop="create_time" label="创建时间" />
<el-table-column prop="remark" label="备注" /> <el-table-column prop="remark" label="备注" show-overflow-tooltip width="120" />
<el-table-column prop="proc_inst_id" label="对应流程实例id" show-overflow-tooltip width="120" /> <el-table-column prop="proc_inst_id" label="对应流程实例id" show-overflow-tooltip width="120" />
<el-table-column <el-table-column
v-permission="['admin','Classstandard:edit','Classstandard:del']" v-permission="['admin','Classstandard:edit','Classstandard:del']"
@@ -197,7 +197,11 @@ export default {
label: '执行中' label: '执行中'
}, },
{ {
value: '99', value: '30',
label: '暂停'
},
{
value: '80',
label: '完成' label: '完成'
} }
] ]

View File

@@ -216,7 +216,11 @@ export default {
label: '执行中' label: '执行中'
}, },
{ {
value: '99', value: '30',
label: '暂停'
},
{
value: '80',
label: '完成' label: '完成'
} }
] ]