Blame view

src/views/system/modules/DictItemModal.vue 5.91 KB
DESKTOP-AO0VKC8\mahua 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"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭"
  >
    <a-spin :spinning="confirmLoading">
      <a-form :form="form">

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="名称">
18
          <a-input placeholder="请输入名称" v-decorator.trim="['itemText', validatorRules.itemText]" />
DESKTOP-AO0VKC8\mahua authored
19
20
21
22
23
24
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="数据值">
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
          <a-input placeholder="请输入数据值" v-decorator.trim="['itemValue', validatorRules.itemValue]" />
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="标签颜色">
          <a-select
            placeholder="请选择"
            v-model="itemColor"
          >
            <a-select-option value="pink">pink</a-select-option>
            <a-select-option value="red">red</a-select-option>
            <a-select-option value="orange">orange</a-select-option>
            <a-select-option value="green">green</a-select-option>
            <a-select-option value="cyan">cyan</a-select-option>
            <a-select-option value="blue">blue</a-select-option>
            <a-select-option value="purple">purple</a-select-option>
          </a-select>
DESKTOP-AO0VKC8\mahua authored
44
45
46
47
48
49
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="描述">
50
          <a-input v-decorator="['description']" />
DESKTOP-AO0VKC8\mahua authored
51
52
53
54
55
56
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="排序值">
57
          <a-input-number :min="1" v-decorator="['sortOrder',{'initialValue':1}]" />
DESKTOP-AO0VKC8\mahua authored
58
59
60
61
62
63
64
65
          值越小越靠前,支持小数
        </a-form-item>

        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          label="是否启用"
          hasFeedback>
66
          <a-switch checkedChildren="启用" unCheckedChildren="禁用" @change="onChose" v-model="visibleCheck" />
DESKTOP-AO0VKC8\mahua authored
67
68
69
70
71
72
73
74
        </a-form-item>

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

<script>
75
76
77
import pick from 'lodash.pick'
import { addDictItem, editDictItem } from '@/api/api'
import { getAction } from '@api/manage'
DESKTOP-AO0VKC8\mahua authored
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export default {
  name: 'DictItemModal',
  data() {
    return {
      title: '操作',
      visible: false,
      visibleCheck: true,
      model: {},
      dictId: '',
      status: 1,
      itemColor: '',
      labelCol: {
        xs: { span: 24 },
        sm: { span: 5 }
      },
      wrapperCol: {
        xs: { span: 24 },
        sm: { span: 16 }
      },
      confirmLoading: false,
      form: this.$form.createForm(this),
      validatorRules: {
        itemText: { rules: [{ required: true, message: '请输入名称!' }] },
        itemValue: { rules: [{ required: true, message: '请输入数据值!' }, { validator: this.validateItemValue }] }
DESKTOP-AO0VKC8\mahua authored
103
      }
104
105
106
107
108
109
110
111
    }
  },
  created() {
  },
  methods: {
    add(dictId) {
      this.dictId = dictId
      this.edit({})
DESKTOP-AO0VKC8\mahua authored
112
    },
113
114
115
116
117
118
119
120
121
122
123
124
125
126
    edit(record) {
      if (record.id) {
        this.dictId = record.dictId
        this.visibleCheck = (record.status == 1) ? true : false
      }
      this.itemColor = record.itemColor
      this.form.resetFields()
      this.model = Object.assign({}, record)
      this.model.dictId = this.dictId
      this.model.status = this.status
      this.visible = true
      this.$nextTick(() => {
        this.form.setFieldsValue(pick(this.model, 'itemText', 'itemValue', 'description', 'sortOrder'))
      })
DESKTOP-AO0VKC8\mahua authored
127
    },
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
    onChose(checked) {
      if (checked) {
        this.status = 1
        this.visibleCheck = true
      } else {
        this.status = 0
        this.visibleCheck = false
      }
    },
    // 确定
    handleOk() {
      const that = this
      // 触发表单验证
      this.form.validateFields((err, values) => {
        if (!err) {
          that.confirmLoading = true
          values.itemText = (values.itemText || '').trim()
          values.itemValue = (values.itemValue || '').trim()
          values.description = (values.description || '').trim()
          let formData = Object.assign(this.model, values)
          formData.status = this.status
          formData.itemColor = this.itemColor
          let obj
          if (!this.model.id) {
            obj = addDictItem(formData)
          } else {
            obj = editDictItem(formData)
          }
          obj.then((res) => {
            if (res.success) {
              that.$message.success(res.message)
              that.$emit('ok')
            } else {
              that.$message.warning(res.message)
            }
          }).finally(() => {
            that.confirmLoading = false
            that.close()
          })
DESKTOP-AO0VKC8\mahua authored
167
        }
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
      })
    },
    // 关闭
    handleCancel() {
      this.close()
    },
    close() {
      this.$emit('close')
      this.visible = false
    },
    validateItemValue(rule, value, callback) {
      let param = {
        itemValue: value,
        dictId: this.dictId
      }
      if (this.model.id) {
        param.id = this.model.id
      }
      if (value) {
        let reg = new RegExp('[`_~!@#$^&*()=|{}\'.<>《》/?!¥()—【】‘;:”“。,、?]')
        if (reg.test(value)) {
          callback('数据值不能包含特殊字符!')
DESKTOP-AO0VKC8\mahua authored
190
        } else {
191
192
193
194
          //update--begin--autor:lvdandan-----date:20201203------for:JT-27【数据字典】字典 - 数据值可重复
          getAction('/sys/dictItem/dictItemCheck', param).then((res) => {
            if (res.success) {
              callback()
DESKTOP-AO0VKC8\mahua authored
195
            } else {
196
              callback(res.message)
DESKTOP-AO0VKC8\mahua authored
197
            }
198
199
          })
          //update--end--autor:lvdandan-----date:20201203------for:JT-27【数据字典】字典 - 数据值可重复
DESKTOP-AO0VKC8\mahua authored
200
        }
201
202
      } else {
        callback()
DESKTOP-AO0VKC8\mahua authored
203
204
205
      }
    }
  }
206
}
DESKTOP-AO0VKC8\mahua authored
207
</script>