fix: 店铺名称显示

This commit is contained in:
lzhizhao 2025-10-01 11:09:50 +08:00
parent df15102661
commit a337f2b750
2 changed files with 3 additions and 4 deletions

View File

@ -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"] = "./"; // 域名

View File

@ -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">