石超 2025-07-30 15:54:29 +08:00
commit 7a35c53ab8
3 changed files with 25 additions and 3 deletions

View File

@ -174,6 +174,28 @@ export const qitaUseTOOptions = [
value: '5', value: '5',
}, },
]; ];
export const newQitaUseTOOptions = [
{
label: '光伏用地备案',
value: '1',
},
{
label: '设施农业用地备案',
value: '2',
},
{
label: '农村道路',
value: '3',
},
{
label: '实地未变化',
value: '4',
},
{
label: '临时用地备案',
value: '5',
},
]
export const nowStatusOptions = [ export const nowStatusOptions = [
{ label: '待接收', value: '待接收' }, { label: '待接收', value: '待接收' },
{ label: '待填报', value: '待填报' }, { label: '待填报', value: '待填报' },

View File

@ -90,7 +90,7 @@
<a-button type="primary" style="margin-right: 25px" @click="prevData"></a-button> <a-button type="primary" style="margin-right: 25px" @click="prevData"></a-button>
<a-button type="primary" @click="nextData"></a-button> <a-button type="primary" @click="nextData"></a-button>
</div> </div>
<NewShowInfoModal v-if="(showInfoData?.biaozhu && [0,1,2].includes(showInfoData?.biaozhu))" :showInfoData="showInfoData" /> <NewShowInfoModal v-if="(showInfoData.hasOwnProperty('biaozhu') && [0, 1, 2].includes(showInfoData['biaozhu']))" :showInfoData="showInfoData" />
<ShowInfoModal v-else :showInfoData="showInfoData" /> <ShowInfoModal v-else :showInfoData="showInfoData" />
</div> </div>
</a-modal> </a-modal>

View File

@ -331,7 +331,7 @@
markTypeOptions, markTypeOptions,
illegalTypeList, illegalTypeList,
resultOptions, resultOptions,
qitaUseTOOptions, newQitaUseTOOptions,
} from '@/utils/global'; } from '@/utils/global';
const MapboxComponent = ref(); const MapboxComponent = ref();
@ -466,7 +466,7 @@
result = resultOptions; result = resultOptions;
break; break;
case 'qita_use_to': case 'qita_use_to':
result = qitaUseTOOptions; result = newQitaUseTOOptions;
break; break;
} }
result.forEach((item) => { result.forEach((item) => {