useDrawer.vue
3.78 KB
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
121
122
123
124
125
126
127
128
129
<template>
<div class="drawer-class">
<BasicDrawer
v-bind="$attrs"
@register="registerDrawer"
showFooter
:title="getTitle"
width="700px"
@ok="handleSubmit"
>
<BasicForm @register="registerForm" />
<CpnsTenantSet ref="getChildData" :parentData="parentSetData" />
</BasicDrawer>
</div>
</template>
<script lang="ts">
import { defineComponent, ref, computed, unref, getCurrentInstance, reactive } from 'vue';
import { BasicForm, useForm } from '/@/components/Form';
import { formSchema } from './config';
import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
import CpnsTenantSet from './cpns/index.vue';
import { saveTenantProfileApi } from '/@/api/tenant/tenantApi';
import { useMessage } from '/@/hooks/web/useMessage';
export default defineComponent({
name: 'ConfigDrawer',
components: { BasicDrawer, BasicForm, CpnsTenantSet },
emits: ['success', 'register'],
setup(_, { emit }) {
const { createMessage } = useMessage();
const isUpdate = ref(true);
let postAllData: any = reactive({});
const parentSetData: any = ref(null);
let getValuesFormData: any = reactive({});
const { proxy } = getCurrentInstance() as any;
const getChildData = ref(null);
const editGetId: any = ref('');
const [registerForm, { getFieldsValue, resetFields, setFieldsValue }] = useForm({
schemas: formSchema,
showActionButtonGroup: false,
});
const [registerDrawer, { setDrawerProps, closeDrawer }] = useDrawerInner(async (data) => {
//清除表单值
proxy.$refs.getChildData.funcResetFields();
await resetFields();
setDrawerProps({ confirmLoading: false });
isUpdate.value = !!data?.isUpdate;
if (!unref(isUpdate)) {
editGetId.value = '';
}
//编辑
if (unref(isUpdate)) {
parentSetData.value = { ...data.record.profileData.configuration };
proxy.$refs.getChildData.setFieldsValueFunc(parentSetData.value);
editGetId.value = data.record.id;
await setFieldsValue({
...data.record,
});
}
});
const getTitle = computed(() => (!unref(isUpdate) ? '新增租户配置' : '编辑租户配置'));
const getAllFieldsFunc = () => {
getValuesFormData = getFieldsValue();
let getChildValues = proxy.$refs.getChildData.getAllFields();
let profileData1 = {
configuration: getChildValues,
};
const id: any = {
id: unref(isUpdate) ? editGetId.value : '',
};
const createTime = {
createdTime: Date.now(),
};
Object.assign(
postAllData,
{
profileData: profileData1,
},
getValuesFormData,
id,
createTime
);
if (!unref(isUpdate)) {
delete postAllData.id;
}
};
async function handleSubmit() {
if (!unref(isUpdate)) {
getAllFieldsFunc();
await saveTenantProfileApi(postAllData);
createMessage.success('租户配置新增成功');
closeDrawer();
emit('success');
resetFields();
} else {
getAllFieldsFunc();
await saveTenantProfileApi(postAllData);
createMessage.success('租户配置编辑成功');
closeDrawer();
emit('success');
}
}
return {
parentSetData,
getChildData,
registerDrawer,
registerForm,
getTitle,
handleSubmit,
};
},
});
</script>
<style lang="less">
.drawer-class {
.ant-row {
.ant-col {
:deep .ant-input-number {
width: 34vw !important;
}
}
}
}
</style>