Commit 80a96668 authored by 黄奎's avatar 黄奎

新增联系人,联系电话

parent 486449cf
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
<div class="head-title"> <div class="head-title">
载体管理 载体管理
<div> <div>
<el-button @click="checkAll=false,dialogVisible = true" style="float: right; margin-top: -25px" size="small" type="primary"> <el-button @click="checkAll=false,dialogVisible = true" style="float: right; margin-top: -25px" size="small"
type="primary">
批量导出 批量导出
</el-button> </el-button>
</div> </div>
...@@ -116,8 +117,15 @@ ...@@ -116,8 +117,15 @@
</el-table-column> </el-table-column>
<el-table-column prop="CarrierSize" label="商业体量"> </el-table-column> <el-table-column prop="CarrierSize" label="商业体量"> </el-table-column>
<el-table-column prop="LayersNum" width="150" label="商业层数"></el-table-column> <el-table-column prop="LayersNum" width="150" label="商业层数"></el-table-column>
<el-table-column prop="ContactName" label="联系人" width="100">
<template slot-scope="scope">
{{ scope.row.ContactName }}
<br />
{{ scope.row.ContactPhone }}
</template>
</el-table-column>
<el-table-column prop="UserName" width="100" label="认证用户"></el-table-column> <el-table-column prop="UserName" width="100" label="认证用户"></el-table-column>
<el-table-column label="操作" width="100"> <el-table-column label="操作" width="100" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip class="item" effect="dark" content="修改" placement="top"> <el-tooltip class="item" effect="dark" content="修改" placement="top">
<img @click="CommonJump('editVehicle', { ID: scope.row.ID })" src="../../assets/img/userman/edit.png" <img @click="CommonJump('editVehicle', { ID: scope.row.ID })" src="../../assets/img/userman/edit.png"
...@@ -184,7 +192,7 @@ ...@@ -184,7 +192,7 @@
EndOpenTime: "", // 开业截止时间 EndOpenTime: "", // 开业截止时间
ExcelEnumIds: [], ExcelEnumIds: [],
UserId: 0, UserId: 0,
RandomNum:0,//随机数 RandomNum: 0, //随机数
}, },
usermsg: { usermsg: {
pageIndex: 1, pageIndex: 1,
...@@ -268,11 +276,11 @@ ...@@ -268,11 +276,11 @@
downLoadCarrier() { downLoadCarrier() {
this.msg.ExcelEnumIds = this.checkedCities; this.msg.ExcelEnumIds = this.checkedCities;
let msg = JSON.parse(JSON.stringify(this.msg)); let msg = JSON.parse(JSON.stringify(this.msg));
msg.RandomNum=Math.random(); msg.RandomNum = Math.random();
if (!msg.Id || msg.Id == "") { if (!msg.Id || msg.Id == "") {
msg.Id = 0; msg.Id = 0;
} }
this.downLoadLoading = true; this.downLoadLoading = true;
this.loadingText = "正在生成载体文件,请勿关闭或刷新页面..."; this.loadingText = "正在生成载体文件,请勿关闭或刷新页面...";
var that = this; var that = this;
this.download_timer = setInterval(function () { this.download_timer = setInterval(function () {
......
This diff is collapsed.
...@@ -151,6 +151,13 @@ ...@@ -151,6 +151,13 @@
</el-table-column> </el-table-column>
<el-table-column prop="CustomerType" label="客群定位" width="160"> <el-table-column prop="CustomerType" label="客群定位" width="160">
</el-table-column> </el-table-column>
<el-table-column prop="ContactName" label="联系人" width="100">
<template slot-scope="scope">
{{ scope.row.ContactName }}
<br />
{{ scope.row.ContactPhone }}
</template>
</el-table-column>
<el-table-column prop="UserName" width="100" label="认证用户"></el-table-column> <el-table-column prop="UserName" width="100" label="认证用户"></el-table-column>
<el-table-column fixed="right" label="操作" width="120"> <el-table-column fixed="right" label="操作" width="120">
<template slot-scope="scope" v-if="!readonly"> <template slot-scope="scope" v-if="!readonly">
...@@ -227,7 +234,7 @@ ...@@ -227,7 +234,7 @@
ExcelEnumIds: [], ExcelEnumIds: [],
UserId: 0, //用户认证 UserId: 0, //用户认证
PrizeId: 0, PrizeId: 0,
RandomNum:0,//随机数 RandomNum: 0, //随机数
}, },
usermsg: { usermsg: {
pageIndex: 1, pageIndex: 1,
...@@ -303,7 +310,7 @@ ...@@ -303,7 +310,7 @@
downloadBrandFile() { downloadBrandFile() {
this.msg.ExcelEnumIds = this.checkedCities; this.msg.ExcelEnumIds = this.checkedCities;
let msg = JSON.parse(JSON.stringify(this.msg)); let msg = JSON.parse(JSON.stringify(this.msg));
msg.RandomNum=Math.random(); msg.RandomNum = Math.random();
if (!msg.Id || msg.Id == "") { if (!msg.Id || msg.Id == "") {
msg.Id = 0; msg.Id = 0;
} }
...@@ -415,7 +422,7 @@ ...@@ -415,7 +422,7 @@
}, },
getBrandClassList() { getBrandClassList() {
this.apipost("/api/Trade/GetBrandClassList", { this.apipost("/api/Trade/GetBrandClassList", {
BrandCategory:3 BrandCategory: 3
}, (res) => { }, (res) => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.BrandClassList = res.data.data; this.BrandClassList = res.data.data;
......
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
} }
.offlineIndex .mainRightLeft { .offlineIndex .mainRightLeft {
width: 110px; width: 170px;
height: 60px; height: 60px;
line-height: 62px; line-height: 62px;
text-align: center; text-align: center;
......
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