1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
| <script setup lang="ts">
| import type { Recordable } from '@vben/types';
|
| import type { UserProfile } from '#/api/system/profile/model';
|
| import { onMounted } from 'vue';
|
| import { DictEnum } from '@vben/constants';
| import { useUserStore } from '@vben/stores';
|
| import { pick } from 'lodash-es';
|
| import { useVbenForm, z } from '#/adapter/form';
| import { userProfileUpdate } from '#/api/system/profile';
| import { useAuthStore } from '#/store';
| import { getDictOptions } from '#/utils/dict';
|
| import { emitter } from '../mitt';
|
| const props = defineProps<{ profile: UserProfile }>();
|
| const userStore = useUserStore();
| const authStore = useAuthStore();
|
| const [BasicForm, formApi] = useVbenForm({
| actionWrapperClass: 'text-left ml-[68px] mb-[16px]',
| commonConfig: {
| labelWidth: 60,
| },
| handleSubmit,
| resetButtonOptions: {
| show: false,
| },
| schema: [
| {
| component: 'Input',
| dependencies: {
| show: () => false,
| triggerFields: [''],
| },
| fieldName: 'userId',
| label: '用户ID',
| rules: 'required',
| },
| {
| component: 'Input',
| fieldName: 'nickName',
| label: '昵称',
| rules: 'required',
| },
| {
| component: 'Input',
| fieldName: 'email',
| label: '邮箱',
| rules: z.string().email('请输入正确的邮箱'),
| },
| {
| component: 'RadioGroup',
| componentProps: {
| buttonStyle: 'solid',
| options: getDictOptions(DictEnum.SYS_USER_SEX),
| optionType: 'button',
| },
| defaultValue: '0',
| fieldName: 'sex',
| label: '性别',
| rules: 'required',
| },
| {
| component: 'Input',
| fieldName: 'phonenumber',
| label: '电话',
| rules: z.string().regex(/^1[3-9]\d{9}$/, '请输入正确的电话'),
| },
| ],
| submitButtonOptions: {
| content: '更新信息',
| },
| });
|
| function buttonLoading(loading: boolean) {
| formApi.setState((prev) => ({
| ...prev,
| submitButtonOptions: { ...prev.submitButtonOptions, loading },
| }));
| }
|
| async function handleSubmit(values: Recordable<any>) {
| try {
| buttonLoading(true);
| await userProfileUpdate(values);
| // 更新store
| const userInfo = await authStore.fetchUserInfo();
| userStore.setUserInfo(userInfo);
| // 左边reload
| emitter.emit('updateProfile');
| } catch (error) {
| console.error(error);
| } finally {
| buttonLoading(false);
| }
| }
|
| onMounted(() => {
| const data = pick(props.profile.user, [
| 'userId',
| 'nickName',
| 'email',
| 'phonenumber',
| 'sex',
| ]);
| formApi.setValues(data);
| });
| </script>
|
| <template>
| <div class="mt-[16px] md:w-full lg:w-1/2 2xl:w-2/5">
| <BasicForm />
| </div>
| </template>
|
|