Merge branch 'master' of http://111.229.35.227:3000/gitadmin/wms-antdvue
# Conflicts: # src/App.vue
This commit is contained in:
commit
cfce325111
@ -139,7 +139,7 @@
|
|||||||
DownloadOutlined,
|
DownloadOutlined,
|
||||||
UploadOutlined,
|
UploadOutlined,
|
||||||
PrinterOutlined,
|
PrinterOutlined,
|
||||||
CommentOutlined
|
CommentOutlined,
|
||||||
} from '@ant-design/icons-vue';
|
} from '@ant-design/icons-vue';
|
||||||
import { useForm } from '@/components/Form/index';
|
import { useForm } from '@/components/Form/index';
|
||||||
import {
|
import {
|
||||||
|
@ -1,17 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-modal
|
<a-modal v-model:visible="props.visible" title="发送消息" width="800px" @cancel="dialogClose">
|
||||||
v-model:visible="props.visible"
|
|
||||||
title="发送消息"
|
|
||||||
width="800px"
|
|
||||||
@cancel="dialogClose"
|
|
||||||
>
|
|
||||||
<a-form :model="formData" :label-col="{ style: { width: '10-0px' } }" ref="formRef">
|
<a-form :model="formData" :label-col="{ style: { width: '10-0px' } }" ref="formRef">
|
||||||
<a-form-item
|
<a-form-item
|
||||||
label="消息内容"
|
label="消息内容"
|
||||||
name="message"
|
name="message"
|
||||||
:rules="{ required: true, message: '请输入消息内容', trigger: 'blur' }"
|
: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-item>
|
||||||
</a-form>
|
</a-form>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
|
Loading…
Reference in New Issue
Block a user