|
@@ -14,10 +14,18 @@
|
|
|
cache-key="workOrderTable"
|
|
cache-key="workOrderTable"
|
|
|
>
|
|
>
|
|
|
<template v-slot:code="{ row }">
|
|
<template v-slot:code="{ row }">
|
|
|
- <!-- <el-link type="primary" :underline="false" @click="goDetail(row)"> -->
|
|
|
|
|
{{ row.code }}
|
|
{{ row.code }}
|
|
|
- <!-- </el-link> -->
|
|
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <template v-slot:formingWeight="{ row }">
|
|
|
|
|
+ {{ row.formingWeight }} {{ row.newWeightUnit }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
<template v-slot:status="{ row }">
|
|
<template v-slot:status="{ row }">
|
|
|
<span :class="{ 'ele-text-danger': row.status == 3 }">
|
|
<span :class="{ 'ele-text-danger': row.status == 3 }">
|
|
|
{{ statusFormatter(row.status) }}
|
|
{{ statusFormatter(row.status) }}
|
|
@@ -139,14 +147,16 @@
|
|
|
label: '要求生产数量',
|
|
label: '要求生产数量',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 110
|
|
|
|
|
|
|
+ minWidth: 110,
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'formingWeight',
|
|
prop: 'formingWeight',
|
|
|
label: '要求生产重量',
|
|
label: '要求生产重量',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 110
|
|
|
|
|
|
|
+ minWidth: 110,
|
|
|
|
|
+ slot: 'formingWeight'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'planStartTime',
|
|
prop: 'planStartTime',
|