✨ feat(mes): 更新单据状态字段宽度,优化界面布局
parent
cbbf44e6ab
commit
cbf173b75b
|
|
@ -39,7 +39,7 @@
|
|||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="单据状态" prop="status">
|
||||
<el-form-item label="单据状态" prop="status" width="100">
|
||||
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable class="!w-240px">
|
||||
<el-option
|
||||
v-for="dict in getIntDictOptions(DICT_TYPE.MES_DV_REPAIR_STATUS)"
|
||||
|
|
@ -108,12 +108,17 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="维修人员" align="center" prop="acceptedUserNickname" />
|
||||
<el-table-column label="验收人员" align="center" prop="confirmUserNickname" />
|
||||
<el-table-column label="单据状态" align="center" prop="status">
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.MES_DV_REPAIR_STATUS" :value="scope.row.status" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="220">
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
width="220"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@
|
|||
width="180px"
|
||||
/>
|
||||
<el-table-column label="检测人员" align="center" prop="inspectorNickname" width="100" />
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="80">
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.MES_ORDER_STATUS" :value="scope.row.status" />
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@
|
|||
width="180px"
|
||||
/>
|
||||
<el-table-column label="检测人员" align="center" prop="inspectorNickname" width="100" />
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="90">
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.MES_ORDER_STATUS" :value="scope.row.status" />
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@
|
|||
width="180px"
|
||||
/>
|
||||
<el-table-column label="检测人员" align="center" prop="inspectorNickname" width="100" />
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="80">
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.MES_ORDER_STATUS" :value="scope.row.status" />
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@
|
|||
width="180px"
|
||||
/>
|
||||
<el-table-column label="检测人员" align="center" prop="inspectorNickname" width="100" />
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="90">
|
||||
<el-table-column label="单据状态" align="center" prop="status" width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.MES_ORDER_STATUS" :value="scope.row.status" />
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in New Issue