fix(custom): 修正账户明细时间显示不完整
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-20 17:38:36 +08:00
parent 5f8ed08d45
commit b20930f516

View File

@@ -173,7 +173,7 @@ const closePicker = () => {
<view>
<view class="text-[28px]">订单号: {{ item.oid }}</view>
<view class="text-[#484848] text-[26px] mt-[18px]">{{
dayjs(item.add_time).format('YYYY/MM/DD mm:ss')
dayjs(item.add_time).format('YYYY/MM/DD HH:mm:ss')
}}</view>
</view>
<view class="flex-1 text-right mt-[18px]">
@@ -192,7 +192,9 @@ const closePicker = () => {
<view>
<view class="text-[28px]">订单{{ item.oid }}</view>
<view class="text-[#484848] text-[26px] mt-[18px]"
>时间{{ item.add_time.slice(0, 10) }}</view
>时间{{
dayjs(item.add_time).format('YYYY/MM/DD HH:mm:ss')
}}</view
>
</view>
<view class="flex-1 text-right mt-[18px]">
@@ -213,7 +215,9 @@ const closePicker = () => {
<view>
<view class="text-[28px]">订单{{ item.oid }}</view>
<view class="text-[#484848] text-[26px] mt-[18px]"
>时间{{ item.add_time.slice(0, 10) }}</view
>时间{{
dayjs(item.add_time).format('YYYY/MM/DD HH:mm:ss')
}}</view
>
</view>
<view class="flex-1 text-right mt-[18px]">
@@ -230,7 +234,9 @@ const closePicker = () => {
<view>
<view class="text-[28px]">类型{{ computerType(item.type) }}</view>
<view class="text-[#484848] text-[26px] mt-[18px]"
>时间{{ item.add_time.slice(0, 10) }}</view
>时间{{
dayjs(item.add_time).format('YYYY/MM/DD HH:mm:ss')
}}</view
>
</view>
<view class="flex-1 text-right mt-[18px]">
@@ -291,7 +297,5 @@ const closePicker = () => {
align-items: center;
font-size: 25px;
margin-bottom: 25px;
}
</style>