diff --git a/src/views/demo/tiankongdi/curbspotcity/index.vue b/src/views/demo/tiankongdi/curbspotcity/index.vue index 2fc38d96..b99a990e 100644 --- a/src/views/demo/tiankongdi/curbspotcity/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/index.vue @@ -305,7 +305,15 @@ const getParams = () => { } Object.keys(params).forEach(key => { if(params[key] !== '' && params[key] !== null){ - result[key] = params[key] + if(key === 'nowStatus'){ + result[key] = params[key].join(',') + }else if(key === 'isOutTime'){ + if(params[key].length == 1){ + result[key] = params[key][0] + } + }else{ + result[key] = params[key] + } } }) return result diff --git a/src/views/demo/tiankongdi/curbspotcity/util.ts b/src/views/demo/tiankongdi/curbspotcity/util.ts index 81d20079..b8d63bd6 100644 --- a/src/views/demo/tiankongdi/curbspotcity/util.ts +++ b/src/views/demo/tiankongdi/curbspotcity/util.ts @@ -24,9 +24,9 @@ export const measureOptions = [ { label: '补办手续', value: 1}, ] export const mapStatusOptions = [ - { label: '待接收', value: 0 }, - { label: '待填报', value: 1 }, - { label: '待整改', value: 2 }, + { label: '待接收', value: '待接收' }, + { label: '待填报', value: '待填报' }, + { label: '待整改', value: '待整改' }, ] export const markTypeOptions = [ { label: '在建', value: '在建' }, @@ -45,12 +45,12 @@ export const patchSourceOptions = [ ] export const isOverdueOptions = [ { - label: '正常', - value: '正常', + label: '未超期', + value: 0, }, { label: '已超期', - value: '已超期', + value: 1, }, ] export const illegalTypeList = [