Commit 06813849 authored by chenqikuai's avatar chenqikuai

fix

parent 29a6cea6
<template>
{{ globalState.syMessageBoxConfig }}
<syMessageBox
v-model:visible="state.visible"
:tip="state.tip"
:handle-confirm="state.handleConfirm"
:handle-cancel="state.handleCancel"
:visible="globalState.syMessageBoxConfig.visible"
@update:visible="globalState.syMessageBoxConfig.visible = false"
:tip="globalState.syMessageBoxConfig.tip"
:handle-confirm="globalState.syMessageBoxConfig.handleConfirm"
:handle-cancel="globalState.syMessageBoxConfig.handleCancel"
></syMessageBox>
</template>
<script lang="ts" setup>
import { globalState } from "@/store/state";
import { syMessageBox } from "cqk-sy-ui";
const state = globalState.syMessageBoxConfig;
</script>
......@@ -14,6 +14,7 @@
<div class="h-full rightBox flex-grow relative">
<div class="px-4" v-show="menuState.current === 0">
<syTraceProofRecord
:showTip="showTip"
:setDepositCertificate="setDepositCertificate"
:userInfos_auth_suc="userInfos_auth_suc"
:navigate="navigate"
......@@ -76,6 +77,7 @@ import {
} from "cqk-sy-ui";
import { computed, reactive, ref } from "vue";
import Deleted from "./components/Deleted.vue";
import { showTip } from "@/components/GlobalMount/api";
const page = computed(() => {
return globalState.page;
......
<template>
<syTraceTemplatePage :navigate="navigate" :route="$route" :go="go"></syTraceTemplatePage>
<syTraceTemplatePage
:navigate="navigate"
:route="$route"
:go="go"
:showTip="showTip"
></syTraceTemplatePage>
</template>
<script lang="ts" setup>
import { showTip } from "@/components/GlobalMount/api";
import { router } from "@/router";
import { syTraceTemplatePage } from "cqk-sy-ui"
import { syTraceTemplatePage } from "cqk-sy-ui";
const navigate = router.push;
const go = router.go;
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment