Browse Source

账户余额详情增加收款日期显示

xiongxing 1 tuần trước cách đây
mục cha
commit
e61dd1c297
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      src/views/elderly/fee/balance/Form.vue

+ 6 - 0
src/views/elderly/fee/balance/Form.vue

@@ -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() // 消息弹窗