Blame view

ant-design-vue-jeecg/src/views/system/modules/SysFillRuleModal.vue 3.89 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <a-modal
    :title="title"
    :width="800"
    :visible="visible"
    :maskClosable="false"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭">

    <a-spin :spinning="confirmLoading">
      <a-form-model ref="form" :model="model" :rules="validatorRules">

        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="规则名称" prop="ruleName">
          <a-input placeholder="请输入规则名称" v-model="model.ruleName"/>
        </a-form-model-item>
肖超群 authored
18
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="规则Code" prop="ruleCode">
肖超群 authored
19
20
          <a-input placeholder="请输入规则Code" :disabled="disabledCode" v-model="model.ruleCode"/>
        </a-form-model-item>
肖超群 authored
21
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="规则实现类" prop="ruleClass">
肖超群 authored
22
23
24
25
26
27
28
29
30
31
32
33
          <a-input placeholder="请输入规则实现类" v-model="model.ruleClass"/>
        </a-form-model-item>
        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="规则参数" prop="ruleParams">
          <a-textarea placeholder="请输入规则参数" :rows="5" v-model="model.ruleParams"/>
        </a-form-model-item>

      </a-form-model>
    </a-spin>
  </a-modal>
</template>

<script>
肖超群 authored
34
35
import {httpAction} from '@/api/manage'
import {validateDuplicateValue} from '@/utils/util'
肖超群 authored
36
肖超群 authored
37
38
39
40
41
42
43
44
45
46
export default {
  name: 'SysFillRuleModal',
  components: {},
  data() {
    return {
      title: '操作',
      visible: false,
      model: {},
      labelCol: {xs: {span: 24}, sm: {span: 5}},
      wrapperCol: {xs: {span: 24}, sm: {span: 16}},
肖超群 authored
47
肖超群 authored
48
49
50
51
52
53
54
55
56
57
      confirmLoading: false,
      validatorRules: {
        ruleName: [{required: true, message: '规则名称不能为空'}],
        ruleCode: [
          {required: true, message: '规则Code不能为空'},
          {validator: (rule, value, callback) => validateDuplicateValue('sys_fill_rule', 'rule_code', value, this.model.id, callback)}
        ],
        ruleClass: [{required: true, message: '规则实现类不能为空'}],
        ruleParams: [{
          validator: (rule, value, callback) => {
肖超群 authored
58
肖超群 authored
59
60
61
62
63
64
65
            try {
              let json = JSON.parse(value)
              if (json instanceof Array) {
                callback('只能传递JSON对象,不能传递JSON数组')
              } else if (json instanceof Object) {
                callback()
              } else {
肖超群 authored
66
67
                callback('请输入JSON字符串')
              }
肖超群 authored
68
69
            } catch {
              callback('请输入JSON字符串')
肖超群 authored
70
            }
肖超群 authored
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
          }
        }],
      },
      url: {
        add: '/sys/fillRule/add',
        edit: '/sys/fillRule/edit',
      },
    }
  },
  computed: {
    disabledCode() {
      return !!this.model.id
    }
  },
  created() {
  },
  methods: {
    add() {
      this.edit({})
肖超群 authored
90
    },
肖超群 authored
91
92
93
94
95
96
    edit(record) {
      this.visible = true
      this.$nextTick(() => {
        this.$refs.form.resetFields()
        this.model = Object.assign({}, record)
      })
肖超群 authored
97
    },
肖超群 authored
98
99
100
    close() {
      this.$emit('close')
      this.visible = false
肖超群 authored
101
    },
肖超群 authored
102
103
104
105
106
107
108
109
110
111
    handleOk() {
      const that = this
      // 触发表单验证
      this.$refs.form.validate((ok, err) => {
        if (ok) {
          that.confirmLoading = true
          let httpUrl = this.url.add, method = 'post'
          if (this.model.id) {
            httpUrl = this.url.edit
            method = 'put'
肖超群 authored
112
113
          }
肖超群 authored
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
          httpAction(httpUrl, this.model, method).then((res) => {
            if (res.success) {
              that.$message.success(res.message)
              that.$emit('ok')
              that.close()
            } else {
              that.$message.warning(res.message)
            }
          }).finally(() => {
            that.confirmLoading = false
          })
        }
      })
    },
    handleCancel() {
      this.close()
肖超群 authored
130
    }
肖超群 authored
131
肖超群 authored
132
  }
肖超群 authored
133
}
肖超群 authored
134
135
136
137
138
</script>

<style lang="less" scoped>

</style>