You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
2 years ago
|
<template>
|
||
|
<BasicModal v-bind="$attrs" @register="registerModal" :title="isUpdate ? '编辑' : '新增'" @ok="handleSubmit">
|
||
|
<BasicForm @register="registerForm" />
|
||
|
</BasicModal>
|
||
|
</template>
|
||
|
<script lang="ts" setup name="RoleMenuModal">
|
||
|
import { ref, unref } from 'vue'
|
||
|
import { BasicModal, useModalInner } from '@/components/Modal'
|
||
|
import { BasicForm, useForm } from '@/components/Form'
|
||
|
import { dataScopeFormSchema } from './role.data'
|
||
|
import { createRole, getRole, updateRole } from '@/api/system/role'
|
||
|
|
||
|
const emit = defineEmits(['success', 'register'])
|
||
|
const isUpdate = ref(true)
|
||
|
|
||
|
const [registerForm, { setFieldsValue, resetFields, validate }] = useForm({
|
||
|
labelWidth: 120,
|
||
|
baseColProps: { span: 24 },
|
||
|
schemas: dataScopeFormSchema,
|
||
|
showActionButtonGroup: false,
|
||
|
actionColOptions: { span: 23 }
|
||
|
})
|
||
|
|
||
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||
|
resetFields()
|
||
|
setModalProps({ confirmLoading: false })
|
||
|
isUpdate.value = !!data?.isUpdate
|
||
|
|
||
|
if (unref(isUpdate)) {
|
||
|
const res = await getRole(data.record.id)
|
||
|
setFieldsValue({ ...res })
|
||
|
}
|
||
|
})
|
||
|
|
||
|
async function handleSubmit() {
|
||
|
try {
|
||
|
const values = await validate()
|
||
|
setModalProps({ confirmLoading: true })
|
||
|
if (unref(isUpdate)) {
|
||
|
await updateRole(values)
|
||
|
} else {
|
||
|
await createRole(values)
|
||
|
}
|
||
|
closeModal()
|
||
|
emit('success')
|
||
|
} finally {
|
||
|
setModalProps({ confirmLoading: false })
|
||
|
}
|
||
|
}
|
||
|
</script>
|