提交修改代码

This commit is contained in:
shaoleiliu-netizen123 2026-08-17 11:14:42 +08:00
parent 6313f3bae3
commit 877c907166
2 changed files with 2 additions and 2 deletions

View File

@ -408,7 +408,7 @@ const AssingWorkDetailColums:DataTableColumns<AssingWorkDetail> = [
},
{
align:'center',
title: '质检状态',
title: '状态',
key: 'status',
width: 100,
render(row:any) {

View File

@ -80,7 +80,7 @@ const reportRecordsColums:DataTableColumns<SubmitLog> = [
{ title: '合格数量', key: 'qualifiedQty',align: 'center'},
{ title: '报废数量', key: 'scrapQty',align: 'center'},
{ title: '汇报人', key: 'userName',align: 'center' },
{ title: '派工状态', key: 'submitStatus',align: 'center',
{ title: '状态', key: 'submitStatus',align: 'center',
render: (row) => {
const val = row.submitStatus
const opt = submitStatusOptions.value.find(o => o.value === val || String(o.value) === String(val))