fix: 修复移动端楼层装修外部链接没有地方填写问题

master
paulGao 2022-12-06 16:32:29 +08:00
parent f0882793e4
commit a31c7a5ad0
1 changed files with 108 additions and 90 deletions

View File

@ -26,11 +26,18 @@
>选择促销活动</Button
>
</div>
<Alert type="warning" v-if="res.name == '商品分类'">
<Alert type="warning" v-if="res.name == ''"
>装修提示
<template slot="desc">
<div style="color:red"> 如果当前装修模块不是最后一项模块且模块内容绑定为分类则会默认展示绑定分类的100条商品信息</div>
<div style="color:red"> 如果当前装修模块是最后一项模块且模块内容绑定为分类则会默认会根据绑定分类触底加载商品信息</div>
<div style="color:red"> 如果当前装修内容不为分类则会展示当前商品的静态信息</div>
<div style="color: red">
如果当前装修模块不是最后一项模块且模块内容绑定为分类则会默认展示绑定分类的100条商品信息
</div>
<div style="color: red">
如果当前装修模块是最后一项模块且模块内容绑定为分类则会默认会根据绑定分类触底加载商品信息
</div>
<div style="color: red">
如果当前装修内容不为分类则会展示当前商品的静态信息
</div>
</template>
</Alert>
@ -120,10 +127,7 @@
<div class="decorate-view">
<div class="decorate-view-title">绑定</div>
<div class="decorate-view-link">
<div
v-if="res.options.list[0].listWay.length != 0"
>
<div v-if="res.options.list[0].listWay.length != 0">
<!-- 绑定商品选择器回调已选择的商品 -->
<div
@ -160,7 +164,6 @@
>
</div>
</div>
</div>
<!-- 显示绑定分类 -->
<div v-if="title_item.bindCategory">
@ -177,8 +180,7 @@
<Button
@click="bindGoodsCategory(title_index)"
size="small"
style='margin-top:20px'
style="margin-top: 20px"
>选择分类</Button
>
</div>
@ -437,10 +439,15 @@
{{ item.model === "hotzone" ? "绘制热区" : "选择链接" }}</Button
>
</div>
</div>
<!-- 链接地址-->
<div
class="decorate-view"
v-if="item.url && item.url.url && item.url.___type == 'other'"
v-if="
item.url &&
item.url.url !== undefined &&
item.url.___type == 'other'
"
>
<div class="decorate-view-title">外部链接</div>
<div>
@ -448,13 +455,18 @@
</div>
</div>
<p v-if="item.url && item.url.url && item.url.___type == 'other'">
<p
v-if="
item.url &&
item.url.url !== undefined &&
item.url.___type == 'other'
"
>
(如非同域名下则在小程序与公众号中无效)
</p>
</div>
</div>
</div>
</div>
<Button
v-if="
@ -475,8 +487,11 @@
@selectedGoodsData="selectedGoodsData"
></liliDialog>
<Modal width='800px' title="选择分类" v-model="enableSelectCategory">
<categoryTemplate v-if="enableSelectCategory" @selected="confirmCategory" />
<Modal width="800px" title="选择分类" v-model="enableSelectCategory">
<categoryTemplate
v-if="enableSelectCategory"
@selected="confirmCategory"
/>
</Modal>
<hotzone ref="hotzone" @changeZone="changeZone"></hotzone>
@ -496,7 +511,7 @@ export default {
components: {
ossManage,
hotzone,
categoryTemplate
categoryTemplate,
},
data() {
return {
@ -527,22 +542,25 @@ export default {
methods: {
//
confirmCategory(val) {
let data = {...this.res.options.list[0].titleWay[this.goodsSelectedIndex]}
let data = {
...this.res.options.list[0].titleWay[this.goodsSelectedIndex],
};
let callback = {
id: val[0].id,
name: val[0].name,
categoryIdWay:val[0].id
categoryIdWay: val[0].id,
};
data = {
...data,
bindCategory:callback
}
this.res.options.list[0].listWay = this.res.options.list[0].listWay.filter(item=>{
return item.___index != this.goodsSelectedIndex
})
this.res.options.list[0].titleWay[this.goodsSelectedIndex] = data
bindCategory: callback,
};
this.res.options.list[0].listWay =
this.res.options.list[0].listWay.filter((item) => {
return item.___index != this.goodsSelectedIndex;
});
this.res.options.list[0].titleWay[this.goodsSelectedIndex] = data;
console.log( this.res.options.list[0])
console.log(this.res.options.list[0]);
},
//
slotGoods(list, key, val) {
@ -621,7 +639,7 @@ export default {
},
//
selectedLink(val) {
this.selectedLinks.zoneInfo = []
this.selectedLinks.zoneInfo = [];
delete val.selected;
delete val.intro;
delete val.mobileIntro;
@ -644,20 +662,20 @@ export default {
});
this.res.options.list[0].listWay.push(...data);
//
this.res.options.list[0].titleWay[this.goodsSelectedIndex].bindCategory = ""
this.res.options.list[0].titleWay[this.goodsSelectedIndex].bindCategory =
"";
this.linkType = "";
},
//
bindGoodsId(val, index) {
this.selectedGoods = val;
this.goodsSelectedIndex = index
this.goodsSelectedIndex = index;
this.liliDialogFlag(true);
},
//
bindGoodsCategory(index, key) {
this.enableSelectCategory = true
this.goodsSelectedIndex = index
this.enableSelectCategory = true;
this.goodsSelectedIndex = index;
},
//
clickDrawer(item, index) {