|
|
|
@ -1,8 +1,10 @@
|
|
|
|
|
<template> |
|
|
|
|
<cs-page isCustom> |
|
|
|
|
<template #header> |
|
|
|
|
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> |
|
|
|
|
<u-icon name="arrow-left" v-if="form.mobile"></u-icon> |
|
|
|
|
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px" @click="goBack"> |
|
|
|
|
<view class="icon-box" v-if="form.audit"> |
|
|
|
|
<u-icon name="arrow-left" size="12"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
<text class="wd-font-800 wd-text-16">编辑个人信息</text> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
@ -36,18 +38,14 @@
|
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 用户性别 --> |
|
|
|
|
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center"> |
|
|
|
|
<view |
|
|
|
|
class="section wd-flex wd-flex-row wd-justify-between wd-items-center" |
|
|
|
|
@click="showPicker('system_user_sex', 'sex')" |
|
|
|
|
> |
|
|
|
|
<text class="wd-font-800">性别</text> |
|
|
|
|
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> |
|
|
|
|
<input |
|
|
|
|
class="wd-text-right" |
|
|
|
|
type="number" |
|
|
|
|
placeholder-class="txt" |
|
|
|
|
placeholder="请选择性别" |
|
|
|
|
v-model="form.sex" |
|
|
|
|
disabled |
|
|
|
|
@click="showPicker()" |
|
|
|
|
/> |
|
|
|
|
<text v-if="form.sex">{{ $dict.echoDicValue(dictMap.system_user_sex, form.sex.toString()) }}</text> |
|
|
|
|
<text class="placeholder" v-else>请选择性别</text> |
|
|
|
|
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -66,76 +64,75 @@
|
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 所属部门 --> |
|
|
|
|
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center"> |
|
|
|
|
<view |
|
|
|
|
class="section wd-flex wd-flex-row wd-justify-between wd-items-center" |
|
|
|
|
@click="showPicker('dept', 'deptId')" |
|
|
|
|
> |
|
|
|
|
<text class="wd-font-800">部门</text> |
|
|
|
|
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> |
|
|
|
|
<input |
|
|
|
|
class="wd-text-right" |
|
|
|
|
type="number" |
|
|
|
|
placeholder-class="txt" |
|
|
|
|
placeholder="请选择部门" |
|
|
|
|
v-model="form.dept" |
|
|
|
|
disabled |
|
|
|
|
@click="showPicker()" |
|
|
|
|
/> |
|
|
|
|
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- 身份 --> |
|
|
|
|
<view class="section wd-flex wd-flex-row wd-justify-between wd-items-center" @click="showPicker()"> |
|
|
|
|
<text class="wd-font-800">角色</text> |
|
|
|
|
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px"> |
|
|
|
|
<text v-if="form.userType">{{ $dict.echoDicValue(dictMap.wx_user_type, form.userType) }}</text> |
|
|
|
|
<text class="placeholder" v-else>请选择角色</text> |
|
|
|
|
<text v-if="form.deptId">{{ $dict.echoDicValue(dictMap.dept, form.deptId) }}</text> |
|
|
|
|
<text class="placeholder" v-else>请选择部门</text> |
|
|
|
|
<u-icon name="arrow-right" color="#99A1B7" size="16"></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<button class="button">提交</button> |
|
|
|
|
<button class="button" v-if="form.audit == 1"> |
|
|
|
|
{{ $dict.echoDicValue(dictMap.user_audit_type, form.audit) }} |
|
|
|
|
</button> |
|
|
|
|
<button class="button" @click="submit" v-else>提交</button> |
|
|
|
|
</view> |
|
|
|
|
<u-picker |
|
|
|
|
:show="picker.show" |
|
|
|
|
:columns="picker.columns" |
|
|
|
|
:columns="picker.data" |
|
|
|
|
@cancel="closePicker" |
|
|
|
|
closeOnClickOverlay |
|
|
|
|
keyName="label" |
|
|
|
|
ref="uPicker" |
|
|
|
|
@close="closePicker" |
|
|
|
|
@confirm="confirmPicker" |
|
|
|
|
></u-picker> |
|
|
|
|
</cs-page> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { getUserProfile, uploadAvatar } from '@/api/system/user.js' |
|
|
|
|
import { getDictBatchByType } from '@/api/system/dict.js' |
|
|
|
|
import { getUserProfile, updateUserProfile } from '@/api/system/user.js' |
|
|
|
|
import { uploadFile } from '@/api/system/file.js' |
|
|
|
|
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
dictMap: {}, |
|
|
|
|
deptTree: [], |
|
|
|
|
form: { |
|
|
|
|
avatar: undefined, |
|
|
|
|
realName: undefined, |
|
|
|
|
mobile: undefined, |
|
|
|
|
department: undefined, |
|
|
|
|
deptId: undefined, |
|
|
|
|
sex: undefined |
|
|
|
|
}, |
|
|
|
|
picker: { |
|
|
|
|
show: false, |
|
|
|
|
colums: [] |
|
|
|
|
key: '', |
|
|
|
|
data: [] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad() { |
|
|
|
|
this.getDict() |
|
|
|
|
async onLoad() { |
|
|
|
|
await this.getDict() |
|
|
|
|
}, |
|
|
|
|
onShow() { |
|
|
|
|
// this.init() |
|
|
|
|
this.init() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
showPicker() { |
|
|
|
|
showPicker(type, key) { |
|
|
|
|
this.picker.data.push(this.dictMap[type]) |
|
|
|
|
this.picker.key = key |
|
|
|
|
this.picker.show = true |
|
|
|
|
}, |
|
|
|
|
closePicker() { |
|
|
|
|
this.picker = { |
|
|
|
|
show: false, |
|
|
|
|
colums: [] |
|
|
|
|
key: '', |
|
|
|
|
data: [] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
init() { |
|
|
|
@ -143,22 +140,96 @@ export default {
|
|
|
|
|
this.form = res.data |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
getDict() { |
|
|
|
|
getDictBatchByType({ type: ['system_user_sex', 'wx_user_type'].join(',') }).then(res => { |
|
|
|
|
this.dictMap = res.data |
|
|
|
|
async getDict() { |
|
|
|
|
const dict = await getDictBatchByType({ type: ['system_user_sex', 'user_audit_type'].join(',') }) |
|
|
|
|
|
|
|
|
|
const dept = await getDeptTree() |
|
|
|
|
this.dictMap = { |
|
|
|
|
...dict.data, |
|
|
|
|
dept: dept.data.map(i => { |
|
|
|
|
return { |
|
|
|
|
...i, |
|
|
|
|
label: i.name, |
|
|
|
|
value: i.id |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
chooseAvatar(e) { |
|
|
|
|
const data = { |
|
|
|
|
name: 'avatarFile', |
|
|
|
|
name: 'file', |
|
|
|
|
filePath: e.detail.avatarUrl |
|
|
|
|
} |
|
|
|
|
uploadAvatar(data).then(res => { |
|
|
|
|
this.init() |
|
|
|
|
uploadFile(data).then(res => { |
|
|
|
|
this.form.avatar = res.data |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
validateForm() { |
|
|
|
|
const requiredFields = [ |
|
|
|
|
{ |
|
|
|
|
key: 'avatar', |
|
|
|
|
message: '请上传头像' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
key: 'realName', |
|
|
|
|
message: '真实姓名不能为空' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
key: 'sex', |
|
|
|
|
message: '请选择性别' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
key: 'mobile', |
|
|
|
|
message: '手机号码不能为空' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
key: 'deptId', |
|
|
|
|
message: '请选择所属部门' |
|
|
|
|
} |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
for (const field of requiredFields) { |
|
|
|
|
if (!this.form[field.key]) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: field.message, |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const mobilePattern = /^1[3-9]\d{9}$/ // 中国手机号正则表达式 |
|
|
|
|
if (!mobilePattern.test(this.form.mobile)) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '请输入有效的手机号', |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
return false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return true |
|
|
|
|
}, |
|
|
|
|
submit() { |
|
|
|
|
if (!this.validateForm()) return |
|
|
|
|
updateUserProfile(this.form).then(res => { |
|
|
|
|
console.log(res) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
confirmPicker(e) { |
|
|
|
|
const { value } = e |
|
|
|
|
this.form[this.picker.key] = value[0].value |
|
|
|
|
this.closePicker() |
|
|
|
|
}, |
|
|
|
|
goBack() { |
|
|
|
|
if (this.form.audit) { |
|
|
|
|
uni.switchTab({ |
|
|
|
|
url: '/pages/owner' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|