列表添加问诊方式

This commit is contained in:
zoujiandong
2024-03-27 16:36:55 +08:00
parent 1c0fa985ee
commit 773feb7b5d
2 changed files with 11 additions and 3 deletions
+5 -1
View File
@@ -94,7 +94,7 @@
<!-- table -->
<a-table
:columns="columns"
:scroll="{ x: 1600 }"
:scroll="{ x: 1700 }"
:data="tableData"
:pagination="{ 'show-total': true, 'show-jumper': true, 'show-page-size': true, total: pager.total, current: currentPage }"
:row-selection="{ type: 'checkbox', showCheckedAll: true }"
@@ -134,6 +134,9 @@
<template #inquiry_type="{ record }">
{{ formatInquiryType(record.inquiry_type) }}
</template>
<template #inquiry_mode="{ record }">
{{ formatMode(record.inquiry_mode) }}
</template>
<template #pay_time="{ record }">
{{ parseTime(record.pay_time) }}
</template>
@@ -554,6 +557,7 @@ const columns = [
{ title: '订单金额', dataIndex: 'amount_total',slotName:'amount_total',width:100 },
{ title: '实付金额', dataIndex: 'payment_amount_total',slotName:'payment_amount_total',width:100 },
{ title: '服务类型', dataIndex: 'inquiry_type',slotName:'inquiry_type',width:100 },
{ title: '问诊方式', dataIndex: 'inquiry_mode',slotName:'inquiry_mode',width:100 },
{ title: '支付方式', dataIndex: 'inquiry_pay_channel',slotName: 'inquiry_pay_channel'},
{ title: '订单状态', dataIndex: 'inquiry_status', slotName:'inquiry_status' },
{ title: '支付时间', dataIndex: 'pay_time', slotName: 'pay_time',width:200 },