Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
source-trace-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenqikuai
source-trace-manage
Commits
06813849
Commit
06813849
authored
Apr 13, 2022
by
chenqikuai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
29a6cea6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
11 deletions
+17
-11
index.vue
src/components/GlobalMount/index.vue
+6
-5
Index.vue
src/views/category/Index.vue
+2
-0
index.vue
src/views/editTemplate/index.vue
+9
-6
No files found.
src/components/GlobalMount/index.vue
View file @
06813849
<
template
>
<
template
>
{{
globalState
.
syMessageBoxConfig
}}
<syMessageBox
<syMessageBox
v-model:visible=
"state.visible"
:visible=
"globalState.syMessageBoxConfig.visible"
:tip=
"state.tip"
@
update:visible=
"globalState.syMessageBoxConfig.visible = false"
:handle-confirm=
"state.handleConfirm"
:tip=
"globalState.syMessageBoxConfig.tip"
:handle-cancel=
"state.handleCancel"
:handle-confirm=
"globalState.syMessageBoxConfig.handleConfirm"
:handle-cancel=
"globalState.syMessageBoxConfig.handleCancel"
></syMessageBox>
></syMessageBox>
</
template
>
</
template
>
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
globalState
}
from
"@/store/state"
;
import
{
globalState
}
from
"@/store/state"
;
import
{
syMessageBox
}
from
"cqk-sy-ui"
;
import
{
syMessageBox
}
from
"cqk-sy-ui"
;
const
state
=
globalState
.
syMessageBoxConfig
;
</
script
>
</
script
>
src/views/category/Index.vue
View file @
06813849
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
<div
class=
"h-full rightBox flex-grow relative"
>
<div
class=
"h-full rightBox flex-grow relative"
>
<div
class=
"px-4"
v-show=
"menuState.current === 0"
>
<div
class=
"px-4"
v-show=
"menuState.current === 0"
>
<syTraceProofRecord
<syTraceProofRecord
:showTip=
"showTip"
:setDepositCertificate=
"setDepositCertificate"
:setDepositCertificate=
"setDepositCertificate"
:userInfos_auth_suc=
"userInfos_auth_suc"
:userInfos_auth_suc=
"userInfos_auth_suc"
:navigate=
"navigate"
:navigate=
"navigate"
...
@@ -76,6 +77,7 @@ import {
...
@@ -76,6 +77,7 @@ import {
}
from
"cqk-sy-ui"
;
}
from
"cqk-sy-ui"
;
import
{
computed
,
reactive
,
ref
}
from
"vue"
;
import
{
computed
,
reactive
,
ref
}
from
"vue"
;
import
Deleted
from
"./components/Deleted.vue"
;
import
Deleted
from
"./components/Deleted.vue"
;
import
{
showTip
}
from
"@/components/GlobalMount/api"
;
const
page
=
computed
(()
=>
{
const
page
=
computed
(()
=>
{
return
globalState
.
page
;
return
globalState
.
page
;
...
...
src/views/editTemplate/index.vue
View file @
06813849
<
template
>
<
template
>
<syTraceTemplatePage
:navigate=
"navigate"
:route=
"$route"
:go=
"go"
></syTraceTemplatePage>
<syTraceTemplatePage
:navigate=
"navigate"
:route=
"$route"
:go=
"go"
:showTip=
"showTip"
></syTraceTemplatePage>
</
template
>
</
template
>
<
script
lang=
"ts"
setup
>
<
script
lang=
"ts"
setup
>
import
{
showTip
}
from
"@/components/GlobalMount/api"
;
import
{
router
}
from
"@/router"
;
import
{
router
}
from
"@/router"
;
import
{
syTraceTemplatePage
}
from
"cqk-sy-ui"
import
{
syTraceTemplatePage
}
from
"cqk-sy-ui"
;
const
navigate
=
router
.
push
;
const
navigate
=
router
.
push
;
const
go
=
router
.
go
;
const
go
=
router
.
go
;
</
script
>
</
script
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment