# Conflicts:
#	src/App.vue
This commit is contained in:
陈红丽 2024-12-19 10:31:55 +08:00
commit cfce325111
2 changed files with 7 additions and 12 deletions

View File

@ -139,7 +139,7 @@
DownloadOutlined,
UploadOutlined,
PrinterOutlined,
CommentOutlined
CommentOutlined,
} from '@ant-design/icons-vue';
import { useForm } from '@/components/Form/index';
import {

View File

@ -1,17 +1,12 @@
<template>
<a-modal
v-model:visible="props.visible"
title="发送消息"
width="800px"
@cancel="dialogClose"
>
<a-modal v-model:visible="props.visible" title="发送消息" width="800px" @cancel="dialogClose">
<a-form :model="formData" :label-col="{ style: { width: '10-0px' } }" ref="formRef">
<a-form-item
label="消息内容"
name="message"
:rules="{ required: true, message: '请输入消息内容', trigger: 'blur' }"
>
<a-textarea v-model:value="formData.message"/>
<a-textarea v-model:value="formData.message" />
</a-form-item>
</a-form>
<template #footer>