滚动table中新增设备状态
This commit is contained in:
parent
6beafdc9f2
commit
2a4fdf1573
|
@ -87,6 +87,10 @@ export default {
|
||||||
20: "已下达",
|
20: "已下达",
|
||||||
30: '生产中',
|
30: '生产中',
|
||||||
40: '已完成',
|
40: '已完成',
|
||||||
|
'q10': '完好',
|
||||||
|
'q20': '限用',
|
||||||
|
'q30': '在修',
|
||||||
|
'q40': '禁用',
|
||||||
'normal': '正常',
|
'normal': '正常',
|
||||||
'late': '迟到',
|
'late': '迟到',
|
||||||
'未到岗': '未到岗',
|
'未到岗': '未到岗',
|
||||||
|
|
|
@ -377,7 +377,7 @@ export default {
|
||||||
obj6.elType = 'primary';
|
obj6.elType = 'primary';
|
||||||
obj6.value = item.index;
|
obj6.value = item.index;
|
||||||
obj7.elType = 'tag';
|
obj7.elType = 'tag';
|
||||||
obj7.value = item.equip_state;
|
obj7.value = 'q' + item.equip_state;
|
||||||
arr.push(obj1);
|
arr.push(obj1);
|
||||||
arr.push(obj2);
|
arr.push(obj2);
|
||||||
arr.push(obj3);
|
arr.push(obj3);
|
||||||
|
|
Loading…
Reference in New Issue