数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

424 lines
13 KiB

2 years ago
<!--
@ 作者: 秦东
@ 时间: 2023-05-26 10:35:30
@ 备注:
-->
<script lang='ts' setup>
import '@/assets/scss/element-var.scss'
import '@/assets/scss/index.scss'
import '@/assets/iconfont/iconfont.css'
2 years ago
import 'element-plus/dist/index.css'
import { useDesignFormStore } from '@/store/DesignForm/designForm'
import { useRoute, useRouter } from 'vue-router'
import {
json2string,
objToStringify,
string2json,
stringToObj
} from '@/utils/DesignForm/form'
import { getRequest } from '@/api/DesignForm'
import { afterResponse, beforeRequest, onChange } from '@/api/DesignForm/utils'
//引入页面
import DragControl from '@/components/DesignForm/dragControl.vue';
import HeadTools from '@/components/DesignForm/public/headTools.vue';
import FormDesign from '@/components/DesignForm/public/form/form.vue'
2 years ago
import FormControlAttr from '@/components/DesignForm/formControlAttr.vue';
import VueFile from '@/components/DesignForm/vueFile.vue'
import AceDrawer from '@/components/DesignForm/aceDrawer.vue'
import { ref, reactive, provide, onMounted } from 'vue'
import { ElMessage } from 'element-plus'
import { useLayoutStore } from '@/store/DesignForm/layout'
import { FormData,formStruct,DrawerStruct } from '@/api/DesignForm/types'
const layoutStore = useLayoutStore()
layoutStore.changeBreadcrumb([{ label: '系统工具' }, { label: '表单设计' }])
const store = useDesignFormStore()
const router = useRouter()
const route: any = useRoute().query || {}
2 years ago
const state = reactive<formStruct>({
formData: {
list: [],
form: {
2 years ago
size: 'default',
name:''
},
2 years ago
config: {}
},
editor: {},
loading: false,
formDataPreview: {},
previewVisible: false, // 预览窗口
designType: route.type, // 当前页面设计类型,有效值search
formDict: {},
formOtherData: {
source: route.source || '',
formName: '未命名表单'
}
})
2 years ago
const drawer = reactive<DrawerStruct>({
visible: false,
type: '',
title: '',
codeType: '',
direction: undefined, //弹出方向rtl / ltr
2 years ago
callback: ''
})
2 years ago
const vueFileEl = ref()
const formControlAttrEl = ref()
// 当前表单设计类型,供各子组件调用以展示不同页面,统一方式不需要每个组件都从路由中取
provide('formDesignType', state.designType)
const getInitData = () => {
const id = route.id // 当前记录保存的id
if (id) {
// 获取初始表单数据
state.loading = true
getRequest('designById', { id: id })
.then(res => {
const result = res.data
// 初始设计搜索时res.data=''
if (result.data) {
state.formData = stringToObj(result.data)
}
state.formDict = string2json(result.dict)
// 恢复表单名称
state.formOtherData.source = result.source
state.formOtherData.formName = result.name
if (result.source && state.designType !== 'search') {
// 加载属性侧边栏的字段标识,搜索时不需要请求
formControlAttrEl.value.getFormFieldBySource(result.source)
}
state.loading = false
})
.catch((res: any) => {
// console.log(res)
ElMessage.error(res.message || '加载异常')
state.loading = false
})
}
}
const headToolClick = (type: string) => {
switch (type) {
case 'del':
state.formData.list = []
store.setActiveKey('')
store.setControlAttr({})
break
case 'eye':
// 打开预览窗口
store.setActiveKey('')
store.setControlAttr({})
state.previewVisible = true
// eslint-disable-next-line no-case-declarations
let stringPreview = objToStringify(state.formData) // 防止预览窗口数据修改影响
// eslint-disable-next-line no-case-declarations
const formName = state.formData.form.name
// eslint-disable-next-line no-case-declarations
const reg = new RegExp(`get${formName}ControlByName`, 'g')
stringPreview = stringPreview.replace(
reg,
`getPreview${formName}ControlByName`
)
state.formDataPreview = stringToObj(stringPreview)
state.formDataPreview.form.name = `Preview${formName}` // 修改下表单名
break
case 'json':
// 生成脚本预览
openAceEditDrawer({
direction: 'rtl',
content: state.formData,
title: '可编辑修改或将已生成的脚本粘贴进来'
})
break
case 'save':
saveData()
break
case 'vue':
vueFileEl.value.open(state.formData)
break
}
}
// 弹窗确认
const dialogConfirm = (editVal: string) => {
// 生成脚本预览和导入json,都是将编辑器内容更新至state.formData
try {
if (typeof drawer.callback === 'function') {
// callback
const newObj =
drawer.codeType === 'json'
? string2json(editVal)
: stringToObj(editVal)
drawer.callback(newObj)
} else {
switch (drawer.type) {
case 'css':
// 表单属性-编辑表单样式
if (!state.formData.config) {
state.formData.config = {}
}
state.formData.config.style = editVal
break
case 'dict':
state.formDict = string2json(editVal)
break
case 'beforeRequest':
case 'beforeSubmit':
case 'afterResponse':
case 'afterSubmit':
case 'change':
if (!state.formData.events) {
state.formData.events = {}
}
state.formData.events[drawer.type] = stringToObj(editVal)
break
default:
state.formData = stringToObj(editVal)
}
}
dialogCancel()
} catch (res) {
// console.log(res.message)
//ElMessage.error(res.message)
}
}
// 将数据保存在服务端
const saveData = () => {
// 添加校验,没有选择数据源时则必须要配置接口url
const { addUrl, editUrl, requestUrl } = state.formData.config
if (
!state.formOtherData.source &&
(!addUrl || !editUrl || !requestUrl) &&
state.designType !== 'search'
) {
ElMessage.error('请选择数据源或配置接口url地址,否则表单无法提交保存')
return
}
let params: any = {
data: objToStringify(state.formData),
source: state.formOtherData.source, // 数据源允许在表单属性设置里修改的
name: state.formOtherData.formName, // 表单名称,用于在显示所有已创建的表单列表里显示
type: 1, // 1表单 2列表
dict: json2string(state.formDict)
}
let apiKey = 'designSave'
if (route.id) {
// 编辑状态 当前记录id
Object.assign(params, { id: route.id })
apiKey = 'designEdit'
}
// 列表搜索模式下只有修改
if (state.designType === 'search') {
params = {
data: objToStringify(state.formData),
dict: json2string(state.formDict),
id: route.id
}
}
state.loading = true
getRequest(apiKey, params)
.then((res: any) => {
ElMessage({
message: res.message || '保存成功!',
type: 'success'
})
// 根据不同情况跳转到不同地址
const path = route.redirect || '/design/form/list'
const query: any = {}
if (route.redirect && route.redirect.indexOf('?') !== -1) {
// 带有问号参数时,放在path传是有问题的,将id=1转为{id:1}
const p = route.redirect.split('?')[1]
const pSplit = p.split('&')
pSplit.forEach((item: string) => {
const splitItem = item.split('=')
query[splitItem[0]] = splitItem[1]
})
}
router.push({ path: path, query: query })
state.loading = false
})
.catch((res: any) => {
ElMessage.error(res.message || '保存异常')
state.loading = false
})
// 清空右侧内容管理菜单存在session的内容,刷新时可重新加载新菜单
if (!route.id) {
// 新增时
window.sessionStorage.removeItem('formMenuList')
}
// 清空右侧栏信息
store.setActiveKey('')
store.setControlAttr({})
2 years ago
}
const openAceEditDrawer = (params: any) => {
const { type, direction, codeType, title, callback, content } = params
drawer.direction = direction // 窗口位置ltr/rtl
drawer.type = type // 作为窗口唯一标识,在窗口关闭时可根据type作不同处理
drawer.codeType = codeType || '' // 显示代码类型
drawer.title = title ? `提示:${title}` : ''
drawer.visible = true
drawer.callback = callback
let editData =
codeType === 'json'
? json2string(content, true)
: objToStringify(content, true)
switch (type) {
case 'css':
editData = state.formData.config?.style || ''
break
case 'dict':
// 格式化一下
editData = json2string(state.formDict, true)
break
case 'beforeRequest':
case 'beforeSubmit':
case 'afterResponse':
case 'afterSubmit':
case 'change':
// eslint-disable-next-line no-case-declarations
const beforeData = state.formData.events || {}
if (beforeData[type]) {
editData = objToStringify(beforeData[type], true)
} else {
if (['afterResponse', 'afterSubmit'].includes(type)) {
editData = afterResponse
} else if (type === 'change') {
editData = onChange
} else {
editData = beforeRequest
}
}
break
// case 'afterResponse':
// case 'afterSubmit':
// const newData = state.formData.events || {}
// if (newData[type]) {
// editData = objToStringify(newData[type], true)
// } else {
// editData = afterResponse
// }
// break
case 'optionsParams':
if (!content) {
editData = beforeRequest
}
break
case 'optionsResult':
if (!content) {
editData = afterResponse
}
break
}
drawer.content = editData
2 years ago
}
const drawerBeforeClose = () => {
dialogCancel()
}
const dialogCancel = () => {
drawer.visible = false
drawer.type = ''
drawer.title = ''
drawer.codeType = ''
drawer.callback = ''
drawer.content = ''
}
// 预览窗口提交测试
const previewForm = ref()
const previewSubmit = () => {
previewForm.value.validate((valid: boolean, fields: any) => {
if (valid) {
// alert('校验通过')
ElMessage.success('校验通过')
console.log(fields)
} else {
// alert('校验不通过')
// console.log('error submit!', fields)
ElMessage.error('校验不通过')
return false
}
})
}
// 选择模板
const selectTemplate = (data: FormData) => {
state.formData = stringToObj(objToStringify(data))
}
// 搜索设计时左侧快速添加字段
const searchCheckField = (data: FormData) => {
state.formData.list.push(data)
}
getInitData()
// 从数据源点创建表单过来时,带有参数source
onMounted(() => {
if (route.source) {
formControlAttrEl.value.getFormFieldBySource(route.source)
}
})
2 years ago
</script>
<template>
<div class="design-container">
2 years ago
<DragControl
:formid="state.formOtherData.source"
@click-check="searchCheckField"
@click="selectTemplate"
/>
<div class="main-body">
2 years ago
<HeadTools @click="headToolClick" />
2 years ago
<div v-loading="state.loading" class="main-form">
<div v-if="state.formData.list.length === 0" class="empty-tips">
2 years ago
从左侧拖拽来添加组件
</div>
<FormDesign
:type="5"
2 years ago
:form-data="state.formData"
:dict="state.formDict"
/>
</div>
</div>
2 years ago
<!--面版右侧-->
<form-control-attr
ref="formControlAttrEl"
v-model:formOtherData="state.formOtherData"
:form-data="state.formData.form"
:form-config="state.formData.config"
@open-dialog="openAceEditDrawer"
/>
<ace-drawer
v-model="drawer.visible"
:title="drawer.title"
:direction="drawer.direction"
:content="drawer.content"
:code-type="drawer.codeType"
@before-close="drawerBeforeClose"
@confirm="dialogConfirm"
/>
<vue-file v-if="!['search'].includes(state.designType)" ref="vueFileEl" />
<el-dialog v-model="state.previewVisible" title="预览" :fullscreen="true">
<form-design
v-if="state.previewVisible"
ref="previewForm"
:form-data="state.formDataPreview"
:dict="state.formDict"
:type="1"
/>
<template #footer>
<div class="dialog-footer">
<el-button size="small" type="primary" @click="previewSubmit">
提交
</el-button>
<el-button size="small" @click="state.previewVisible = false">
取消
</el-button>
</div>
</template>
</el-dialog>
</div>
2 years ago
</template>
<style lang='scss' scoped>
</style>