fix: 店铺名称显示
This commit is contained in:
parent
df15102661
commit
a337f2b750
|
@ -13,7 +13,7 @@
|
|||
window.SITE_CONFIG = {};
|
||||
|
||||
// 在线api接口请求地址
|
||||
window.SITE_CONFIG["baseUrl"] = "https://admin.damajishi.cn/";
|
||||
window.SITE_CONFIG["baseUrl"] = "https://admin-test.damajishi.cn/";
|
||||
|
||||
// cdn地址 = 域名 + 版本号
|
||||
window.SITE_CONFIG["domain"] = "./"; // 域名
|
||||
|
|
|
@ -119,7 +119,6 @@
|
|||
<template slot-scope="props">
|
||||
<div class="expand-content">
|
||||
<div class="shop-order" v-for="(shopOrder, shopIndex) in props.row.shopOrderList" :key="shopIndex">
|
||||
<h4>店铺: {{ shopOrder.shopName }}</h4>
|
||||
<!-- 二级子列表: 店铺订单信息 -->
|
||||
<el-table
|
||||
:data="[shopOrder]"
|
||||
|
@ -132,9 +131,9 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="shopOrderNo" label="店铺订单号" width="180"></el-table-column>
|
||||
<el-table-column prop="status" label="档位" width="100">
|
||||
<el-table-column prop="shopName" label="店铺名称" width="100">
|
||||
<template slot-scope="shopScope">
|
||||
{{ shopScope.row.status || "暂无" }}
|
||||
{{ shopScope.row.shopName || "暂无" }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="status" label="订单状态" width="120">
|
||||
|
|
Loading…
Reference in New Issue