Commit f63cfbf8 authored by 黄奎's avatar 黄奎
parents fbecac25 d5f91e2b
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
<el-table-column prop="name" label="商城名称" width="155"> <el-table-column prop="name" label="商城名称" width="155">
<template slot-scope="scope"> <template slot-scope="scope">
<p style="color:#409EFF;cursor:pointer;" <p style="color:#409EFF;cursor:pointer;"
@click="setMallBaseId(scope.row.MallBaseId,scope.row.MallName),CommonJump('mall',{})"> @click="setMallBaseId(scope.row.MallBaseId,scope.row.MallName),goHomePage()">
{{scope.row.MallName}}</p> {{scope.row.MallName}}</p>
<p>账号:{{scope.row.Account}}</p> <p>账号:{{scope.row.Account}}</p>
<p> <p>
...@@ -707,6 +707,15 @@ ...@@ -707,6 +707,15 @@
} }
}) })
}, },
//跳转至首页
goHomePage(){
this.$router.push({
name: 'mall',
query: {
FIndex:1
}
});
}
}, },
mounted() { mounted() {
this.TestMall(); this.TestMall();
......
<style> <style>
.custom_Header { .customPoster .custom_Header {
padding: 0 20px; padding: 0 20px;
height: 56px; height: 56px;
line-height: 56px; line-height: 56px;
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
margin-bottom: 15px; margin-bottom: 15px;
} }
.custom_Main { .customPoster .custom_Main {
display: flex; display: flex;
} }
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
overflow: hidden; overflow: hidden;
} }
.poster_User { .customPoster .poster_User {
margin-top: 96px; margin-top: 96px;
margin-bottom: 64px; margin-bottom: 64px;
} }
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
border-radius: 16px 16px 0 0; border-radius: 16px 16px 0 0;
} }
.goodsone_bg { .customPoster .goodsone_bg {
height: 310px; height: 310px;
margin: 0 auto; margin: 0 auto;
width: 702px; width: 702px;
...@@ -161,18 +161,18 @@ ...@@ -161,18 +161,18 @@
border-radius: 0 0 16px 16px; border-radius: 0 0 16px 16px;
} }
.goods-name { .goodsone_bg .goods-name {
padding: 28px 0; padding: 28px 0;
font-size: 34px; font-size: 34px;
color: #353535; color: #353535;
} }
.goods_price { .customPoster .goods_price {
padding-top: 50px; padding-top: 50px;
color: #ff4544; color: #ff4544;
} }
.goods_remark { .customPoster .goods_remark {
margin-top: 28px; margin-top: 28px;
color: #999999; color: #999999;
font-size: 28px; font-size: 28px;
......
...@@ -462,13 +462,18 @@ ...@@ -462,13 +462,18 @@
goLittlePrograme(){ goLittlePrograme(){
let routeData = this.$router.resolve({ let routeData = this.$router.resolve({
name: 'Fsetting', name: 'Fsetting',
query: {} query: {
FIndex:1
}
}); });
window.open(routeData.href, "_blank"); window.open(routeData.href, "_blank");
} }
}, },
mounted() { mounted() {
this.getMenuList(); this.getMenuList();
if(this.$route.query.FIndex){
this.CommonJump('zanIndex');
}
this.Height = document.documentElement.clientHeight - 60; this.Height = document.documentElement.clientHeight - 60;
//监听浏览器窗口变化  //监听浏览器窗口变化 
window.onresize = () => { window.onresize = () => {
......
...@@ -33,13 +33,13 @@ ...@@ -33,13 +33,13 @@
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
} }
.all-components .component-list { .all-components .Mycomponent-list {
margin-right: -2px; margin-right: -2px;
margin-top: -2px; margin-top: -2px;
flex-wrap: wrap; flex-wrap: wrap;
} }
.all-components .component-list .component-item { .all-components .Mycomponent-list .Mycomponent-item {
width: 100px; width: 100px;
height: 100px; height: 100px;
border: 0 solid #eeeeee; border: 0 solid #eeeeee;
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
cursor: pointer; cursor: pointer;
} }
.component-item:nth-child(3n) { .Mycomponent-item:nth-child(3n) {
border-right: 0 !important; border-right: 0 !important;
} }
...@@ -189,8 +189,8 @@ ...@@ -189,8 +189,8 @@
</el-form> </el-form>
<div class="component-group" v-for="(item,index) in allComponents" :key="index"> <div class="component-group" v-for="(item,index) in allComponents" :key="index">
<div class="component-group-name">{{item.GroupName}}</div> <div class="component-group-name">{{item.GroupName}}</div>
<div flex class="component-list"> <div flex class="Mycomponent-list">
<div class="component-item" v-for="(subItem,subIndex) in item.SubList" @click="addPlugin(subItem.Id)" <div class="Mycomponent-item" v-for="(subItem,subIndex) in item.SubList" @click="addPlugin(subItem.Id)"
:key="subIndex"> :key="subIndex">
<img :src="subItem.Icon" alt="" /> <img :src="subItem.Icon" alt="" />
<div>{{subItem.Name}}</div> <div>{{subItem.Name}}</div>
......
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