@@ -210,6 +210,13 @@
slot: 'orderTotalCount',
align: 'center'
},
+ {
+ minWidth: 120,
+ prop: 'taskName',
+ label: '工序',
+ slot: 'taskName',
+ align: 'center'
+ },
{
width: 80,
prop: 'measuringUnit',
@@ -241,6 +241,13 @@
slot: 'totalCount',
+ minWidth: 150,
width: 120,
@@ -312,6 +312,13 @@ export default {
headerSlot: 'headerTotalCount',
align: "center"
// {
// width: 120,
// prop: 'orderTotalCount',
@@ -183,9 +183,9 @@
this.tasks = [];
// 移除已取消的审批
response.forEach((task) => {
- if (task.result !== 4) {
+ // if (task.result !== 4) {
this.tasks.push(task);
- }
+ // }
});
// 排序,将未完成的排在前面,已完成的排在后面;
this.tasks.sort((a, b) => {