Merge branch 'master' of https://gitee.com/beijing_hongye_huicheng/lilishop-ui
commit
3e505a8a4e
|
@ -146,7 +146,7 @@ import { modelData } from "./config";
|
||||||
import ways from "@/views/lili-dialog/wap.js"; // 选择链接的类型
|
import ways from "@/views/lili-dialog/wap.js"; // 选择链接的类型
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
ossManage
|
ossManage,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -179,16 +179,18 @@ export default {
|
||||||
},
|
},
|
||||||
// 回调的商品信息
|
// 回调的商品信息
|
||||||
selectedGoodsData(val) {
|
selectedGoodsData(val) {
|
||||||
|
|
||||||
if (!val) return false;
|
if (!val) return false;
|
||||||
val.forEach((item) => {
|
let data = val.map((item) => {
|
||||||
delete item.selected;
|
delete item.selected;
|
||||||
item.img = item.thumbnail;
|
return {
|
||||||
item.title = item.goodsName;
|
img: item.thumbnail,
|
||||||
item.type = this.selectedGoods.title;
|
title: item.goodsName,
|
||||||
|
type: this.selectedGoods.title,
|
||||||
|
...item
|
||||||
|
};
|
||||||
});
|
});
|
||||||
this.res.options.list[0].listWay = this.res.options.list[0].listWay.concat(
|
this.res.options.list[0].listWay.push(...data);
|
||||||
val
|
|
||||||
);
|
|
||||||
this.linkType = "";
|
this.linkType = "";
|
||||||
},
|
},
|
||||||
// 绑定商品
|
// 绑定商品
|
||||||
|
|
|
@ -25,6 +25,6 @@ export default {
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
img {
|
img {
|
||||||
width: 67px;
|
width: 67px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -28,6 +28,6 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
img{
|
img{
|
||||||
width: 84px;
|
width: 84px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -24,6 +24,6 @@ export default {
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
}
|
}
|
||||||
img{
|
img{
|
||||||
width: 111px;
|
width: 111px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -23,7 +23,6 @@ export default {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 110px;
|
height: 110px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
}
|
}
|
||||||
.flex-item {
|
.flex-item {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
|
@ -387,11 +387,7 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.ivu-form-item {
|
|
||||||
margin-bottom: 14px;
|
|
||||||
vertical-align: top;
|
|
||||||
zoom: 1;
|
|
||||||
}
|
|
||||||
.search-form {
|
.search-form {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue