Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-operate-sys-cscec
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fulixin
dsk-operate-sys-cscec
Commits
d1bfdf81
Commit
d1bfdf81
authored
Oct 26, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
7939ed7d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
index.vue
dsk-operate-ui/src/layout/components/TagsView/index.vue
+1
-1
detail.vue
dsk-operate-ui/src/views/detail.vue
+1
-1
index.vue
dsk-operate-ui/src/views/enterpriseManagement/index.vue
+5
-2
No files found.
dsk-operate-ui/src/layout/components/TagsView/index.vue
View file @
d1bfdf81
...
...
@@ -44,7 +44,7 @@
<svg
:class=
"isActive(tag)?'tags-icon tags-icon-active':'tags-icon'"
aria-hidden=
"true"
>
<use
:xlink:href=
"iconName(tag)"
/>
</svg>
<span
:id=
"isActive(tag)?'tagTitle':''"
>
{{
tag
.
title
}}
</span>
<span
:id=
"isActive(tag)?'tagTitle':''"
>
{{
tag
.
title
.
replace
(
/<
[^
>
]
+>/g
,
''
)
}}
</span>
<span
v-if=
"!isAffix(tag)"
class=
"el-icon-close"
@
click
.
prevent
.
stop=
"closeSelectedTag(tag)"
/>
<i
:class=
"index!=visitedViews.length-1 && index != isActiveIndex() && index != isActiveIndex()-1?'tags-item-line':'tags-item-line item-color'"
/>
</router-link>
...
...
dsk-operate-ui/src/views/detail.vue
View file @
d1bfdf81
...
...
@@ -37,7 +37,7 @@ export default {
this
.
domain
=
'https://plug.jiansheku.com'
}
else
{
this
.
domain
=
'https://pre-plug.jiansheku.com'
this
.
domain
=
'http://192.168.60.210:3400'
//
this.domain='http://192.168.60.210:3400'
}
this
.
gettokens
();
},
...
...
dsk-operate-ui/src/views/enterpriseManagement/index.vue
View file @
d1bfdf81
...
...
@@ -221,7 +221,7 @@
<p>
温馨提示:此操作可能会影响正在使用的用户,建议合理安排同步时间
</p>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"dialogVisible1 = false"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"handleConfirm()"
>
同步
</el-button>
<el-button
type=
"primary"
@
click=
"handleConfirm()"
:loading=
"state"
>
同步
</el-button>
</div>
</el-dialog>
</div>
...
...
@@ -305,7 +305,8 @@
},
//企业方案列表
packageList
:[],
syncItem
:{}
syncItem
:{},
state
:
false
,
};
},
created
()
{
...
...
@@ -390,8 +391,10 @@
/** 同步按钮操作 */
handleConfirm
()
{
let
_this
=
this
this
.
state
=
true
syncTenantPackage
({
tenantId
:
this
.
syncItem
.
tenantId
,
packageId
:
this
.
syncItem
.
packageId
}).
then
(
res
=>
{
if
(
res
.
code
===
200
){
this
.
state
=
false
_this
.
$message
.
success
(
res
.
msg
);
this
.
dialogVisible1
=
false
;
}
...
...
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