master
lion 6 months ago
parent d3c5b5cf57
commit a64bd7dc72

@ -86,6 +86,16 @@
</div>
</div>
</template>
<template v-slot:shipping_address_line_2>
<div class="xy-table-item">
<div class="xy-table-item-label" style="font-weight: bold">
<span style="color: red;font-weight: bold;padding-right: 4px;"></span>Shipping Address Line 2
</div>
<div class="xy-table-item-content">
<el-input placeholder="Please Input" style="width:100%" v-model="form.shipping_address_line_2"></el-input>
</div>
</div>
</template>
<template v-slot:shipping_city>
<div class="xy-table-item">
<div class="xy-table-item-label" style="font-weight: bold">
@ -184,6 +194,7 @@
country: '',
shipping_region:'',
shipping_address: '',
shipping_address_line_2:'',
shipping_city:'',
shipping_postal:'',
// billing_city:'',
@ -274,6 +285,7 @@
country: '',
shipping_region:'',
shipping_address: '',
shipping_address_line_2:'',
shipping_city:'',
shipping_postal:'',
// billing_city:'',

@ -157,6 +157,13 @@
width: 240,
export:true,
},
{
prop: 'shipping_address_line_2',
label: 'Shipping Address Line 2',
align: 'left',
width: 240,
export:true,
},
{
prop: 'shipping_city',
label: 'Shipping City',

@ -84,7 +84,7 @@
{{scope.row.shipping_address}}
</template>
</el-table-column>
<el-table-column align='left' label="Address Line 2" width="180" header-align="center">
<el-table-column align='left' label="Shipping Address Line 2" width="180" header-align="center">
<template slot-scope="scope">
{{scope.row.shipping_address_line_2}}
</template>
@ -156,7 +156,7 @@
{{scope.row.billing_address}}
</template>
</el-table-column>
<el-table-column align='left' label="Address Line 2" width="180" header-align="center">
<el-table-column align='left' label="Billing Address Line 2" width="180" header-align="center">
<template slot-scope="scope">
{{scope.row.billing_address_line_2}}
</template>

Loading…
Cancel
Save