乱占耕地建房详情页用途分类显示文字
parent
5d96f01791
commit
0941844aa7
|
|
@ -98,7 +98,7 @@
|
|||
dataProcessing(props.showInfoData.is_zhanyongzdqy_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="用途分类">{{
|
||||
props.showInfoData.yongtufenlei
|
||||
getYongtufenleiSpan(props.showInfoData.yongtufenlei)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="产业类-分类">{{
|
||||
props.showInfoData.yongtufenlei_chy
|
||||
|
|
@ -208,6 +208,7 @@
|
|||
resultOptions,
|
||||
qitaUseTOOptions,
|
||||
} from '@/utils/global';
|
||||
import { getYongtufenleiSpan } from '@/components/farmland/util'
|
||||
|
||||
const { createMessage } = useMessage();
|
||||
const { VITE_GLOB_INFO_IMAGE_URL } = getAppEnvConfig();
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@
|
|||
dataProcessing(props.showInfoData.is_zhanyongzdqy_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="用途分类">{{
|
||||
props.showInfoData.yongtufenlei
|
||||
getYongtufenleiSpan(props.showInfoData.yongtufenlei)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="产业类-分类">{{
|
||||
props.showInfoData.yongtufenlei_chy
|
||||
|
|
@ -432,6 +432,7 @@
|
|||
resultOptions,
|
||||
qitaUseTOOptions,
|
||||
} from '@/utils/global';
|
||||
import { getYongtufenleiSpan } from '@/components/farmland/util'
|
||||
import { getLoadDroneCaseInfoDetail } from '@/api/farmland/index.ts';
|
||||
import ShowInfoModal from '@/components/farmland/ShowInfoModal/index.vue';
|
||||
import { dataProcessing ,dataProcessingCount} from '@/views/demo/tiankongdi/util.ts';
|
||||
|
|
|
|||
|
|
@ -47,4 +47,15 @@ export const usePageRequestUrl = {
|
|||
export const usePageGetSearchItem = {
|
||||
'patternfilling': ["year", "streetid", "time", "caseNo"],
|
||||
}
|
||||
export const smallInput:any = ['patternfilling']
|
||||
export const smallInput:any = ['patternfilling']
|
||||
export const yongtufenleiOptions = [
|
||||
{label: '产业类', value: 1},
|
||||
{label: '公共管理服务类', value: 2},
|
||||
{label: '设施农业类', value: 3},
|
||||
]
|
||||
export const getYongtufenleiSpan = (value) => {
|
||||
let record = yongtufenleiOptions.find(item => {
|
||||
return item.value == value
|
||||
})
|
||||
return record?.label
|
||||
}
|
||||
Loading…
Reference in New Issue