fix:修复状态显示

This commit is contained in:
lihaoyuan 2025-11-24 11:20:31 +08:00
parent b497242585
commit 60426f4594

View File

@ -92,6 +92,7 @@
align="center"
:label="__('用户是否确认')"
prop="order_item_confirm_status"
>
<template slot-scope="scope">
{{ formatUserConfirmType(scope.row.order_item_confirm_status) }}
@ -828,8 +829,8 @@
//
return (val) => {
const map = {
0: '确认',
1: '确认'
0: '确认',
1: '确认'
}
return map[val] ?? val
}