Compare commits

...

2 Commits

Author SHA1 Message Date
lihaoyuan
24f3786c1c update:修改结束时间默认显示 2025-11-24 11:20:53 +08:00
lihaoyuan
60426f4594 fix:修复状态显示 2025-11-24 11:20:31 +08:00
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -40,6 +40,7 @@
:style="{ width: '100%' }" :style="{ width: '100%' }"
type="datetime" type="datetime"
value-format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss"
default-time="23:59:59"
/> />
</el-form-item> </el-form-item>
</el-col> </el-col>