feat(mes): 更新单据状态字段宽度,优化界面布局

pull/871/MERGE
YunaiV 2026-03-24 21:09:16 +08:00
parent cbbf44e6ab
commit cbf173b75b
5 changed files with 12 additions and 7 deletions

View File

@ -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

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>