bug
This commit is contained in:
@@ -28,17 +28,17 @@
|
||||
<ai-search-bar bottomBorder>
|
||||
<template #left>
|
||||
<ai-select
|
||||
v-model="search.gatewayId"
|
||||
v-model="search.riskStatus"
|
||||
clearable
|
||||
placeholder="请选择风险状态"
|
||||
:selectList="dict.getDict('EP_registerInfoType')"
|
||||
:selectList="dict.getDict('EP_riskStatus')"
|
||||
@change="search.current = 1, getList()">
|
||||
</ai-select>
|
||||
<ai-select
|
||||
v-model="search.gatewayId"
|
||||
v-model="search.source"
|
||||
clearable
|
||||
placeholder="请选择数据来源"
|
||||
:selectList="dict.getDict('EP_registerInfoType')"
|
||||
:selectList="dict.getDict('EP_source')"
|
||||
@change="search.current = 1, getList()">
|
||||
</ai-select>
|
||||
<el-date-picker
|
||||
@@ -114,10 +114,12 @@
|
||||
name: '',
|
||||
gatewayId: '',
|
||||
status: '',
|
||||
riskStatus: '',
|
||||
arriveAreaId: '',
|
||||
queryBeginTime: '',
|
||||
queryEndTime: '',
|
||||
infoType: 1
|
||||
infoType: 1,
|
||||
source: ''
|
||||
},
|
||||
info: {},
|
||||
colConfigs: [
|
||||
@@ -135,12 +137,15 @@
|
||||
align: 'center',
|
||||
label: '到达地区'
|
||||
},
|
||||
{ prop: 'companionCount', align: 'center', label: '数据来源' },
|
||||
{ prop: 'source',
|
||||
align: 'center',
|
||||
label: '数据来源',
|
||||
formart: v => this.dict.getLabel('EP_riskStatus', v) },
|
||||
{
|
||||
prop: 'riskLevel',
|
||||
prop: 'riskStatus',
|
||||
align: 'center',
|
||||
label: '风险状态',
|
||||
formart: v => this.dict.getLabel('EP_riskLevel', v)
|
||||
formart: v => this.dict.getLabel('EP_riskStatus', v)
|
||||
}
|
||||
],
|
||||
ids: [],
|
||||
@@ -163,7 +168,7 @@
|
||||
if (res.code == 0) {
|
||||
this.search.arriveAreaId = res.data
|
||||
this.getTotalInfo()
|
||||
this.dict.load(['EP_riskLevel', 'EP_handleType', 'modeType']).then(() => {
|
||||
this.dict.load(['EP_riskLevel', 'EP_handleType', 'modeType', 'EP_riskStatus', 'EP_source']).then(() => {
|
||||
this.getList()
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user