2023-04-03 15:26:56 +08:00
|
|
|
|
<template>
|
|
|
|
|
<ContentWrap>
|
|
|
|
|
<!-- 表单设计器 -->
|
2023-06-13 13:14:20 +08:00
|
|
|
|
<FcDesigner ref="designer" height="780px">
|
2023-04-03 15:26:56 +08:00
|
|
|
|
<template #handle>
|
|
|
|
|
<XButton type="primary" title="生成JSON" @click="showJson" />
|
|
|
|
|
<XButton type="primary" title="生成Options" @click="showOption" />
|
|
|
|
|
<XButton type="primary" :title="t('action.save')" @click="handleSave" />
|
|
|
|
|
</template>
|
2023-06-13 13:14:20 +08:00
|
|
|
|
</FcDesigner>
|
2023-04-03 15:26:56 +08:00
|
|
|
|
<Dialog :title="dialogTitle" v-model="dialogVisible1" maxHeight="600">
|
|
|
|
|
<div ref="editor" v-if="dialogVisible1">
|
|
|
|
|
<XTextButton style="float: right" :title="t('common.copy')" @click="copy(formValue)" />
|
|
|
|
|
<el-scrollbar height="580">
|
|
|
|
|
<div v-highlight>
|
|
|
|
|
<code class="hljs">
|
|
|
|
|
{{ formValue }}
|
|
|
|
|
</code>
|
|
|
|
|
</div>
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
</div>
|
|
|
|
|
</Dialog>
|
|
|
|
|
<!-- 表单保存的弹窗 -->
|
|
|
|
|
<XModal v-model="dialogVisible" title="保存表单">
|
|
|
|
|
<el-form ref="formRef" :model="formValues" :rules="formRules" label-width="80px">
|
|
|
|
|
<el-form-item label="表单名" prop="name">
|
|
|
|
|
<el-input v-model="formValues.name" placeholder="请输入表单名" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="开启状态" prop="status">
|
|
|
|
|
<el-radio-group v-model="formValues.status">
|
|
|
|
|
<el-radio
|
|
|
|
|
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.value"
|
|
|
|
|
>
|
|
|
|
|
{{ dict.label }}
|
|
|
|
|
</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="formValues.remark" type="textarea" placeholder="请输入备注" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<!-- 操作按钮 -->
|
|
|
|
|
<template #footer>
|
|
|
|
|
<!-- 按钮:保存 -->
|
|
|
|
|
<XButton
|
|
|
|
|
type="primary"
|
|
|
|
|
:title="t('action.save')"
|
|
|
|
|
:loading="dialogLoading"
|
|
|
|
|
@click="submitForm"
|
|
|
|
|
/>
|
|
|
|
|
<!-- 按钮:关闭 -->
|
|
|
|
|
<XButton :title="t('dialog.close')" @click="dialogVisible = false" />
|
|
|
|
|
</template>
|
|
|
|
|
</XModal>
|
|
|
|
|
</ContentWrap>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts" name="BpmFormEditor">
|
|
|
|
|
import { FormInstance } from 'element-plus'
|
|
|
|
|
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
|
|
|
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
|
|
|
import * as FormApi from '@/api/bpm/form'
|
2023-06-13 13:14:20 +08:00
|
|
|
|
import FcDesigner from '@form-create/designer'
|
2023-04-03 15:26:56 +08:00
|
|
|
|
import { encodeConf, encodeFields, setConfAndFields } from '@/utils/formCreate'
|
2023-04-03 17:48:38 +08:00
|
|
|
|
// import { useClipboard } from '@vueuse/core'
|
2023-04-03 15:26:56 +08:00
|
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
const message = useMessage() // 消息
|
|
|
|
|
const { query } = useRoute() // 路由
|
|
|
|
|
|
|
|
|
|
const designer = ref() // 表单设计器
|
|
|
|
|
const type = ref(-1)
|
|
|
|
|
const formValue = ref('')
|
|
|
|
|
const dialogTitle = ref('')
|
|
|
|
|
const dialogVisible = ref(false) // 弹窗是否展示
|
|
|
|
|
const dialogVisible1 = ref(false) // 弹窗是否展示
|
|
|
|
|
const dialogLoading = ref(false) // 弹窗的加载中
|
|
|
|
|
const formRef = ref<FormInstance>()
|
|
|
|
|
const formRules = reactive({
|
|
|
|
|
name: [{ required: true, message: '表单名不能为空', trigger: 'blur' }],
|
|
|
|
|
status: [{ required: true, message: '开启状态不能为空', trigger: 'blur' }]
|
|
|
|
|
})
|
|
|
|
|
const formValues = ref({
|
|
|
|
|
name: '',
|
|
|
|
|
status: CommonStatusEnum.ENABLE,
|
|
|
|
|
remark: ''
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 处理保存按钮
|
|
|
|
|
const handleSave = () => {
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 提交保存表单
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
// 参数校验
|
|
|
|
|
const elForm = unref(formRef)
|
|
|
|
|
if (!elForm) return
|
|
|
|
|
const valid = await elForm.validate()
|
|
|
|
|
if (!valid) return
|
|
|
|
|
|
|
|
|
|
// 提交请求
|
|
|
|
|
dialogLoading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = formValues.value as FormApi.FormVO
|
|
|
|
|
data.conf = encodeConf(designer) // 表单配置
|
|
|
|
|
data.fields = encodeFields(designer) // 表单字段
|
|
|
|
|
if (!data.id) {
|
|
|
|
|
await FormApi.createFormApi(data)
|
|
|
|
|
message.success(t('common.createSuccess'))
|
|
|
|
|
} else {
|
|
|
|
|
await FormApi.updateFormApi(data)
|
|
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
|
|
}
|
|
|
|
|
dialogVisible.value = false
|
|
|
|
|
} finally {
|
|
|
|
|
dialogLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const showJson = () => {
|
|
|
|
|
openModel('生成JSON')
|
|
|
|
|
type.value = 0
|
|
|
|
|
formValue.value = designer.value.getRule()
|
|
|
|
|
}
|
|
|
|
|
const showOption = () => {
|
|
|
|
|
openModel('生成Options')
|
|
|
|
|
type.value = 1
|
|
|
|
|
formValue.value = designer.value.getOption()
|
|
|
|
|
}
|
|
|
|
|
const openModel = (title: string) => {
|
|
|
|
|
dialogVisible1.value = true
|
|
|
|
|
dialogTitle.value = title
|
|
|
|
|
}
|
|
|
|
|
/** 复制 **/
|
|
|
|
|
const copy = async (text: string) => {
|
|
|
|
|
// const { copy, copied, isSupported } = useClipboard({ source: JSON.stringify(text) })
|
|
|
|
|
// if (!isSupported.value) {
|
|
|
|
|
// message.error(t('common.copyError'))
|
|
|
|
|
// } else {
|
|
|
|
|
// await copy()
|
|
|
|
|
// if (unref(copied.value)) {
|
|
|
|
|
// message.success(t('common.copySuccess'))
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
let url = JSON.stringify(text)
|
|
|
|
|
let oInput = document.createElement('textarea')
|
|
|
|
|
oInput.value = url
|
|
|
|
|
document.body.appendChild(oInput)
|
|
|
|
|
oInput.select() // 选择对象;
|
|
|
|
|
// console.log(oInput.value)
|
|
|
|
|
document.execCommand('Copy') // 执行浏览器复制命令
|
|
|
|
|
message.success(t('common.copySuccess'))
|
|
|
|
|
oInput.remove()
|
|
|
|
|
}
|
|
|
|
|
// ========== 初始化 ==========
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
// 场景一:新增表单
|
|
|
|
|
const id = query.id as unknown as number
|
|
|
|
|
if (!id) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// 场景二:修改表单
|
|
|
|
|
FormApi.getFormApi(id).then((data) => {
|
|
|
|
|
formValues.value = data
|
|
|
|
|
setConfAndFields(designer, data.conf, data.fields)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|