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

新增联系人,联系电话

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