| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <xn-form-container
- :title="formData.sensitivityId ? '编辑论坛-敏感词' : '增加论坛-敏感词'"
- :width="700"
- :visible="visible"
- :destroy-on-close="true"
- @close="onClose"
- >
- <a-form ref="formRef" :model="formData" :rules="formRules" layout="vertical">
- <a-form-item label="敏感词:" name="sensitivityWord">
- <a-input v-model:value="formData.sensitivityWord" placeholder="请输入敏感词" allow-clear />
- </a-form-item>
- </a-form>
- <template #footer>
- <a-button style="margin-right: 8px" @click="onClose">关闭</a-button>
- <a-button type="primary" @click="onSubmit" :loading="submitLoading">保存</a-button>
- </template>
- </xn-form-container>
- </template>
- <script setup name="forumSensitivityForm">
- import { cloneDeep } from 'lodash-es'
- import { required } from '@/utils/formRules'
- import forumSensitivityApi from '@/api/forum/forumSensitivityApi'
- // 抽屉状态
- const visible = ref(false)
- const emit = defineEmits({ successful: null })
- const formRef = ref()
- // 表单数据
- const formData = ref({})
- const submitLoading = ref(false)
- // 打开抽屉
- const onOpen = (record) => {
- visible.value = true
- if (record) {
- let recordData = cloneDeep(record)
- formData.value = Object.assign({}, recordData)
- }
- }
- // 关闭抽屉
- const onClose = () => {
- formRef.value.resetFields()
- formData.value = {}
- visible.value = false
- }
- // 默认要校验的
- const formRules = {
- }
- // 验证并提交数据
- const onSubmit = () => {
- formRef.value.validate().then(() => {
- submitLoading.value = true
- const formDataParam = cloneDeep(formData.value)
- forumSensitivityApi
- .forumSensitivitySubmitForm(formDataParam, formDataParam.sensitivityId)
- .then(() => {
- onClose()
- emit('successful')
- })
- .finally(() => {
- submitLoading.value = false
- })
- })
- }
- // 抛出函数
- defineExpose({
- onOpen
- })
- </script>
|