|
@@ -109,6 +109,7 @@ const subscribe = quoteSocket.createSubscribe()
|
|
|
const formRef = shallowRef<FormInstance>()
|
|
const formRef = shallowRef<FormInstance>()
|
|
|
|
|
|
|
|
const { getSystemParamValue } = useUserStore()
|
|
const { getSystemParamValue } = useUserStore()
|
|
|
|
|
+const system_1012 = getSystemParamValue('1012') ?? '1'
|
|
|
|
|
|
|
|
const active = shallowRef('images')
|
|
const active = shallowRef('images')
|
|
|
const { componentRef, componentId, openComponent, closeComponent } = useComponent()
|
|
const { componentRef, componentId, openComponent, closeComponent } = useComponent()
|
|
@@ -227,7 +228,7 @@ const components = [
|
|
|
name: 'chart',
|
|
name: 'chart',
|
|
|
title: t('quote.title'),
|
|
title: t('quote.title'),
|
|
|
component: defineAsyncComponent(() => import('../components/detail/Index.vue')),
|
|
component: defineAsyncComponent(() => import('../components/detail/Index.vue')),
|
|
|
- show: true
|
|
|
|
|
|
|
+ show: system_1012 === '1'
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
|
|
|