|
@@ -10,7 +10,7 @@
|
|
|
:load="loadData"
|
|
|
:showDetail="showDetail"
|
|
|
:tagsData="tagsData"
|
|
|
- :defaultSelectTag="tagsData[1]?.id"
|
|
|
+ :defaultSelectTag="tagsData[0]?.id"
|
|
|
/>
|
|
|
<!-- -->
|
|
|
<ContentDialog v-model:show="popupContentShow" light :small="smallDialog">
|
|
@@ -87,7 +87,7 @@ onMounted(async () => {
|
|
|
const it2 = res.find(p => p.title == '省级');
|
|
|
if (it1) it1.title = '特色村舍';
|
|
|
if (it2) it2.title = '传统村落';
|
|
|
- tagsData.value = res.map((p) => ({ id: p.id, name: p.title }));
|
|
|
+ tagsData.value = res.slice(1).map((p) => ({ id: p.id, name: p.title }));
|
|
|
})
|
|
|
</script>
|
|
|
|