Commit 02c40ce3 authored by zhengke's avatar zhengke

修改

parent ea3a31a7
......@@ -605,6 +605,7 @@
})
}
this.mallMsg.BottomTagList = [];
this.mallMsg.TopNavBgColor='#FFFFFF';
this.mallMsg.BottomTagList = JSON.parse(JSON.stringify(this.defaultTagList));
}
},
......
......@@ -14,8 +14,7 @@
<div class="el-scrollbar__view">
<div>
<div class="el-image" style="display: block; width: 100%; height: 150px;">
<img :src="getIconLink(addMsg.HeadImagePath)"
class="el-image__inner">
<img :src="getIconLink(addMsg.HeadImagePath)" class="el-image__inner">
</div>
<div style="background: rgb(255, 255, 255); height: 40px; padding: 0px 14px;">
<div flex="cross:center"
......@@ -57,8 +56,7 @@
{{addMsg.ButtonText}}
</div>
<div class="el-image" style="display: block; width: 100%;">
<img :src="getIconLink(addMsg.BottomImagePath)"
class="el-image__inner">
<img :src="getIconLink(addMsg.BottomImagePath)" class="el-image__inner">
</div>
</div>
</div>
......@@ -201,8 +199,7 @@
<div flex="dir:left cross:center" style="flex-wrap: wrap;">
<div flex="dir:top cross:center main:center" class="text-center"
style="border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); width: 125px; height: 110px;">
<img
:src="getIconLink(addMsg.DistributionCommissionImagePath)"
<img :src="getIconLink(addMsg.DistributionCommissionImagePath)"
style="width: 35px; height: 35px;">
<div style="transform: scale(0.8); font-size: 16px; padding-top: 8px; color: rgb(102, 102, 102);">
{{addMsg.DistributionCommissionName}}
......@@ -210,33 +207,28 @@
</div>
<div flex="dir:top cross:center main:center" class="text-center"
style="border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); width: 125px; height: 110px;">
<img
:src="getIconLink(addMsg.DistributionOrderImagePath)"
style="width: 35px; height: 35px;">
<img :src="getIconLink(addMsg.DistributionOrderImagePath)" style="width: 35px; height: 35px;">
<div style="transform: scale(0.8); font-size: 16px; padding-top: 8px; color: rgb(102, 102, 102);">
{{addMsg.DistributionOrderName}}
</div>
</div>
<div flex="dir:top cross:center main:center" class="text-center"
style="border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); width: 125px; height: 110px;">
<img :src="getIconLink(addMsg.WithdrawDetialsImagePath)"
style="width: 35px; height: 35px;">
<img :src="getIconLink(addMsg.WithdrawDetialsImagePath)" style="width: 35px; height: 35px;">
<div style="transform: scale(0.8); font-size: 16px; padding-top: 8px; color: rgb(102, 102, 102);">
{{addMsg.WithdrawDetialsName}}
</div>
</div>
<div flex="dir:top cross:center main:center" class="text-center"
style="border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); width: 125px; height: 110px;">
<img :src="getIconLink(addMsg.MyTeamImagePath)"
style="width: 35px; height: 35px;">
<img :src="getIconLink(addMsg.MyTeamImagePath)" style="width: 35px; height: 35px;">
<div style="transform: scale(0.8); font-size: 16px; padding-top: 8px; color: rgb(102, 102, 102);">
{{addMsg.MyTeamName}}
</div>
</div>
<div flex="dir:top cross:center main:center" class="text-center"
style="border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); width: 125px; height: 110px;">
<img :src="getIconLink(addMsg.PromoteQRCodeImagePath)"
style="width: 35px; height: 35px;">
<img :src="getIconLink(addMsg.PromoteQRCodeImagePath)" style="width: 35px; height: 35px;">
<div style="transform: scale(0.8); font-size: 16px; padding-top: 8px; color: rgb(102, 102, 102);">
{{addMsg.PromoteQRCodeName}}
</div>
......@@ -656,8 +648,7 @@
<el-form-item label="图标" prop="Password2">
<el-button @click="openChangeDig(imgType)" size="small">选择文件</el-button>
<div>
<img style="width:80px;height:80px"
:src="getIconLink(iconMsg.Path)" alt="">
<img style="width:80px;height:80px" :src="getIconLink(iconMsg.Path)" alt="">
</div>
</el-form-item>
</el-form>
......@@ -680,8 +671,8 @@
return {
activeName: 'first',
addMsg: {},
HeadImagePath: '',
BottomImagePath: '',
HeadImagePath: this.domainManager().ImageUrl + '/Upload/Set/1587968479000.png',
BottomImagePath: this.domainManager().ImageUrl + '/Upload/Set/1587968716000.png',
imgType: 1,
changeState: false,
iconDig: false,
......@@ -694,8 +685,6 @@
},
created() {
this.getData();
this.GetPageList1();
this.GetPageList2();
},
mounted() {},
methods: {
......@@ -776,38 +765,6 @@
})
},
GetPageList1() {
let msg = {
Id: 1,
Name: '',
Type: 1,
Recycled: 1,
pageIndex: 1,
pageSize: 15,
GroupId: 0,
}
this.apipost("/api/product/GetMaterialInfoPageList", msg, res => {
this.total = res.data.data.count;
let data = res.data.data.pageData;
this.HeadImagePath = data[0].Path;
})
},
GetPageList2() {
let msg = {
Id: 2,
Name: '',
Type: 1,
Recycled: 1,
pageIndex: 1,
pageSize: 15,
GroupId: 0,
}
this.apipost("/api/product/GetMaterialInfoPageList", msg, res => {
this.total = res.data.data.count;
let data = res.data.data.pageData;
this.BottomImagePath = data[0].Path;
})
},
UploadImage(file) {
this.UploadFileToTencent(this.FileType().SetImg, file.file, res => {
if (res.resultCode == 1) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment