Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
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
Administrator
dsk-cr20g
Commits
46ccd5b1
Commit
46ccd5b1
authored
Sep 14, 2023
by
huangjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*
parent
5085b88f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
8 deletions
+17
-8
index.vue
dsk-operate-ui/src/layout/components/TagsView/index.vue
+4
-2
index.vue
dsk-operate-ui/src/views/enterpriseManagement/index.vue
+1
-1
login.vue
dsk-operate-ui/src/views/login.vue
+7
-4
gzdb.vue
...erate-ui/src/views/project/projectList/component/gzdb.vue
+5
-1
No files found.
dsk-operate-ui/src/layout/components/TagsView/index.vue
View file @
46ccd5b1
...
...
@@ -101,8 +101,10 @@ export default {
const
index
=
val
.
path
.
indexOf
(
'/'
,
val
.
path
.
indexOf
(
'/'
)
+
1
)
const
parentPath
=
val
.
path
.
slice
(
0
,
index
)
const
currentRoute
=
this
.
$router
.
options
.
routes
.
find
(
item
=>
item
.
path
===
parentPath
)
currentIcon
=
currentRoute
.
meta
&&
currentRoute
.
meta
.
icon
icon
=
this
.
isActive
(
val
)
?
currentIcon
+
'Tags'
:
currentIcon
+
'Tag'
if
(
currentRoute
){
currentIcon
=
currentRoute
.
meta
&&
currentRoute
.
meta
.
icon
icon
=
this
.
isActive
(
val
)
?
currentIcon
+
'Tags'
:
currentIcon
+
'Tag'
}
}
icon
=
(
svgIcon
&&
svgIcon
!=
'#'
)
||
(
currentIcon
&&
svgIcon
!=
'#'
)
?
icon
:
this
.
isActive
(
val
)
?
'defaultTags'
:
'defaultTag'
return
`#icon-
${
icon
}
`
...
...
dsk-operate-ui/src/views/enterpriseManagement/index.vue
View file @
46ccd5b1
...
...
@@ -132,7 +132,7 @@
@
pagination=
"getList"
/>
<!-- 添加或修改
角色配置
对话框 -->
<!-- 添加或修改对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
>
<el-row>
...
...
dsk-operate-ui/src/views/login.vue
View file @
46ccd5b1
...
...
@@ -45,7 +45,7 @@
<img
class=
"img"
slot=
"prefix"
src=
"../assets/images/validCode.png"
/>
</el-input>
<div
class=
"login-code"
>
<div
class=
"hqyzm"
@
click=
"getsms"
>
{{
smstitle
}}
</div>
<div
class=
"hqyzm"
@
click=
"getsms"
:class=
"
{'disableds':smstitle!='获取验证码'}"
>
{{
smstitle
}}
</div>
</div>
</el-form-item>
<el-form-item
style=
"width:100%;margin-top: 42px"
>
...
...
@@ -151,7 +151,7 @@
<img
class=
"img"
slot=
"prefix"
src=
"../assets/images/validCode.png"
/>
</el-input>
<div
class=
"login-code"
>
<div
class=
"hqyzm"
@
click=
"getsms"
>
{{
smstitle
}}
</div>
<div
class=
"hqyzm"
@
click=
"getsms"
:class=
"
{'disableds':smstitle!='获取验证码'}"
>
{{
smstitle
}}
</div>
</div>
</el-form-item>
<el-form-item
style=
"width:100%;margin-top: 42px"
>
...
...
@@ -280,7 +280,7 @@
_this
.
smstitle
=
_this
.
smstime
+
'秒后重试'
_this
.
smstime
--
;
if
(
_this
.
smstime
<=
0
){
_this
.
smstitle
=
'
发送
验证码'
_this
.
smstitle
=
'
获取
验证码'
clearInterval
(
_this
.
timers
)
_this
.
nosend
=
false
}
...
...
@@ -529,11 +529,14 @@
border-radius
:
4px
;
border
:
1px
solid
#EFEFEF
;
text-align
:
center
;
color
:
rgba
(
35
,
35
,
35
,
0
.
4
0
);
color
:
rgba
(
35
,
35
,
35
,
0
.
8
0
);
font-size
:
14px
;
cursor
:
pointer
;
line-height
:
48px
;
}
.disableds
{
color
:
rgba
(
35
,
35
,
35
,
0
.40
);
}
}
.el-login-footer
{
height
:
40px
;
...
...
dsk-operate-ui/src/views/project/projectList/component/gzdb.vue
View file @
46ccd5b1
...
...
@@ -122,6 +122,7 @@
created
(){
this
.
getList
()
this
.
getCount
()
console
.
log
(
777
)
},
methods
:{
getCount
(){
...
...
@@ -190,11 +191,11 @@
if
(
result
.
code
==
200
){
this
.
$message
.
success
(
'修改成功!'
)
this
.
getList
()
this
.
getCount
()
}
else
{
this
.
$message
.
error
(
result
.
msg
)
}
})
this
.
getCount
()
},
getYQ
(){
let
state
=
this
.
searchPram
.
state
...
...
@@ -206,6 +207,9 @@
</
script
>
<
style
lang=
"scss"
scoped
>
.app-container
{
background
:
#fff
;
}
.records
{
.tasklist
{
.select
{
...
...
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