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
4c6734c2
Commit
4c6734c2
authored
Sep 12, 2023
by
huangjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*
parent
9b7bf9a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
index.html
dsk-operate-ui/public/index.html
+5
-4
index.vue
dsk-operate-ui/src/layout/components/TagsView/index.vue
+2
-0
index.vue
dsk-operate-ui/src/views/system/user/index.vue
+4
-2
No files found.
dsk-operate-ui/public/index.html
View file @
4c6734c2
...
...
@@ -118,7 +118,8 @@
top
:
0
;
width
:
51%
;
height
:
100%
;
background
:
#7171C6
;
/*background: #7171C6;*/
background
:
#46A5FF
;
z-index
:
1000
;
-webkit-transform
:
translateX
(
0
);
-ms-transform
:
translateX
(
0
);
...
...
@@ -197,12 +198,12 @@
</head>
<body>
<div
id=
"app"
>
<!--
<div id="loader-wrapper">
<div
id=
"loader-wrapper"
>
<div
id=
"loader"
></div>
<div
class=
"loader-section section-left"
></div>
<div
class=
"loader-section section-right"
></div>
<div class="load_title">正在加载
系统资源,请耐心等待
</div>
</div>
-->
<div
class=
"load_title"
>
正在加载
央企数字化经营管理系统
</div>
</div>
</div>
</body>
</html>
dsk-operate-ui/src/layout/components/TagsView/index.vue
View file @
4c6734c2
...
...
@@ -7,6 +7,7 @@
<img
src=
"@/assets/images/all_on.png"
v-if=
"showall"
/>
<!--
<i
class=
"el-icon-arrow-down"
v-if=
"!showall"
></i>
<i
class=
"el-icon-arrow-up"
v-if=
"showall"
></i>
-->
</div>
<el-collapse-transition>
<div
class=
"tagslist"
v-if=
"showall"
>
<draggable
v-model=
"visitedViews"
:options=
"dragOptions"
@
end=
"end"
>
<router-link
...
...
@@ -28,6 +29,7 @@
</draggable>
</div>
</el-collapse-transition>
</div>
<scroll-pane
ref=
"scrollPane"
class=
"tags-view-wrapper"
@
scroll=
"handleScroll"
>
<draggable
v-model=
"visitedViews"
:options=
"dragOptions"
@
end=
"end"
>
...
...
dsk-operate-ui/src/views/system/user/index.vue
View file @
4c6734c2
...
...
@@ -399,6 +399,7 @@
import
{
listUser
,
getUser
,
delUser
,
addUser
,
updateUser
,
resetUserPwd
,
changeUserStatus
,
deptTreeSelect
}
from
"@/api/system/user"
;
import
{
getToken
,
getTenantid
}
from
"@/utils/auth"
;
import
Treeselect
from
"@riophae/vue-treeselect"
;
import
{
Base64
}
from
'js-base64'
import
"@riophae/vue-treeselect/dist/vue-treeselect.css"
;
export
default
{
...
...
@@ -653,8 +654,9 @@ export default {
inputPattern
:
/^.
{5,20}
$/
,
inputErrorMessage
:
"用户密码长度必须介于 5 和 20 之间"
}).
then
(({
value
})
=>
{
resetUserPwd
(
row
.
userId
,
value
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功,新密码是:"
+
value
);
resetUserPwd
(
row
.
userId
,
Base64
.
encode
(
value
)).
then
(
response
=>
{
// this.$modal.msgSuccess("修改成功,新密码是:" + value);
this
.
$modal
.
msgSuccess
(
"修改成功!"
);
});
}).
catch
(()
=>
{});
},
...
...
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