|
@@ -7,7 +7,7 @@
|
|
|
title="收货地址"
|
|
|
v-model="isShow"
|
|
|
@cancel="isShow=false"
|
|
|
- :width="900">
|
|
|
+ :width="960">
|
|
|
<a-spin :spinning="spinning" tip="Loading...">
|
|
|
<!-- 操作按钮 -->
|
|
|
<div class="table-operator">
|
|
@@ -21,7 +21,7 @@
|
|
|
:rowKey="(record) => record.id"
|
|
|
:columns="columns"
|
|
|
:data="loadData"
|
|
|
- :scroll="{ x: 1050 }"
|
|
|
+ :scroll="{ x: 1250 }"
|
|
|
:showPagination="false"
|
|
|
bordered>
|
|
|
<!-- 收货人 -->
|
|
@@ -98,7 +98,7 @@ export default {
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center' },
|
|
|
{ title: '收货人', scopedSlots: { customRender: 'consignee' }, align: 'center', ellipsis: true },
|
|
|
- { title: '手机号码', dataIndex: 'consigneeTel', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '手机号码', dataIndex: 'consigneeTel', width: 230, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '收货地址', dataIndex: 'address', width: 400, align: 'center', ellipsis: true },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: 220, align: 'center', fixed: 'right' },
|
|
|
{ title: '选择', scopedSlots: { customRender: 'choose' }, width: 100, align: 'center', fixed: 'right' }
|