|
@@ -57,6 +57,8 @@
|
|
|
<van-radio-group v-model="personalForm.shopType" direction="horizontal" @change="handleShopTypeChange">
|
|
|
<van-radio name="1">商城</van-radio>
|
|
|
<van-radio name="2">商圈</van-radio>
|
|
|
+ <van-radio name="3">供应商</van-radio>
|
|
|
+ <van-radio name="4">选品会员</van-radio>
|
|
|
</van-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -75,7 +77,7 @@
|
|
|
</van-popup>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-show="personalForm.shopType === '2'">
|
|
|
+ <div v-show="['2', '3', '4'].includes(personalForm.shopType)">
|
|
|
<div class="inputItem">
|
|
|
<div class="labelTit"><label><i>*</i>营业开始时间</label></div>
|
|
|
<input @focus="noBomBox" type="text" v-model="personalForm.startTime" placeholder="请选择营业开始时间"
|
|
@@ -760,7 +762,7 @@ export default {
|
|
|
subData.classificationId = subData.classificationIdMall
|
|
|
}
|
|
|
}
|
|
|
- if (subData.shopType === '2') {
|
|
|
+ if (['2', '3', '4'].includes(subData.shopType)) {
|
|
|
if (!subData.startTime) {
|
|
|
Toast.fail('请选择营业开始时间')
|
|
|
return
|
|
@@ -1001,7 +1003,7 @@ export default {
|
|
|
}, res => {
|
|
|
this.shopCategoryMallOptions = res.data
|
|
|
})
|
|
|
- } else if (name === '2') {
|
|
|
+ } else if (['2', '3', '4'].includes(name)) {
|
|
|
this.sendReq({
|
|
|
url: api.getCategoryList,
|
|
|
method: 'GET',
|
|
@@ -1038,7 +1040,7 @@ export default {
|
|
|
this.showMall = false
|
|
|
this.isQueryShopCategory = false
|
|
|
})
|
|
|
- } else if (this.personalForm.shopType === '2') {
|
|
|
+ } else if (['2', '3', '4'].includes(this.personalForm.shopType)) {
|
|
|
this.isQueryShopCategory = true
|
|
|
this.sendReq({
|
|
|
url: api.getChildCategoryList,
|