|
@@ -20,23 +20,28 @@
|
|
|
|
|
|
|
|
|
<div>
|
|
|
- <el-select v-model="principalSel" clearable placeholder="负责人">
|
|
|
+ <el-select v-model="principalSel" clearable placeholder="负责人" style="width
|
|
|
+ :18%">
|
|
|
<el-option v-for="item in principalList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-select v-model="territorySel" clearable placeholder="省 域">
|
|
|
+ <el-select v-model="territorySel" clearable placeholder="省 域" style="width
|
|
|
+ :18%">
|
|
|
<el-option v-for="item in territoryList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-select v-model="clientLvSel" clearable placeholder="客户级别">
|
|
|
+ <el-select v-model="clientLvSel" clearable placeholder="客户级别" style="width
|
|
|
+ :18%">
|
|
|
<el-option v-for="item in clientLvList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-select v-model="clientTypeSel" clearable placeholder="客户类别">
|
|
|
+ <el-select v-model="clientTypeSel" clearable placeholder="客户类别" style="width
|
|
|
+ :18%">
|
|
|
<el-option v-for="item in clientTypeList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-select v-model="businessClassSel" clearable placeholder="业务分类">
|
|
|
+ <el-select v-model="businessClassSel" clearable placeholder="业务分类" style="width
|
|
|
+ :18%">
|
|
|
<el-option v-for="item in businessClassList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
@@ -44,15 +49,15 @@
|
|
|
</div>
|
|
|
<!-- textbox框 -->
|
|
|
<div style="display: flex;margin-top: 10px;position: relative;">
|
|
|
- <div style="width: 29%;">
|
|
|
+ <div style="width: 30%;">
|
|
|
<el-input v-model="inputLXR" placeholder="联系人"></el-input>
|
|
|
</div>
|
|
|
|
|
|
- <div style="width: 29%;">
|
|
|
+ <div style="width: 30%;">
|
|
|
<el-input v-model="inputDQ" placeholder="地区"></el-input>
|
|
|
</div>
|
|
|
|
|
|
- <div style="width: 29%;">
|
|
|
+ <div style="width: 30%;">
|
|
|
<el-input v-model="inputDW" placeholder="单位"></el-input>
|
|
|
</div>
|
|
|
|
|
@@ -102,7 +107,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="ascribedUser" label="负责人">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-tooltip class="item" effect="dark" placement="top">
|
|
|
+ <!-- <el-tooltip class="item" effect="dark" placement="top">
|
|
|
<span style="color:royalblue">查看</span>
|
|
|
<div slot="content">
|
|
|
<div v-for="yw in scope.row.ascribedUser"
|
|
@@ -110,7 +115,10 @@
|
|
|
{{ yw.cnName }}
|
|
|
</div>
|
|
|
</div>
|
|
|
- </el-tooltip>
|
|
|
+ </el-tooltip> -->
|
|
|
+ <div v-for="yw in scope.row.ascribedUser" style="text-align: center;">
|
|
|
+ {{ yw.cnName }}
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="remark" label="备注">
|
|
@@ -228,7 +236,6 @@ export default {
|
|
|
}
|
|
|
}).then(resp => {
|
|
|
if (resp.data.code == 200) {
|
|
|
- console.log(resp.data);
|
|
|
if (resp.data.data == null) {
|
|
|
that.PageList = [];
|
|
|
that.total = 0;
|
|
@@ -244,6 +251,12 @@ export default {
|
|
|
that.groupNumber = resp.data.data.groupNumber; //团组出团总数
|
|
|
}
|
|
|
that.loading = false;
|
|
|
+
|
|
|
+ } else if (resp.data.code == 400) {
|
|
|
+ that.PageList = [];
|
|
|
+ that.total = 0;
|
|
|
+ that.loading = false;
|
|
|
+ that.$message.error('暂无数据!');
|
|
|
}
|
|
|
|
|
|
}).catch(err => {
|