Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lxyl-vue
Project
Project
Details
Activity
Releases
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
李苏
lxyl-vue
Commits
f9bb4c97
Commit
f9bb4c97
authored
May 24, 2024
by
李苏
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改密码
parent
2fe268f4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
Navbar.vue
src/layout/components/Navbar.vue
+3
-7
No files found.
src/layout/components/Navbar.vue
View file @
f9bb4c97
...
@@ -14,10 +14,6 @@
...
@@ -14,10 +14,6 @@
<el-form-item
label=
"确认密码"
prop=
"confirmPassword"
>
<el-form-item
label=
"确认密码"
prop=
"confirmPassword"
>
<el-input
v-model=
"users.confirmPassword"
placeholder=
"请确认新密码"
type=
"password"
show-password
/>
<el-input
v-model=
"users.confirmPassword"
placeholder=
"请确认新密码"
type=
"password"
show-password
/>
</el-form-item>
</el-form-item>
<!--
<el-form-item>
<el-button
type=
"primary"
size=
"mini"
@
click=
"submit"
>
保存
</el-button>
<el-button
type=
"danger"
size=
"mini"
@
click=
"close"
>
关闭
</el-button>
</el-form-item>
-->
</el-form>
</el-form>
</div>
</div>
<div
class=
"refooter"
>
<div
class=
"refooter"
>
...
@@ -164,9 +160,9 @@ export default {
...
@@ -164,9 +160,9 @@ export default {
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
valid
)
{
let
params
=
{
let
params
=
{
oldPassword
:
Base64
.
encode
(
this
.
user
.
oldPassword
),
oldPassword
:
Base64
.
encode
(
this
.
user
s
.
oldPassword
),
newPassword
:
Base64
.
encode
(
this
.
user
.
newPassword
),
newPassword
:
Base64
.
encode
(
this
.
user
s
.
newPassword
),
newPasswordConfirm
:
Base64
.
encode
(
this
.
user
.
confirmPassword
)
newPasswordConfirm
:
Base64
.
encode
(
this
.
user
s
.
confirmPassword
)
}
}
updatePassword
(
params
).
then
(
res
=>
{
updatePassword
(
params
).
then
(
res
=>
{
if
(
res
.
success
){
if
(
res
.
success
){
...
...
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