Blame view

ant-design-vue-jeecg/src/views/system/modules/SysFillRuleModal.vue 4.02 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
<template>
  <a-modal
    :title="title"
    :width="800"
    :visible="visible"
    :maskClosable="false"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
谭毅彬 authored
10
    :cancelText="$t('button.close')">
肖超群 authored
11
12
13
14
15
16
17

    <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'
36
import { translateResultMessage } from '@/api/api'
肖超群 authored
37
肖超群 authored
38
39
40
41
42
export default {
  name: 'SysFillRuleModal',
  components: {},
  data() {
    return {
43
      title: this.$t('system.options'),
肖超群 authored
44
45
46
47
      visible: false,
      model: {},
      labelCol: {xs: {span: 24}, sm: {span: 5}},
      wrapperCol: {xs: {span: 24}, sm: {span: 16}},
肖超群 authored
48
肖超群 authored
49
50
51
52
53
54
55
56
57
58
      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
59
肖超群 authored
60
61
62
63
64
65
66
            try {
              let json = JSON.parse(value)
              if (json instanceof Array) {
                callback('只能传递JSON对象,不能传递JSON数组')
              } else if (json instanceof Object) {
                callback()
              } else {
肖超群 authored
67
68
                callback('请输入JSON字符串')
              }
肖超群 authored
69
70
            } catch {
              callback('请输入JSON字符串')
肖超群 authored
71
            }
肖超群 authored
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
          }
        }],
      },
      url: {
        add: '/sys/fillRule/add',
        edit: '/sys/fillRule/edit',
      },
    }
  },
  computed: {
    disabledCode() {
      return !!this.model.id
    }
  },
  created() {
  },
  methods: {
    add() {
      this.edit({})
肖超群 authored
91
    },
肖超群 authored
92
93
94
95
96
97
    edit(record) {
      this.visible = true
      this.$nextTick(() => {
        this.$refs.form.resetFields()
        this.model = Object.assign({}, record)
      })
肖超群 authored
98
    },
肖超群 authored
99
100
101
    close() {
      this.$emit('close')
      this.visible = false
肖超群 authored
102
    },
肖超群 authored
103
104
105
106
107
108
109
110
111
112
    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
113
114
          }
肖超群 authored
115
116
          httpAction(httpUrl, this.model, method).then((res) => {
            if (res.success) {
117
              that.$message.success(translateResultMessage(res, res.message))
肖超群 authored
118
119
120
              that.$emit('ok')
              that.close()
            } else {
121
              that.$message.warning(translateResultMessage(res, res.message))
肖超群 authored
122
123
124
125
126
127
128
129
130
            }
          }).finally(() => {
            that.confirmLoading = false
          })
        }
      })
    },
    handleCancel() {
      this.close()
肖超群 authored
131
    }
肖超群 authored
132
肖超群 authored
133
  }
肖超群 authored
134
}
肖超群 authored
135
136
137
138
139
</script>

<style lang="less" scoped>

</style>