增加修改密码和编辑个人信息界面

This commit is contained in:
zhl 2021-05-08 18:50:54 +08:00
parent 04dc3848a7
commit ac33a5ef79
10 changed files with 330 additions and 24 deletions

View File

@ -1,4 +1,5 @@
import request from '@/utils/request' import request from '@/utils/request'
import { UserModule } from '@/store/modules/user'
export interface IAdmin { export interface IAdmin {
id: string id: string
username: string username: string
@ -74,3 +75,17 @@ export const getUsers = (params: any) =>
method: 'get', method: 'get',
params params
}) })
export const changePass = (params: any) =>
request({
url: '/admin/passwd',
method: 'post',
data: params
})
export const changeInfo = (params: any) =>
request({
url: '/admin/update_info',
method: 'post',
data: params
})

View File

@ -87,7 +87,8 @@ export default {
game_edit: 'Game Info', game_edit: 'Game Info',
activity_list: 'Activity List', activity_list: 'Activity List',
create_activity: 'New Activity', create_activity: 'New Activity',
edit_activity: 'Edit Activity' edit_activity: 'Edit Activity',
password: 'Password'
}, },
navbar: { navbar: {
logOut: 'Log Out', logOut: 'Log Out',
@ -95,7 +96,8 @@ export default {
github: 'Github', github: 'Github',
theme: 'Theme', theme: 'Theme',
size: 'Global Size', size: 'Global Size',
profile: 'Profile' profile: 'Profile',
password: 'Password'
}, },
login: { login: {
title: 'Login Form', title: 'Login Form',

View File

@ -87,7 +87,8 @@ export default {
game_edit: '编辑游戏', game_edit: '编辑游戏',
activity_list: '活动列表', activity_list: '活动列表',
create_activity: '新建活动', create_activity: '新建活动',
edit_activity: '编辑活动' edit_activity: '编辑活动',
password: '修改密码'
}, },
navbar: { navbar: {
logOut: '退出登录', logOut: '退出登录',
@ -95,7 +96,8 @@ export default {
github: '项目地址', github: '项目地址',
theme: '换肤', theme: '换肤',
size: '布局大小', size: '布局大小',
profile: '个人中心' profile: '个人信息',
password: '修改密码'
}, },
login: { login: {
title: '系统登录', title: '系统登录',

View File

@ -36,30 +36,21 @@
<i class="el-icon-caret-bottom" /> <i class="el-icon-caret-bottom" />
</div> </div>
<el-dropdown-menu slot="dropdown"> <el-dropdown-menu slot="dropdown">
<router-link to="/profile/">
<el-dropdown-item>
{{ $t('navbar.profile') }}
</el-dropdown-item>
</router-link>
<router-link to="/"> <router-link to="/">
<el-dropdown-item> <el-dropdown-item>
{{ $t('navbar.dashboard') }} {{ $t('navbar.dashboard') }}
</el-dropdown-item> </el-dropdown-item>
</router-link> </router-link>
<a <router-link to="/profile/">
target="_blank"
href="https://github.com/armour/vue-typescript-admin-template/"
>
<el-dropdown-item> <el-dropdown-item>
{{ $t('navbar.github') }} {{ $t('navbar.profile') }}
</el-dropdown-item> </el-dropdown-item>
</a> </router-link>
<a <router-link to="/password">
target="_blank" <el-dropdown-item>
href="https://armour.github.io/vue-typescript-admin-docs/" {{ $t('navbar.password') }}
> </el-dropdown-item>
<el-dropdown-item>Docs</el-dropdown-item> </router-link>
</a>
<el-dropdown-item <el-dropdown-item
divided divided
@click.native="logout" @click.native="logout"

View File

@ -81,7 +81,6 @@ export default class extends Vue {
@Prop({ default: '' }) private basePath!: string @Prop({ default: '' }) private basePath!: string
get alwaysShowRootMenu() { get alwaysShowRootMenu() {
console.log('alwaysShowRootMenu', this.item)
if (this.item.meta && this.item.meta.alwaysShow) { if (this.item.meta && this.item.meta.alwaysShow) {
return true return true
} }

View File

@ -101,14 +101,32 @@ export const constantRoutes: RouteConfig[] = [
children: [ children: [
{ {
path: 'index', path: 'index',
component: () => import(/* webpackChunkName: "profile" */ '@/views/profile/index.vue'), component: () => import(/* webpackChunkName: "profile" */ '@/views/profile/info.vue'),
name: 'Profile', name: 'Profile',
meta: { meta: {
title: 'profile', title: 'profile',
icon: 'user', icon: 'user',
noCache: true noCache: true
} }
},
{
path: 'password',
component: () => import(/* webpackChunkName: "profile" */ '@/views/profile/password.vue'),
name: 'Password',
meta: {
title: 'password',
icon: 'user',
noCache: true
} }
}
]
},
{
path: '/password',
component: Layout,
redirect: '/profile/password',
meta: { hidden: true },
children: [
] ]
} }
] ]

View File

@ -23,6 +23,7 @@ export interface IUserState {
department?: string department?: string
deptname?: string deptname?: string
level: number level: number
sex?: string
} }
@Module({ dynamic: true, store, name: 'user' }) @Module({ dynamic: true, store, name: 'user' })
@ -37,6 +38,7 @@ class User extends VuexModule implements IUserState {
public department = '' public department = ''
public deptname = '' public deptname = ''
public level = 999 public level = 999
public sex = '0'
@Action @Action
public async Login(userInfo: { username: string, password: string }) { public async Login(userInfo: { username: string, password: string }) {
@ -64,7 +66,7 @@ class User extends VuexModule implements IUserState {
if (!data) { if (!data) {
throw Error('Verification failed, please Login again.') throw Error('Verification failed, please Login again.')
} }
const { roles, showname, avatar, introduction, permissions, department, level, deptname } = data const { roles, showname, avatar, introduction, permissions, department, level, deptname, sex } = data
// roles must be a non-empty array // roles must be a non-empty array
if (!roles || roles.length <= 0) { if (!roles || roles.length <= 0) {
throw Error('GetUserInfo: roles must be a non-null array!') throw Error('GetUserInfo: roles must be a non-null array!')
@ -77,6 +79,15 @@ class User extends VuexModule implements IUserState {
this.SET_DEPARTMENT(department) this.SET_DEPARTMENT(department)
this.SET_LEVEL(level) this.SET_LEVEL(level)
this.SET_DEPTNAME(deptname) this.SET_DEPTNAME(deptname)
this.SET_SEX(sex)
}
@Action
public async UpdateInfo(data: any) {
const { showname, sex, avatar } = data
this.SET_NAME(showname)
this.SET_SEX(sex)
this.SET_AVATAR(avatar)
} }
@Action @Action
@ -143,6 +154,11 @@ class User extends VuexModule implements IUserState {
this.deptname = deptname this.deptname = deptname
} }
@Mutation
private SET_SEX(sex: string) {
this.sex = sex
}
@Mutation @Mutation
private SET_LEVEL(level: number) { private SET_LEVEL(level: number) {
this.level = level this.level = level

View File

@ -16,6 +16,9 @@
<div class="dashboard-text"> <div class="dashboard-text">
店铺:{{ deptname }} 店铺:{{ deptname }}
</div> </div>
<div class="dashboard-text">
将来这里会有很多东西
</div>
</div> </div>
</template> </template>

113
src/views/profile/info.vue Normal file
View File

@ -0,0 +1,113 @@
<template>
<div class="app-container">
<el-form
ref="postForm"
:model="postForm"
:rules="rules"
label-width="200px"
label-position="left"
>
<el-form-item label="显示名" prop="showname">
<el-input
v-model="postForm.showname"
placeholder="显示名"
/>
</el-form-item>
<el-form-item label="性别">
<el-radio-group size='small' v-model="postForm.sex">
<el-radio-button label="0">未指定</el-radio-button>
<el-radio-button label="1"></el-radio-button>
<el-radio-button label="2"></el-radio-button>
</el-radio-group>
</el-form-item>
<el-form-item
prop="avatar"
label="头像"
>
<upload-image v-model="postForm.avatar" />
</el-form-item>
<el-form-item>
<el-button
type="primary"
v-loading="loading"
@click="save"
>
保存
</el-button>
<el-button @click="onCancel">
取消
</el-button>
</el-form-item>
</el-form>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
import UploadImage from '@/components/UploadImage/index.vue'
import { changeInfo } from '@/api/admins'
import { UserModule } from '@/store/modules/user'
@Component({
name: 'InfoChange',
components: {
UploadImage
}
})
export default class extends Vue {
private loading = false
private postForm = {
showname: UserModule.name,
sex: UserModule.sex,
avatar: UserModule.avatar
}
$refs!: {
postForm: HTMLFormElement
}
private rules = {
showname: [{ required: true, message: '请输入显示名', trigger: 'blur' },
{ min: 2, max: 10, message: '长度在 2 到 10 个字符', trigger: 'blur' },
{
required: true,
pattern: /^[\u4e00-\u9fa5_a-zA-Z0-9.·-]+$/,
message: '显示名不支持特殊字符',
trigger: 'blur'
}]
}
private async save() {
try {
this.loading = true
await this.$refs.postForm.validate()
const { data } = await changeInfo(this.postForm)
await UserModule.UpdateInfo(data)
this.loading = false
this.$notify({
title: 'Success',
message: '信息修改成功',
type: 'success',
duration: 2000
})
} catch (err) {
console.log(err)
}
this.loading = false
}
private async onCancel() {
try {
await this.$confirm('确认不保存当前信息?', 'Warning', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
this.$store.dispatch('delView', this.$route)
this.$router.go(-1)
} catch (e) {
}
}
}
</script>

View File

@ -0,0 +1,147 @@
<template>
<div class="app-container">
<el-form
ref="postForm"
:model="postForm"
:rules="rules"
label-width="200px"
label-position="left"
>
<el-form-item label="原密码" prop="passwordOld" >
<el-input
type="password"
v-model="postForm.passwordOld"
name="passwordOld"
placeholder=""
/>
</el-form-item>
<el-form-item label="新密码" prop="password" >
<el-input
type="password"
v-model="postForm.password"
name="password"
placeholder=""
/>
</el-form-item>
<el-form-item label="确认密码" prop="password2" >
<el-input
type="password"
v-model="postForm.password2"
name="password2"
placeholder=""
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
v-loading="loading"
@click="save"
>
保存
</el-button>
<el-button @click="onCancel">
取消
</el-button>
</el-form-item>
</el-form>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'
import { changePass } from '@/api/admins'
@Component({
name: 'PasswordChange',
components: {
}
})
export default class extends Vue {
private loading = false
private postForm = {
password: '',
passwordOld: '',
password2: ''
}
$refs!: {
postForm: HTMLFormElement
}
private rules = {
password: [{ required: true, message: '请输入新密码', trigger: 'blur' },
{ min: 2, max: 20, message: '长度在 2 到 20 个字符', trigger: 'blur' },
{ validator: this.validateNewPassword, trigger: 'blur' },
{
required: true,
pattern: /^[_a-zA-Z0-9.·-]+$/,
message: '密码不支持特殊字符',
trigger: 'blur'
}],
password2: [{ required: true, message: '请输入确认密码', trigger: 'blur' },
{ min: 2, max: 20, message: '长度在 2 到 20 个字符', trigger: 'blur' },
{ validator: this.validateNewPassword2, trigger: 'blur' }
],
passwordOld: [{ required: true, message: '请输入原密码', trigger: 'blur' },
{ min: 2, max: 20, message: '长度在 2 到 20 个字符', trigger: 'blur' },
{
required: true,
pattern: /^[_a-zA-Z0-9.·-]+$/,
message: '密码不支持特殊字符',
trigger: 'blur'
}]
}
private validateNewPassword(rule, value, callback) {
if (value === this.postForm.passwordOld) {
callback(new Error('不能与旧密码一致!'))
} else {
callback()
}
}
private validateNewPassword2(rule, value, callback) {
if (value !== this.postForm.password) {
callback(new Error('与新密码不一致!'))
} else {
callback()
}
}
private async save() {
try {
this.loading = true
await this.$refs.postForm.validate()
await changePass({
passwordOld: this.postForm.passwordOld,
passwordNew: this.postForm.password
})
this.loading = false
this.$notify({
title: 'Success',
message: '修改密码成功',
type: 'success',
duration: 2000
})
} catch (err) {
console.log(err)
}
this.loading = false
}
private async onCancel() {
try {
await this.$confirm('确认不保存当前信息?', 'Warning', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
this.$store.dispatch('delView', this.$route)
this.$router.go(-1)
} catch (e) {
}
}
}
</script>