|
@@ -6,7 +6,7 @@
|
|
|
<el-col :span="24" class="one">
|
|
|
<search-1 :form="searchForm" @onSubmit="toSearch" @querySearch="querySearch" @toReset="toClose" :shopList="shopList"> </search-1>
|
|
|
</el-col>
|
|
|
- <data-table ref="dataTable" :fields="fields" :opera="opera" @query="search" :data="list" :total="total" @detail="toDetail" @sales="toSales" >
|
|
|
+ <data-table ref="dataTable" :fields="fields" :opera="opera" @query="search" :data="list" :total="total" @detail="toDetail" @sales="toSales">
|
|
|
</data-table>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -36,7 +36,8 @@ export default {
|
|
|
{ label: '下单时间', model: 'buy_time' },
|
|
|
{ label: '顾客', model: 'customer.name' },
|
|
|
{ label: '收货人', model: 'address', showTip: false, format: (i) => this.getAddress(i) },
|
|
|
- { label: '店铺名称', model: 'goods', format: (i) => this.getShopName(i) },
|
|
|
+ // { label: '店铺名称', model: 'goods', format: (i) => this.getShopName(i) },
|
|
|
+ { label: '店铺名称', model: 'shop.name' },
|
|
|
{ label: '需支付金额', model: 'real_pay' },
|
|
|
{ label: '商品数量', model: 'buy_num_total' },
|
|
|
],
|