This commit is contained in:
helloDy
2024-06-18 08:47:53 +08:00
parent e1e39681ce
commit e990680159
4 changed files with 79 additions and 56 deletions

View File

@@ -1,7 +1,7 @@
<!--
* @Author: zhp
* @Date: 2024-04-15 10:49:13
* @LastEditTime: 2024-06-14 11:04:04
* @LastEditTime: 2024-06-17 16:32:02
* @LastEditors: DY
* @Description:
-->
@@ -88,7 +88,7 @@ export default {
factorys: ['瑞昌中建材', '邯郸中建材', '株洲中建材', '佳木斯中建材', '成都中建材', '凯盛光伏', '蚌埠兴科'],
factoryNum: [0, 0, 0, 0, 0, 0, 0],
inputNum: 0,
heightNum: 210,
heightNum: 180,
factoryList,
factoryArray,
listQuery: {
@@ -141,15 +141,15 @@ export default {
selectOptions: [
{
label: '未开始',
value: 0
},
{
label: '生产中',
value: 1
},
{
label: '已完成',
label: '生产中',
value: 2
},
{
label: '已完成',
value: 3
}
],
labelField: "label",
@@ -247,7 +247,7 @@ export default {
prop: 'orderStatus',
label: '工单状态',
// filter: publicFormatter('workorder_status')
filter: (val) => ['未开始', '生产中', '已完成'][val],
filter: (val) => ['', '未开始', '生产中', '已完成'][val],
},
{
prop: 'startTime',
@@ -396,7 +396,7 @@ export default {
background-color: #fff;
border-radius: 4px;
padding: 16px 16px 0;
height: calc(100vh - 80px);
height: calc(100vh - 40px);
overflow: auto;
}
</style>