|
|
@@ -77,6 +77,11 @@
|
|
|
</TgSelect>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="createdTime" label="收款日期" width="180" v-if="isDetail">
|
|
|
+ <template #default="scope">
|
|
|
+ {{ formatBackendDateTime(scope.row.createdTime) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="payType" label="支付方式">
|
|
|
<template #default="scope">
|
|
|
<TgSelect v-model="scope.row.payType" :list="getDictOptions(DICT_TYPE.BILL_PAY_TYPE)">
|
|
|
@@ -130,6 +135,7 @@ import Print from '../deposit/Print.vue'
|
|
|
import { formatNum } from '@/utils/formatter'
|
|
|
import { BalanceType } from '../types'
|
|
|
import { tableHeaderColor } from '@/utils/table'
|
|
|
+import { formatBackendDateTime } from '@/utils/formatTime'
|
|
|
|
|
|
defineOptions({ name: 'BalanceForm' })
|
|
|
const message = useMessage() // 消息弹窗
|