|
@@ -3,7 +3,7 @@
|
|
|
<div class="mcr-box">
|
|
|
<div class="mcr-head">
|
|
|
<!-- 预计出团量 -->
|
|
|
- <div style="display: flex;margin-bottom: 10px;">
|
|
|
+ <!-- <div style="display: flex;margin-bottom: 10px;">
|
|
|
<div style="width:24%">
|
|
|
预计出团:<span>{{ preDele }}</span>
|
|
|
</div>
|
|
@@ -16,7 +16,7 @@
|
|
|
<div style="width:24%">
|
|
|
已出团总量:<span>{{ groupNumber.finlishedDeleAll }}</span>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
|
|
|
|
|
|
<div>
|
|
@@ -76,28 +76,29 @@
|
|
|
</div>
|
|
|
<div class="mcr-table">
|
|
|
<el-table :data="PageList" border @select="handleSelect" style="width: 100%">
|
|
|
- <el-table-column prop="client" label="单位" width="140">
|
|
|
+ <el-table-column prop="weight" label="权重" width="50">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.weight == '393'">A</span>
|
|
|
+ <span v-else-if="scope.row.weight == '392'">B</span>
|
|
|
+ <span v-else-if="scope.row.weight == '391'">C</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="contact" label="联系人">
|
|
|
+ <el-table-column prop="client" label="单位" width="230">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="job" label="职位">
|
|
|
+ <el-table-column prop="contact" label="联系人" width="90">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="telephone" label="手机号">
|
|
|
+ <el-table-column prop="job" label="职位" width="110">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="phone" label="座机号">
|
|
|
+ <el-table-column prop="telephone" label="手机号" width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="location" label="所在区域">
|
|
|
+ <el-table-column prop="phone" label="座机号" width="120">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="birthday" label="生日">
|
|
|
+ <el-table-column prop="location" label="所在区域" width="130">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="weight" label="权重">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span v-if="scope.row.weight == '393'">A</span>
|
|
|
- <span v-else-if="scope.row.weight == '392'">B</span>
|
|
|
- <span v-else-if="scope.row.weight == '391'">C</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="ascribedDepartment" label="业务归属">
|
|
|
+ <!-- <el-table-column prop="birthday" label="生日">
|
|
|
+ </el-table-column> -->
|
|
|
+
|
|
|
+ <el-table-column prop="ascribedDepartment" label="业务归属" width="80">
|
|
|
<template slot-scope="scope">
|
|
|
<el-tooltip class="item" effect="dark" placement="top">
|
|
|
<span style="color:royalblue">查看</span>
|
|
@@ -110,7 +111,7 @@
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="ascribedUser" label="负责人">
|
|
|
+ <el-table-column prop="ascribedUser" label="负责人" width="85">
|
|
|
<template slot-scope="scope">
|
|
|
<!-- <el-tooltip class="item" effect="dark" placement="top">
|
|
|
<span style="color:royalblue">查看</span>
|
|
@@ -143,16 +144,15 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="preDele" label="预计出团">
|
|
|
+ <!-- <el-table-column prop="preDele" label="预计出团">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="finlishedDele" label="已出团">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作">
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column label="操作" width="200">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="primary" size="mini" @click="Edit(scope.row)">编
|
|
|
辑</el-button>
|
|
|
- <br>
|
|
|
- <br>
|
|
|
+
|
|
|
<el-button type="danger" size="mini" @click="Del(scope.row)">删
|
|
|
除</el-button>
|
|
|
</template>
|