0227海宁pad走访+行政区划编码定时任务修改
This commit is contained in:
@@ -14,7 +14,7 @@ VUE_APP_MOCK_API = '/mock-api'
|
||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||
|
||||
# 设置是否启动Mock
|
||||
VUE_APP_MOCK= true
|
||||
VUE_APP_MOCK= false
|
||||
|
||||
#测试地址
|
||||
VUE_APP_STAGE_URL = 'http://158.234.96.76:8080'
|
||||
|
||||
@@ -81,6 +81,35 @@
|
||||
<el-option label="签退时间异常" value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="营销方式">
|
||||
<el-select
|
||||
v-model="searchForm.marketingWay"
|
||||
placeholder="请选择"
|
||||
@blur="handleSearch"
|
||||
clearable
|
||||
@clear="handleSearch"
|
||||
>
|
||||
<el-option label="实地" value="0"></el-option>
|
||||
<el-option label="电话" value="1"></el-option>
|
||||
<el-option label="短信" value="2"></el-option>
|
||||
<el-option label="拜访未触达" value="3"></el-option>
|
||||
<el-option label="其他" value="4"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="走访结果">
|
||||
<el-select
|
||||
v-model="searchForm.interRes"
|
||||
placeholder="请选择"
|
||||
@blur="handleSearch"
|
||||
clearable
|
||||
@clear="handleSearch"
|
||||
>
|
||||
<el-option label="已走访" value="0"></el-option>
|
||||
<el-option label="过期未走访" value="1"></el-option>
|
||||
<el-option label="走访未触达" value="2"></el-option>
|
||||
<el-option label="待走访" value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
@@ -238,6 +267,35 @@
|
||||
width="150px"
|
||||
v-if="columns[14].visible"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
align="left"
|
||||
prop="marketingWay"
|
||||
label="营销方式"
|
||||
show-overflow-tooltip
|
||||
width="120px"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.marketingWay == '0'">实地</span>
|
||||
<span v-else-if="scope.row.marketingWay == '1'">电话</span>
|
||||
<span v-else-if="scope.row.marketingWay == '2'">短信</span>
|
||||
<span v-else-if="scope.row.marketingWay == '3'">拜访未触达</span>
|
||||
<span v-else-if="scope.row.marketingWay == '4'">其他</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
align="left"
|
||||
prop="interRes"
|
||||
label="走访结果"
|
||||
show-overflow-tooltip
|
||||
width="120px"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.interRes == '0'">已走访</span>
|
||||
<span v-else-if="scope.row.interRes == '1'">过期未走访</span>
|
||||
<span v-else-if="scope.row.interRes == '2'">走访未触达</span>
|
||||
<span v-else-if="scope.row.interRes == '3'">待走访</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
align="left"
|
||||
prop="abnormalVisitTag"
|
||||
@@ -313,7 +371,9 @@ export default {
|
||||
visTime: "",
|
||||
custIdc: "",
|
||||
socialCreditCode: '',
|
||||
abnormalVisitTag: ''
|
||||
abnormalVisitTag: '',
|
||||
marketingWay: '',
|
||||
interRes: ''
|
||||
},
|
||||
campsourceList: [],
|
||||
columns: [
|
||||
@@ -405,6 +465,8 @@ export default {
|
||||
custIdc: this.searchForm.custIdc,
|
||||
socialCreditCode: this.searchForm.socialCreditCode,
|
||||
abnormalVisitTag: this.searchForm.abnormalVisitTag,
|
||||
marketingWay: this.searchForm.marketingWay,
|
||||
interRes: this.searchForm.interRes,
|
||||
pageSize: this.pageSize,
|
||||
pageNum: this.pageNum,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user