|
|
@@ -140,12 +140,16 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="意向度">
|
|
|
- <div class="time-range">
|
|
|
- <el-input-number v-model="queryParams.intentionDegreeGt" placeholder="最小值" size="small"
|
|
|
- style="width: 130px" :min="0" :max="100"/>
|
|
|
- <span class="range-separator">-</span>
|
|
|
- <el-input-number v-model="queryParams.intentionDegreelt" placeholder="最大值" size="small"
|
|
|
- style="width: 130px" :min="0" :max="100"/>
|
|
|
+ <div >
|
|
|
+ <el-select style="width:220px" v-model="queryParams.intentionDegree" placeholder="请选择意向度" clearable size="small">
|
|
|
+ <el-option label="A" value="A" />
|
|
|
+ <el-option label="B" value="B" />
|
|
|
+ <el-option label="C" value="C" />
|
|
|
+ <el-option label="D" value="D" />
|
|
|
+ <el-option label="E" value="E" />
|
|
|
+ <el-option label="F" value="F" />
|
|
|
+
|
|
|
+ </el-select>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
@@ -266,7 +270,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="意向度" align="center" prop="intentionDegree">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.intentionDegree != null ? scope.row.intentionDegree + '%' : '' }}
|
|
|
+ {{ scope.row.intentionDegree != null ? scope.row.intentionDegree : '' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
@@ -812,6 +816,7 @@ export default {
|
|
|
this.queryParams.attritionLevel = null;
|
|
|
this.queryParams.intentionDegreeGt = null;
|
|
|
this.queryParams.intentionDegreelt = null;
|
|
|
+ this.queryParams.intentionDegree = null;
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|