f41295b2 by lihua

解决defineStore唯一标识符冲突问题

1 parent bb76089f
const useDataAssetStore = defineStore(
// 资产目录guid
'isRefresh',
'asset',
() => {
const isRefresh = ref<boolean>(false)
const isRefreshDamCatalog = ref<boolean>(false)
......
const useDataConnectorStore = defineStore(
'isRefresh',
'connector',
() => {
const isRefresh = ref<boolean>(false)
......
const useDataFacilitatorStore = defineStore(
/** 产品上架 */
'isRefresh',
'facilitator',
() => {
const isRefresh = ref<boolean>(false)
function set(v: boolean) {
......
const useDataProductStore = defineStore(
/** 产品上架 */
'isRefresh',
'dataProduct',
() => {
const isRefresh = ref<boolean>(false)
function set(v: boolean) {
......
const useDataRegisterCatalogStore = defineStore(
'isRefresh',
'registerCatalog',
() => {
const isRefresh = ref<boolean>(false)
......
const useDataSmartContract = defineStore(
'isRefresh',
'smartContract',
() => {
const isRefresh = ref<boolean>(false)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!