Commit 53d5e291 authored by zhengke's avatar zhengke

修改

parent e6c10e7c
......@@ -13,6 +13,7 @@ export default {
<style>
@import "//at.alicdn.com/t/font_1769104_qg9btfnng5.css";
@import "./assets/css/common.css";
@import "./assets/css/zkcss.css";
html,
body {
margin: 0;
......
......@@ -88,7 +88,7 @@
</el-table-column>
<el-table-column prop="name" label="商城名称" width="155">
<template slot-scope="scope">
<p style="color:#409EFF">{{scope.row.MallName}}</p>
<p style="color:#409EFF;cursor:pointer;" @click="setMallBaseId(scope.row.MallBaseId),CommonJump('mall',{})">{{scope.row.MallName}}</p>
<p>账号:{{scope.row.Account}}</p>
<p>
手机:<span style="color:rgb(144, 147, 153)">{{scope.row.MobilePhone}}</span>
......@@ -120,10 +120,10 @@
</p>
<div style="margin-bottom:20px;padding: 15px 20px;">
<div class="searchInput" style="width:250px;">
<el-input style="display:inline-block;width:225px;" placeholder="请输入商城名称或用户名搜索" v-model="val"
<el-input style="display:inline-block;width:225px;" @keyup.enter.native="qMsg.pageIndex=1,getMiniPrograme()" placeholder="请输入商城名称或用户名搜索" v-model="val"
size="small" clearable>
</el-input>
<span class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span>
<span class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span>
</div>
</div>
......@@ -133,7 +133,7 @@
</el-table-column>
<el-table-column prop="name" label="商城名称" width="155">
<template slot-scope="scope">
<p style="color:#409EFF">{{scope.row.MallName}}</p>
<p style="color:#409EFF;">{{scope.row.MallName}}</p>
<p>账号:{{scope.row.Account}}</p>
<p>
手机:<span style="color:rgb(144, 147, 153)">{{scope.row.MobilePhone}}</span>
......@@ -474,6 +474,12 @@
this.Info(res.data.message);
}
})
},
//点击商品名称设置setMallBaseId
setMallBaseId(Id){
let userInfo = this.getLocalStorage();
userInfo.MallBaseId = Id;
localStorage.mall_userInfo = JSON.stringify(userInfo);
}
},
mounted() {
......
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