Commit d26d7c32 by chenyu

update: update

parent c5b52945
......@@ -31,7 +31,7 @@
:span-method="(obj)=>spanMethod({...obj,length:group.orderItemList.length})">
<template v-for="colunm in tableColumnList">
<el-table-column :key="colunm" :label="colunm.label" :min-width="colunm.width"
show-overflow-tooltip :prop="colunm.prop">
:show-overflow-tooltip="column.tooltip" :prop="colunm.prop">
<template slot-scope="{row}">
<template
v-if="['orderStatus','deliveryInfo','payAmount'].includes(colunm.prop)">
......@@ -45,7 +45,7 @@
<div class="delivery-info">
<p class="delivery-info-line">收件人:{{ group.buyerName }}</p>
<p class="delivery-info-line">手机号:{{ group.buyerPhone }}</p>
<p class="delivery-info-line" style="overflow: hidden;text-overflow:ellipsis;white-space: nowrap;">收货地址:{{ group.addressInfo }}</p>
<p class="delivery-info-line" style="overflow: hidden;text-overflow:ellipsis;white-space: nowrap;" :title="group.addressInfo">收货地址:{{ group.addressInfo }}</p>
</div>
</template>
<!-- 小计 -->
......@@ -161,12 +161,12 @@ export default {
search: '',
isWm:true, //当前页面是微盟
tableColumnList: [
{ label: '商品', width: '200', prop: 'mallProName' },
{ label: '单价', width: '80', prop: 'mallProPrice' },
{ label: '数量', width: '80', prop: 'mallProNumber' },
{ label: '订单类型', width: '80', prop: 'orderStatus' },
{ label: '小计(实付)', width: '80', prop: 'payAmount' },
{ label: '收货信息', width: '200', prop: 'deliveryInfo' },
{ label: '商品', width: '200', prop: 'mallProName', tooltop:true },
{ label: '单价', width: '80', prop: 'mallProPrice', tooltop:false },
{ label: '数量', width: '80', prop: 'mallProNumber', tooltop:false },
{ label: '订单类型', width: '80', prop: 'orderStatus', tooltop:false },
{ label: '小计(实付)', width: '80', prop: 'payAmount', tooltop:false },
{ label: '收货信息', width: '200', prop: 'deliveryInfo', tooltop:false },
],
orderColor:{1:'#303133',2:'#FA8C16',4:'#F5222D'},
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment