|
@@ -137,7 +137,6 @@
|
|
|
label="项目名称"
|
|
|
align="center"
|
|
|
prop="tProjectPool.projectName"
|
|
|
- width="200"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.tProjectPool.projectName">
|
|
@@ -145,76 +144,57 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="跟进人"
|
|
|
- width="150"
|
|
|
- align="center"
|
|
|
- prop="upPerson"
|
|
|
- >
|
|
|
+ <el-table-column label="跟进人" align="center" prop="upPerson">
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.upPerson">
|
|
|
{{ scope.row.upPerson }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="跟进方式" width="150" align="center" prop="upWay">
|
|
|
+ <el-table-column label="跟进方式" width="120" align="center" prop="upWay">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.up_way" :value="scope.row.upWay" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
- <el-table-column
|
|
|
- label="跟进内容"
|
|
|
- width="300"
|
|
|
- align="center"
|
|
|
- prop="upContent"
|
|
|
- >
|
|
|
+ <el-table-column label="公司联系人" align="center" prop="contacts">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div :title="scope.row.contacts">
|
|
|
+ {{ scope.row.contacts }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="跟进内容" align="center" prop="upContent">
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.upContent">
|
|
|
{{ scope.row.upContent }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="跟进日期"
|
|
|
- align="center"
|
|
|
- prop="realityUpDate"
|
|
|
- width="120"
|
|
|
- >
|
|
|
+ <el-table-column label="跟进日期" align="center" prop="realityUpDate">
|
|
|
<template slot-scope="scope">
|
|
|
<span :title="scope.row.realityUpDate">{{
|
|
|
parseTime(scope.row.realityUpDate, "{y}-{m}-{d}")
|
|
|
}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="创建人"
|
|
|
- width="120"
|
|
|
- align="center"
|
|
|
- prop="createBy"
|
|
|
- >
|
|
|
+ <el-table-column label="创建人" align="center" prop="createBy">
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.createBy">
|
|
|
{{ scope.row.createBy }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="创建时间"
|
|
|
- align="center"
|
|
|
- prop="createTime"
|
|
|
- width="160"
|
|
|
- >
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime">
|
|
|
<template slot-scope="scope">
|
|
|
<div :title="scope.row.createTime">
|
|
|
{{ scope.row.createTime }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <!-- fixed="right" -->
|
|
|
<el-table-column
|
|
|
label="操作"
|
|
|
width="120"
|
|
|
- fixed="right"
|
|
|
align="center"
|
|
|
class-name="small-padding fixed-width"
|
|
|
>
|