|
|
@@ -247,7 +247,10 @@
|
|
|
</div>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-row gutter="20" style="padding: 16px">
|
|
|
+ <van-row
|
|
|
+ gutter="20"
|
|
|
+ style="padding: 16px"
|
|
|
+ v-if="list.newStoreDisplayPhoto || list.newStoreSignPhoto">
|
|
|
<van-col span="12" v-if="list.newStoreSignPhoto">
|
|
|
<div v-if="storeTypePOP">
|
|
|
<van-image
|
|
|
@@ -309,7 +312,7 @@
|
|
|
<van-collapse
|
|
|
v-model="activeNames"
|
|
|
class="orderList"
|
|
|
- v-if="list.approvalStatus == 0 && cityABStore">
|
|
|
+ v-if="list.approvalStatus == 0 && cityABStore && orderList.length">
|
|
|
<van-collapse-item title="门店下单记录" name="1">
|
|
|
<div class="orderItem" v-for="(item, index) in orderList" :key="index">
|
|
|
<div class="orderTitle">
|
|
|
@@ -1697,7 +1700,7 @@ export default {
|
|
|
.then(() => {});
|
|
|
return;
|
|
|
}
|
|
|
- if (!this.orderList.length) {
|
|
|
+ if (!this.orderList.length && this.list.storeCategory != '126565') {
|
|
|
this.$notify({ type: 'warning', message: '门店没有系统订单,请根据实际情况下单' });
|
|
|
return;
|
|
|
}
|