重点问题图斑列表修改
parent
a071adcbc3
commit
0d79898251
|
|
@ -47,6 +47,14 @@ export const measureOptions = [
|
|||
{ label: '拆除复耕', value: 0 },
|
||||
{ label: '补办手续', value: 1 },
|
||||
];
|
||||
export const keyIssuesIMeasureOptions = [
|
||||
{ label: '拆除', value: 1 },
|
||||
{ label: '拆除复耕', value: 2 },
|
||||
]
|
||||
export const keyIssuesIIMeasureOptions = [
|
||||
{ label: '拆除', value: 1 },
|
||||
{ label: '没收', value: 2 },
|
||||
]
|
||||
export const mapStatusOptions = [
|
||||
{ label: '待接收', value: '待接收' },
|
||||
{ label: '待填报', value: '待填报' },
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@
|
|||
</a-image-preview-group>
|
||||
</div>
|
||||
</a-descriptions-item> -->
|
||||
<a-descriptions-item label="现场核查照片" :span="2">
|
||||
<!-- <a-descriptions-item label="现场核查照片" :span="2">
|
||||
<div class="image-div">
|
||||
<a-image-preview-group
|
||||
:preview="{
|
||||
|
|
@ -276,7 +276,7 @@
|
|||
</template>
|
||||
</a-image-preview-group>
|
||||
</div>
|
||||
</a-descriptions-item>
|
||||
</a-descriptions-item> -->
|
||||
</a-descriptions>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
import {
|
||||
mapTypeOptions,
|
||||
illegalTypeOptions,
|
||||
measureOptions,
|
||||
keyIssuesIMeasureOptions,
|
||||
mapStatusOptions,
|
||||
markTypeOptions,
|
||||
illegalTypeList,
|
||||
|
|
@ -554,7 +554,7 @@
|
|||
result = illegalTypeList;
|
||||
break;
|
||||
case 'measure_name':
|
||||
result = measureOptions;
|
||||
result = keyIssuesIMeasureOptions;
|
||||
break;
|
||||
case 'result_name':
|
||||
result = resultOptions;
|
||||
|
|
|
|||
|
|
@ -82,10 +82,10 @@ export const columns: BasicColumn[] = [
|
|||
title: '实际用途',
|
||||
dataIndex: 'actualuseto',
|
||||
},
|
||||
{
|
||||
title: '违法类型',
|
||||
dataIndex: 'weifaleixing',
|
||||
},
|
||||
// {
|
||||
// title: '违法类型',
|
||||
// dataIndex: 'weifaleixing',
|
||||
// },
|
||||
{
|
||||
title: '整改措施',
|
||||
dataIndex: 'measurename',
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@
|
|||
</a-image-preview-group>
|
||||
</div>
|
||||
</a-descriptions-item> -->
|
||||
<a-descriptions-item label="现场核查照片" :span="2">
|
||||
<!-- <a-descriptions-item label="现场核查照片" :span="2">
|
||||
<div class="image-div">
|
||||
<a-image-preview-group
|
||||
:preview="{
|
||||
|
|
@ -261,7 +261,7 @@
|
|||
</template>
|
||||
</a-image-preview-group>
|
||||
</div>
|
||||
</a-descriptions-item>
|
||||
</a-descriptions-item> -->
|
||||
</a-descriptions>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
|
|
@ -283,9 +283,9 @@
|
|||
const { VITE_GLOB_INFO_IMAGE_URL } = getAppEnvConfig();
|
||||
|
||||
import {
|
||||
mapTypeOptions,
|
||||
keyIssuesIIMapTypeOptions,
|
||||
illegalTypeOptions,
|
||||
measureOptions,
|
||||
keyIssuesIIMeasureOptions,
|
||||
mapStatusOptions,
|
||||
markTypeOptions,
|
||||
illegalTypeList,
|
||||
|
|
@ -537,16 +537,13 @@
|
|||
let label = '';
|
||||
switch (type) {
|
||||
case 'is_illegal':
|
||||
result = mapTypeOptions;
|
||||
result = keyIssuesIIMapTypeOptions;
|
||||
break;
|
||||
case 'weifaleixing':
|
||||
result = illegalTypeList;
|
||||
break;
|
||||
case 'measure_name':
|
||||
result = [
|
||||
{ label: '拆除', value: '1'},
|
||||
{ label: '没收', value: '2'},
|
||||
]
|
||||
result = keyIssuesIIMeasureOptions
|
||||
break;
|
||||
case 'result_name':
|
||||
result = resultOptions;
|
||||
|
|
|
|||
|
|
@ -82,10 +82,10 @@ export const columns: BasicColumn[] = [
|
|||
title: '实际用途',
|
||||
dataIndex: 'actualuseto',
|
||||
},
|
||||
{
|
||||
title: '违法类型',
|
||||
dataIndex: 'weifaleixing',
|
||||
},
|
||||
// {
|
||||
// title: '违法类型',
|
||||
// dataIndex: 'weifaleixing',
|
||||
// },
|
||||
{
|
||||
title: '整改措施',
|
||||
dataIndex: 'measurename',
|
||||
|
|
|
|||
Loading…
Reference in New Issue