更改间距

This commit is contained in:
zoujiandong 2023-09-14 09:14:43 +08:00
parent 07723222b6
commit 8ae24e66f3
2 changed files with 6 additions and 6 deletions

View File

@ -589,7 +589,7 @@ const columns = [
{ title: '订单编号', dataIndex: 'order_product_no',width:200 },
{ title: '处方编号', dataIndex: 'order_prescription_id',width:200 },
{ title: '医生姓名', dataIndex: 'doctor_name',width:100 },
{ title: '就诊人', dataIndex: 'patient_name_mask',slotName:'patient_name_mask' },
{ title: '就诊人', dataIndex: 'patient_name_mask',slotName:'patient_name_mask',width:200 },
{ title: '就诊人联系电话', dataIndex: 'patient_mobile',width:130 },
{ title: '订单金额', dataIndex: 'amount_total',slotName:'amount_total' },
{ title: '实付金额', dataIndex: 'payment_amount_total',slotName:'payment_amount_total' },

View File

@ -56,7 +56,7 @@
<!-- table -->
<a-table
:columns="columns"
:scroll="{ x: 2000 }"
:scroll="{ x: 1600 }"
:data="tableData"
:pagination="{ 'show-total': true, 'show-jumper': true, 'show-page-size': true, total: pager.total, current: currentPage }"
:row-selection="{ type: 'checkbox', showCheckedAll: true }"
@ -151,7 +151,7 @@
<a-col :span="12">
<a-form-item field="coupon_amount_total" label="优惠卷:">
<span v-if="modalForm.coupon_amount_total>0">{{modalForm.coupon_amount_total}}</span>
<span v-else></span>
<span v-else></span>
</a-form-item>
</a-col>
</a-row>
@ -424,10 +424,10 @@ const columns = [
{ title: '排序', dataIndex: 'post_id',slotName: 'post_id',width: 90 },
{ title: '订单编号', dataIndex: 'inquiry_no',width:200 },
{ title: '医生姓名', dataIndex: 'doctor_name',width:100 },
{ title: '就诊人', dataIndex: 'patient_name',slotName:'patient_name'},
{ title: '就诊人', dataIndex: 'patient_name',slotName:'patient_name',width:200},
{ title: '联系电话', dataIndex: 'patient_mobile',width: 130 },
{ title: '订单金额', dataIndex: 'amount_total',slotName:'amount_total' },
{ title: '实付金额', dataIndex: 'payment_amount_total',slotName:'payment_amount_total' },
{ title: '订单金额', dataIndex: 'amount_total',slotName:'amount_total',width:100 },
{ title: '实付金额', dataIndex: 'payment_amount_total',slotName:'payment_amount_total',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 },