123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- ##判断数据字典
- #set( $dictCount = 0)
- #foreach ($column in $columns)
- #if(${column.dictType} != '')
- #set( $dictCount = $dictCount + 1)
- #end
- #end
- #set( $listSize = $!{dictColumns.size()})
- ##判断是否包含排序号字段
- #set( $hasUser = 0)
- ##判断是否包含用户选择框的标志位
- #set( $hasDept = 0)
- ##循环全部字段进行判断
- #foreach($column in $columns)
- #if($column.htmlType == "user")
- #set( $hasUser = $hasUser + 1)
- #elseif($column.htmlType == "dept")
- #set( $hasDept = $hasDept + 1)
- #end
- #end
- import AntModal from '@/components/pt/dialog/AntModal'
- import { get${BusinessName}, add${BusinessName}, update${BusinessName}, findMaxSort#foreach($column in $uniqueColumns)#set($attrName = $column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)}), check${attrName}Unique#end } from '@/api/${moduleName}/${businessName}'
- #if($hasUser > 0)
- import SelectUser from '@/components/pt/selectUser/SelectUser'
- #end
- #if($hasDept > 0)
- import SelectDept from '@/components/pt/selectDept/SelectDept'
- #end
- #if($hasAttach)
- import SysUpload from '@/components/pt/uploader'
- #end
- export default {
- name: 'CreateForm',
- props: {
- #foreach ($column in $columns)
- #if(${column.dictType} != '')
- ${column.javaField}Options: {
- type: Array,
- required: true
- },
- #end
- #end
- ${businessName}Options: {
- type: Array,
- required: true
- }
- },
- components: {
- AntModal#if($hasDept > 0 || $hasUser > 0 || $hasAttach),
- #end
- #if($hasUser > 0)
- SelectUser#if($hasDept > 0 || $hasAttach),
- #end
- #end
- #if($hasDept > 0)
- SelectDept#if($hasAttach),
- #end
- #end
- #if($hasAttach)
- SysUpload
- #else
- #end
- },
- data () {
- #foreach($column in $uniqueColumns)
- #set($attrName = $column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
- #set($parentheseIndex=$column.columnComment.indexOf("("))
- #if($parentheseIndex != -1)
- #set($comment=$column.columnComment.substring(0, $parentheseIndex))
- #else
- #set($comment=$column.columnComment)
- #end
- const validate${attrName} = (rule, value, callback) => {
- if (value === '' || value === undefined || value === null) {
- callback(new Error('${comment}不允许为空'))
- } else {
- check${attrName}Unique(this.form.id, this.form.${column.javaField})
- callback()
- }
- }
- #end
- return {
- open: false,
- closeDialog: true,
- spinning: false,
- delayTime: 100,
- labelCol: { span: 4 },
- wrapperCol: { span: 14 },
- loading: false,
- total: 0,
- disabled: false,
- id: undefined,
- formTitle: '添加${functionName}',
- currentRow: undefined,
- oldParentId: '',
- // 表单参数
- form: {
- id: undefined,
- parentId: undefined
- },
- #if($hasAttach)
- attachmentRefName: 'addUploaderFile', // 标志表单是否含有附件
- formId: '',
- #end
- rules: {
- #foreach($column in $requireColumns)
- #set($attrName = $column.javaField.substring(0,1).toUpperCase() + ${column.javaField.substring(1)})
- #set($parentheseIndex=$column.columnComment.indexOf("("))
- #if($parentheseIndex != -1)
- #set($comment=$column.columnComment.substring(0, $parentheseIndex))
- #else
- #set($comment=$column.columnComment)
- #end
- ${column.javaField}: [{ required: true, message: '${comment}不能为空',#foreach($uniqueColumn in $uniqueColumns)#if($column.javaField == $uniqueColumn.javaField) validator: validate${attrName},#break#end#end trigger: 'blur' }]#if($foreach.hasNext),
- #else
- #end
- #end
- }
- }
- },
- filters: {},
- created () {},
- computed: {},
- watch: {},
- mounted () {},
- methods: {
- onClose () {
- this.open = false
- this.reset()
- this.$emit('close')
- },
- // 取消按钮
- cancel () {
- this.open = false
- this.reset()
- this.$emit('close')
- },
- // 表单重置
- reset () {
- this.form = {
- id: undefined,
- #foreach ($column in $editColumns)
- #set($javaFieldValue = "undefined")
- #if($column.javaField == "status")
- #set($javaFieldValue = "'0'")
- #else
- #set($javaFieldValue = "undefined")
- #end
- ${column.javaField}: ${javaFieldValue}#if($foreach.hasNext),
- #else
- #end
- #end
- }
- #if($hasAttach)
- if (this.formId) {
- // 清空附件的formId
- this.formId = ''
- }
- #end
- #if($hasAttach)
- if (this.formId) {
- // 清空附件的formId
- this.formId = ''
- }
- #end
- },
- /** 新增按钮操作 */
- handleAdd (row) {
- this.reset()
- this.$emit('select-tree')
- this.oldParentId = ''
- if (row != null && row.id) {
- this.currentRow = row
- this.oldParentId = row.id
- this.form.parentId = row.id
- } else {
- this.form.parentId = 0
- }
- /** 获取最大编号 */
- findMaxSort(this.form.parentId).then(response => {
- this.form.treeSort = response.data
- this.open = true
- this.formTitle = '添加${functionName}'
- })
- #if(${isSub} == 'true')
- this.form.${subTableFkNameUnCap} = this.${subTableFkNameUnCap}
- #end
- },
- #if($hasCopyRecordOption)
- /** 修改按钮操作 */
- handleCopy (row) {
- this.formTitle = '复制${functionName}'
- this.reset()
- this.$emit('select-tree', row)
- this.open = true
- this.spinning = !this.spinning
- this.currentRow = row
- const ${businessName}Id = row.id
- get${BusinessName}(${businessName}Id).then(response => {
- #foreach($column in $columns)
- #set($javaField=$column.javaField)
- #if($column.htmlType == "selectMultiple" || $column.htmlType == "checkbox")
- if (response.data.$javaField !== null) {
- response.data.$javaField = response.data.$!{javaField}.split(',')
- } else {
- response.data.$javaField = []
- }
- #elseif($column.htmlType == "user" || $column.htmlType == "dept")
- response.data.$javaField = { ids: response.data.$javaField, names: response.data.$!{javaField}Name }
- #end
- #end
- this.form = response.data
- this.form.id = undefined
- /** 获取最大编号 */
- findMaxSort(this.form.parentId).then(response => {
- this.form.treeSort = response.data
- })
- this.oldParentId = response.data.parentId
- this.spinning = !this.spinning
- })
- },
- #end
- /** 修改按钮操作 */
- handleUpdate (row) {
- this.reset()
- this.$emit('select-tree', row)
- this.open = true
- this.spinning = !this.spinning
- this.currentRow = row
- const ${businessName}Id = row.id
- get${BusinessName}(${businessName}Id).then(response => {
- #foreach($column in $columns)
- #set($javaField=$column.javaField)
- #if($column.htmlType == "selectMultiple" || $column.htmlType == "checkbox")
- if (response.data.$javaField !== null) {
- response.data.$javaField = response.data.$!{javaField}.split(',')
- } else {
- response.data.$javaField = []
- }
- #elseif($column.htmlType == "user" || $column.htmlType == "dept")
- response.data.$javaField = { ids: response.data.$javaField, names: response.data.$!{javaField}Name }
- #end
- #end
- this.form = response.data
- #if($hasAttach)
- this.formId = response.data.id
- #end
- this.oldParentId = response.data.parentId
- this.formTitle = '修改${functionName}'
- this.spinning = !this.spinning
- })
- },
- /** 提交按钮 */
- #set($refs='$refs')
- submitForm: function (closeDialog) {
- this.closeDialog = closeDialog
- this.disabled = true
- this.${refs}.form.validate(valid => {
- if (valid) {
- const saveForm = JSON.parse(JSON.stringify(this.form))
- this.spinning = !this.spinning
- #foreach($column in $columns)
- #set($javaField=$column.javaField)
- #if($column.htmlType == "selectMultiple" || $column.htmlType == "checkbox")
- if (saveForm.$javaField) {
- saveForm.$javaField = saveForm.$!{javaField}.join(',')
- } else {
- saveForm.$javaField = null
- }
- #elseif($column.htmlType == "user" || $column.htmlType == "dept")
- if (this.form.$javaField !== undefined) {
- saveForm.$javaField = this.form.$!{javaField}.ids
- }
- #end
- #end
- if (this.form.id !== undefined) {
- update${BusinessName}(saveForm).then(response => {
- #if($hasAttach)
- if (this.attachmentRefName) {
- // 表单含有附件
- this.formId = response.data.id // 附件上传formId
- this.${refs}[this.attachmentRefName].upload(this.formId) // 附件上传
- } else {
- this.$message.success('更新成功', 3)
- if (this.oldParentId !== this.form.parentId) {
- // 如果修改父节点则刷新树
- this.$emit('ok')
- } else {
- this.setNodeData(response.data)
- }
- this.disabled = false
- this.cancel()
- }
- #else
- this.$message.success('更新成功', 3)
- if (this.oldParentId !== this.form.parentId) {
- // 如果修改父节点则刷新树
- this.$emit('ok')
- } else {
- this.setNodeData(response.data)
- }
- this.disabled = false
- this.cancel()
- #end
- })
- } else {
- add${BusinessName}(saveForm).then(response => {
- #if($hasAttach)
- if (this.attachmentRefName) {
- // 表单含有附件
- this.formId = response.data.id // 附件上传formId
- this.${refs}[this.attachmentRefName].upload(this.formId) // 附件上传
- } else {
- this.$message.success('新增成功', 3)
- if (this.oldParentId !== this.form.parentId) {
- // 如果修改父节点则刷新树
- this.$emit('ok')
- } else {
- this.appendTreeNode(this.currentRow, response.data)
- }
- this.disabled = false
- if (this.closeDialog) {
- this.cancel()
- } else {
- this.reset()
- this.$emit('select-tree')
- /** 获取最大编号 */
- findMaxSort(this.form.parentId).then(response => {
- this.form.treeSort = response.data
- })
- }
- }
- #else
- this.$message.success('新增成功', 3)
- if (this.oldParentId !== this.form.parentId) {
- // 如果修改父节点则刷新树
- this.$emit('ok')
- } else {
- this.appendTreeNode(this.currentRow, response.data)
- }
- this.disabled = false
- if (this.closeDialog) {
- this.cancel()
- } else {
- this.reset()
- this.$emit('select-tree')
- /** 获取最大编号 */
- findMaxSort(this.form.parentId).then(response => {
- this.form.treeSort = response.data
- })
- }
- #end
- })
- }
- } else {
- this.disabled = false
- return false
- }
- })
- },
- back () {
- const index = '/${moduleName}/${businessNameLowerCase}/index'
- this.$router.push(index)
- },
- setNodeData (data) {
- #foreach($column in $editColumns)
- #set($javaField=$column.javaField)
- this.currentRow.$javaField = data.$javaField
- #end
- }#if($hasAttach),
- uploadCompleteFile: function (successFile, errorFile) {
- if (errorFile.length > 0) {
- // 有附件保存失败的处理
- this.attachmentUploadStatus = false // 记录附件上传失败
- this.${refs}[this.attachmentRefName].$el.scrollIntoView() // 页面滚动到附件位置
- this.uploaderButtonStatus = false // 按钮关闭loading状态
- } else {
- // 所有附件都保存成功的处理
- this.attachmentUploadStatus = true // 记录附件上传成功
- this.$message.success('保存成功', 3)
- this.open = false
- this.$emit('ok')
- this.$emit('close')
- }
- this.uploaderButtonStatus = false // 返回按钮可用
- }
- #end
- }
- }
|