feat: avatar upload
parent
7f7281355c
commit
75edf99f6c
|
@ -1,5 +1,4 @@
|
||||||
import { defHttp } from '@/utils/http/axios'
|
import { defHttp } from '@/utils/http/axios'
|
||||||
import { UploadFileParams } from '@/types/axios'
|
|
||||||
|
|
||||||
export interface ProfileDept {
|
export interface ProfileDept {
|
||||||
id: number
|
id: number
|
||||||
|
@ -87,10 +86,7 @@ export function updateUserPwdApi(oldPassword: string, newPassword: string) {
|
||||||
|
|
||||||
// 用户头像上传
|
// 用户头像上传
|
||||||
export function uploadAvatarApi(data) {
|
export function uploadAvatarApi(data) {
|
||||||
const params: UploadFileParams = {
|
return defHttp.put({ url: Api.uploadAvatarApi, data: { file: data } })
|
||||||
file: data
|
|
||||||
}
|
|
||||||
return defHttp.uploadFile({ url: Api.uploadAvatarApi }, params)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 社交绑定,使用 code 授权码
|
// 社交绑定,使用 code 授权码
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
<div class="mb-2">头像</div>
|
<div class="mb-2">头像</div>
|
||||||
<CropperAvatar
|
<CropperAvatar
|
||||||
:value="avatar"
|
:value="avatar"
|
||||||
|
:uploadApi="uploadAvatarApi as any"
|
||||||
btnText="更换头像"
|
btnText="更换头像"
|
||||||
:btnProps="{ preIcon: 'ant-design:cloud-upload-outlined' }"
|
:btnProps="{ preIcon: 'ant-design:cloud-upload-outlined' }"
|
||||||
@change="updateAvatar"
|
@change="updateAvatar"
|
||||||
|
@ -56,7 +57,6 @@ async function updateAvatar({ src, data }) {
|
||||||
const userinfo = userStore.getUserInfo
|
const userinfo = userStore.getUserInfo
|
||||||
userinfo.user.avatar = src
|
userinfo.user.avatar = src
|
||||||
userStore.setUserInfo(userinfo)
|
userStore.setUserInfo(userinfo)
|
||||||
console.log('data', data)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleSubmit() {
|
async function handleSubmit() {
|
||||||
|
|
|
@ -12,6 +12,30 @@ export interface ListItem {
|
||||||
color?: string
|
color?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// tab的list
|
||||||
|
export const settingList = [
|
||||||
|
{
|
||||||
|
key: '1',
|
||||||
|
name: '基本设置',
|
||||||
|
component: 'BaseSetting'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '2',
|
||||||
|
name: '安全设置',
|
||||||
|
component: 'SecureSetting'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '3',
|
||||||
|
name: '账号绑定',
|
||||||
|
component: 'AccountBind'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: '4',
|
||||||
|
name: '新消息通知',
|
||||||
|
component: 'MsgNotify'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
// 基础设置 form
|
// 基础设置 form
|
||||||
export const baseSetschemas: FormSchema[] = [
|
export const baseSetschemas: FormSchema[] = [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue