|
@@ -104,11 +104,12 @@
|
|
import {computed, getCurrentInstance, onMounted, reactive, watch} from "vue";
|
|
import {computed, getCurrentInstance, onMounted, reactive, watch} from "vue";
|
|
import RelationChart from "./relation-chart.vue";
|
|
import RelationChart from "./relation-chart.vue";
|
|
import {ElLoading, ElMessage} from "element-plus";
|
|
import {ElLoading, ElMessage} from "element-plus";
|
|
-import {useThemeStore} from "@/stores";
|
|
|
|
|
|
+import {useAppStore, useThemeStore} from "@/stores";
|
|
import {frontGetThemeByThemeId} from "@/api/modules/web/list";
|
|
import {frontGetThemeByThemeId} from "@/api/modules/web/list";
|
|
import {useRoute} from "vue-router";
|
|
import {useRoute} from "vue-router";
|
|
|
|
|
|
const ThemeStore = useThemeStore()
|
|
const ThemeStore = useThemeStore()
|
|
|
|
+const AppStore = useAppStore()
|
|
const route = useRoute()
|
|
const route = useRoute()
|
|
const {proxy} = getCurrentInstance()
|
|
const {proxy} = getCurrentInstance()
|
|
const state: any = reactive({
|
|
const state: any = reactive({
|
|
@@ -213,7 +214,7 @@ const themeConfigCpt = computed(() => {
|
|
res.chart.nodes.unshift({
|
|
res.chart.nodes.unshift({
|
|
id: String(v.id),
|
|
id: String(v.id),
|
|
iconSrc: v.url,
|
|
iconSrc: v.url,
|
|
- weight: v.weight,
|
|
|
|
|
|
+ weight: v.weight || 100,
|
|
num: 0,
|
|
num: 0,
|
|
name: v.indexNameShort,
|
|
name: v.indexNameShort,
|
|
indexTableName: v.indexTableName,
|
|
indexTableName: v.indexTableName,
|