|
@@ -37,6 +37,7 @@
|
|
<n-input-group>
|
|
<n-input-group>
|
|
<n-input
|
|
<n-input
|
|
v-model:value="nav.title"
|
|
v-model:value="nav.title"
|
|
|
|
+ maxlength="15"
|
|
style="max-width: 130px"
|
|
style="max-width: 130px"
|
|
/>
|
|
/>
|
|
|
|
|
|
@@ -92,7 +93,7 @@
|
|
:key="index"
|
|
:key="index"
|
|
>
|
|
>
|
|
<n-flex justify="space-between">
|
|
<n-flex justify="space-between">
|
|
- {{ pano }}
|
|
|
|
|
|
+ {{ pano.index }}
|
|
<n-icon
|
|
<n-icon
|
|
:size="20"
|
|
:size="20"
|
|
@click="handlePanoDel(index)"
|
|
@click="handlePanoDel(index)"
|
|
@@ -148,7 +149,7 @@ const naviData = computed(() => main.getEditorData.navigation)
|
|
const dataList = ref<
|
|
const dataList = ref<
|
|
{
|
|
{
|
|
title: string
|
|
title: string
|
|
- panos: string[]
|
|
|
|
|
|
+ panos: any[]
|
|
}[]
|
|
}[]
|
|
>([])
|
|
>([])
|
|
|
|
|