|
|
@@ -124,7 +124,7 @@ |
|
|
|
type="textarea" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="解决方案:" prop="solution"> |
|
|
|
<el-form-item label="解决方案:" prop="solution" v-if="typeOption === '下黑'"> |
|
|
|
<el-input |
|
|
|
maxlength="200" |
|
|
|
v-trim |
|
|
@@ -178,8 +178,8 @@ import { getCache } from '@/utils/cache' |
|
|
|
const VEHICLE_COLOR_TYPE = computed(() => { |
|
|
|
return $storeinitData.state.dictData['VEHICLE_COLOR_TYPE'] || [] |
|
|
|
}) |
|
|
|
const DATA_SOURCE = computed(() => { |
|
|
|
return $storeinitData.state.dictData['DATA_SOURCE'] || [] |
|
|
|
const SOURCE_TYPE = computed(() => { |
|
|
|
return $storeinitData.state.dictData['SOURCE_TYPE'] || [] |
|
|
|
}) |
|
|
|
|
|
|
|
//或取路由传入过来的对象数据 |
|
|
@@ -286,6 +286,15 @@ const field = ref({ |
|
|
|
type: 'input', |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
prop: 'agencyId', |
|
|
|
label: '渠道编号', |
|
|
|
width: 170, |
|
|
|
form: { |
|
|
|
width: '45%', |
|
|
|
type: 'input', |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
prop: 'type', |
|
|
|
label: '类型', |
|
|
@@ -352,7 +361,7 @@ const field = ref({ |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
prop: 'creationTime', |
|
|
|
prop: 'createTime', |
|
|
|
label: '下黑时间', |
|
|
|
width: '170px', |
|
|
|
funRuleStarts: true, |
|
|
@@ -394,17 +403,17 @@ const field = ref({ |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '下黑来源', |
|
|
|
prop: 'loginSource', |
|
|
|
listData: DATA_SOURCE, |
|
|
|
prop: 'sourceIn', |
|
|
|
listData: SOURCE_TYPE, |
|
|
|
hide: true, |
|
|
|
form: { |
|
|
|
width: '45%', |
|
|
|
type: 'select', |
|
|
|
listData: DATA_SOURCE, |
|
|
|
listData: SOURCE_TYPE, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
prop: 'createTime', |
|
|
|
prop: 'releaseTime', |
|
|
|
label: '反白时间', |
|
|
|
width: '170px', |
|
|
|
funRuleStarts: true, |
|
|
@@ -446,13 +455,13 @@ const field = ref({ |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '反白来源', |
|
|
|
prop: 'loginSourceHis', |
|
|
|
listData: DATA_SOURCE, |
|
|
|
prop: 'sourceOut', |
|
|
|
listData: SOURCE_TYPE, |
|
|
|
hide: true, |
|
|
|
form: { |
|
|
|
width: '45%', |
|
|
|
type: 'select', |
|
|
|
listData: DATA_SOURCE, |
|
|
|
listData: SOURCE_TYPE, |
|
|
|
}, |
|
|
|
}, |
|
|
|
], |
|
|
@@ -534,6 +543,9 @@ function submitClick() { |
|
|
|
channelType:2, |
|
|
|
staffId:cacheAccessToken['openId'] |
|
|
|
} |
|
|
|
if(params.status == 2){ |
|
|
|
api = '/managew/api/bls/card/cardOut' |
|
|
|
} |
|
|
|
console.log(params, 'paramsparams') |
|
|
|
BaseService.post(api, params).then((res: any) => { |
|
|
|
if (res && res.statusCode === 0) { |
|
|
@@ -574,11 +586,11 @@ function getList() { |
|
|
|
(res: any) => { |
|
|
|
if (res && res.statusCode === 0) { |
|
|
|
let bizContent = res.data |
|
|
|
let data = bizContent.data || [] |
|
|
|
let data = bizContent.results || [] |
|
|
|
tableData.value = data |
|
|
|
console.log('===bizContentData', bizContent) |
|
|
|
crudRef.value.tableLoding = false |
|
|
|
field.value.paging.total = bizContent.totalCount |
|
|
|
// field.value.paging.total = bizContent.totalCount |
|
|
|
} else { |
|
|
|
crudRef.value.tableLoding = false |
|
|
|
ElMessage.error(res.message) |