eForm.ftl 4.2 KB
Newer Older
1
<template>
2
  <el-dialog :append-to-body="true" :close-on-click-modal="false" :before-close="cancel" :visible.sync="dialog" :title="isAdd ? '新增' : '编辑'" width="500px">
3
    <el-form ref="form" :model="form" <#if isNotNullColumns??>:rules="rules"</#if> size="small" label-width="80px">
4 5
<#if columns??>
  <#list columns as column>
6 7 8
  <#if column.formShow>
      <el-form-item label="<#if column.remark != ''>${column.remark}<#else>${column.changeColumnName}</#if>" <#if column.istNotNull>prop="${column.changeColumnName}"</#if>>
        <#if column.formType = 'Input'>
9
        <el-input v-model="form.${column.changeColumnName}" style="width: 370px;"/>
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
        <#elseif column.formType = 'Textarea'>
        <el-input :rows="3" v-model="form.${column.changeColumnName}" type="textarea" style="width: 370px;"/>
        <#elseif column.formType = 'Radio'>
        <#if column.dictName??>
        <el-radio v-for="item in dicts.${column.dictName}" :key="item.id" v-model="form.${column.changeColumnName}" :label="item.value">{{ item.label }}</el-radio>
        <#else>
        未设置字典,请手动设置 Radio
        </#if>
        <#elseif column.formType = 'Select'>
          <#if column.dictName??>
        <el-select v-model="form.${column.changeColumnName}" filterable placeholder="请选择">
          <el-option
            v-for="item in dicts.${column.dictName}"
            :key="item.id"
            :label="item.label"
            :value="item.value"/>
        </el-select>
          <#else>
          未设置字典,请手动设置 Select
          </#if>
        <#else>
31 32
        <el-date-picker v-model="form.${column.changeColumnName}" type="datetime" style="width: 370px;"/>
        </#if>
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
      </el-form-item>
  </#if>
  </#list>
</#if>
    </el-form>
    <div slot="footer" class="dialog-footer">
      <el-button type="text" @click="cancel">取消</el-button>
      <el-button :loading="loading" type="primary" @click="doSubmit">确认</el-button>
    </div>
  </el-dialog>
</template>

<script>
import { add, edit } from '@/api/${changeClassName}'
export default {
  props: {
    isAdd: {
      type: Boolean,
      required: true
52 53 54 55
    }<#if hasDict>,
    dicts: {
      type: Array,
      required: true
56
    }
57
    </#if>
58 59 60 61 62 63 64 65 66 67
  },
  data() {
    return {
      loading: false, dialog: false,
      form: {
<#if columns??>
    <#list columns as column>
        ${column.changeColumnName}: ''<#if column_has_next>,</#if>
    </#list>
</#if>
68 69
      },
      rules: {
70 71 72
<#if isNotNullColumns??>
<#list isNotNullColumns as column>
<#if column.istNotNull>
73 74
        ${column.changeColumnName}: [
          { required: true, message: 'please enter', trigger: 'blur' }
75
        ]<#if column_has_next>,</#if>
76 77
</#if>
</#list>
78
</#if>
79 80 81 82 83 84 85 86
      }
    }
  },
  methods: {
    cancel() {
      this.resetForm()
    },
    doSubmit() {
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
      <#if isNotNullColumns??>
      this.$refs['form'].validate((valid) => {
        if (valid) {
          this.loading = true
          if (this.isAdd) {
            this.doAdd()
          } else this.doEdit()
        } else {
          return false
        }
      })
      <#else>
        this.loading = true
        if (this.isAdd) {
          this.doAdd()
        } else this.doEdit()
      </#if>
104 105 106 107 108 109 110 111 112 113
    },
    doAdd() {
      add(this.form).then(res => {
        this.resetForm()
        this.$notify({
          title: '添加成功',
          type: 'success',
          duration: 2500
        })
        this.loading = false
114
        this.$parent.init()
115 116 117 118 119 120 121 122 123 124 125 126 127 128
      }).catch(err => {
        this.loading = false
        console.log(err.response.data.message)
      })
    },
    doEdit() {
      edit(this.form).then(res => {
        this.resetForm()
        this.$notify({
          title: '修改成功',
          type: 'success',
          duration: 2500
        })
        this.loading = false
129
        this.$parent.init()
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
      }).catch(err => {
        this.loading = false
        console.log(err.response.data.message)
      })
    },
    resetForm() {
      this.dialog = false
      this.$refs['form'].resetFields()
      this.form = {
<#if columns??>
    <#list columns as column>
        ${column.changeColumnName}: ''<#if column_has_next>,</#if>
    </#list>
</#if>
      }
    }
  }
}
</script>

<style scoped>

</style>