mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-16 00:32:02 +08:00
* fix: 个人中心按钮i18n * fix: eslint format * fix: 调整label宽度让英文显示在一行 * chore: 调整label小点 * fix: import --------- Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
60 lines
1.2 KiB
Vue
60 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import type { Recordable } from '@vben/types';
|
|
|
|
import type { VbenFormSchema } from '@vben-core/form-ui';
|
|
|
|
import { computed, reactive } from 'vue';
|
|
|
|
import { $t } from '@vben/locales';
|
|
|
|
import { useVbenForm } from '@vben-core/form-ui';
|
|
import { VbenButton } from '@vben-core/shadcn-ui';
|
|
|
|
interface Props {
|
|
formSchema?: VbenFormSchema[];
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
formSchema: () => [],
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
submit: [Recordable<any>];
|
|
}>();
|
|
|
|
const [Form, formApi] = useVbenForm(
|
|
reactive({
|
|
commonConfig: {
|
|
labelWidth: 130,
|
|
// 所有表单项
|
|
componentProps: {
|
|
class: 'w-full',
|
|
},
|
|
},
|
|
layout: 'horizontal',
|
|
schema: computed(() => props.formSchema),
|
|
showDefaultActions: false,
|
|
}),
|
|
);
|
|
|
|
async function handleSubmit() {
|
|
const { valid } = await formApi.validate();
|
|
const values = await formApi.getValues();
|
|
if (valid) {
|
|
emit('submit', values);
|
|
}
|
|
}
|
|
|
|
defineExpose({
|
|
getFormApi: () => formApi,
|
|
});
|
|
</script>
|
|
<template>
|
|
<div>
|
|
<Form />
|
|
<VbenButton type="submit" class="mt-4" @click="handleSubmit">
|
|
{{ $t('profile.updatePassword') }}
|
|
</VbenButton>
|
|
</div>
|
|
</template>
|