|
@@ -228,6 +228,22 @@
|
|
|
v-if="item.dictValue == list.tcfxName"
|
|
v-if="item.dictValue == list.tcfxName"
|
|
|
v-model="item.text" />
|
|
v-model="item.text" />
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template>
|
|
|
|
|
+ <van-field
|
|
|
|
|
+ v-if="storeCompetitorList"
|
|
|
|
|
+ readonly
|
|
|
|
|
+ label="主营竞品品牌"
|
|
|
|
|
+ autosize
|
|
|
|
|
+ type="textarea"
|
|
|
|
|
+ v-model="storeCompetitorList" />
|
|
|
|
|
+ <van-field
|
|
|
|
|
+ v-if="list.otherCompetitor"
|
|
|
|
|
+ readonly
|
|
|
|
|
+ label="其他"
|
|
|
|
|
+ autosize
|
|
|
|
|
+ type="textarea"
|
|
|
|
|
+ v-model="list.otherCompetitor" />
|
|
|
|
|
+ </template>
|
|
|
</van-tab>
|
|
</van-tab>
|
|
|
</van-tabs>
|
|
</van-tabs>
|
|
|
<br />
|
|
<br />
|
|
@@ -345,6 +361,7 @@ export default {
|
|
|
rejectMessage: '',
|
|
rejectMessage: '',
|
|
|
displayImg: [],
|
|
displayImg: [],
|
|
|
orderPrice: 0, //订单总金额
|
|
orderPrice: 0, //订单总金额
|
|
|
|
|
+ storeCompetitorList: '',
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
activated() {
|
|
activated() {
|
|
@@ -525,6 +542,11 @@ export default {
|
|
|
localStorage.setItem('chainName', res.data.storeName);
|
|
localStorage.setItem('chainName', res.data.storeName);
|
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
|
this.list = res.data;
|
|
this.list = res.data;
|
|
|
|
|
+ if (this.list.storeCompetitorList) {
|
|
|
|
|
+ this.storeCompetitorList = this.list.storeCompetitorList.join(',');
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.list.storeCompetitorList = [];
|
|
|
|
|
+ }
|
|
|
if (this.list.imgSed && this.list.imgSed != '') {
|
|
if (this.list.imgSed && this.list.imgSed != '') {
|
|
|
this.displayImg = this.list.imgSed.split(',');
|
|
this.displayImg = this.list.imgSed.split(',');
|
|
|
} else {
|
|
} else {
|