104 lines
3.1 KiB
Vue
104 lines
3.1 KiB
Vue
<template>
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" label-width="120px">
|
|
<el-form-item prop="dictValue" :label="$t('dict.dictValue')">
|
|
<el-input v-model="dataForm.dictValue" :placeholder="$t('dict.dictValue')"></el-input>
|
|
</el-form-item>
|
|
<el-form-item prop="dictLabel" :label="$t('dict.dictLabel')">
|
|
<el-input v-model="dataForm.dictLabel" :placeholder="$t('dict.dictLabel')"></el-input>
|
|
</el-form-item>
|
|
<el-form-item prop="sort" :label="$t('dict.sort')">
|
|
<el-input-number v-model="dataForm.sort" controls-position="right" :min="0" :label="$t('dict.sort')"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item prop="remark" :label="$t('dict.remark')">
|
|
<el-input v-model="dataForm.remark" :placeholder="$t('dict.remark')"></el-input>
|
|
</el-form-item>
|
|
</el-form>
|
|
</template>
|
|
|
|
<script>
|
|
import debounce from 'lodash/debounce'
|
|
import basicAdd from '@/mixins/basic-add'
|
|
export default {
|
|
mixins: [basicAdd],
|
|
data () {
|
|
return {
|
|
urlOptions: {
|
|
submitURL: '/sys/dict/data/',
|
|
infoURL: '/sys/dict/data'
|
|
},
|
|
visible: false,
|
|
dataForm: {
|
|
id: '',
|
|
dictTypeId: '',
|
|
dictLabel: '',
|
|
dictValue: '',
|
|
sort: 0,
|
|
remark: ''
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
dataRule () {
|
|
return {
|
|
dictLabel: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
],
|
|
dictValue: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
],
|
|
sort: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
]
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
init(id,dictTypeId) {
|
|
this.dataForm.id = id || "";
|
|
this.dataForm.dictTypeId = dictTypeId || "";
|
|
this.visible = true
|
|
this.$nextTick(() => {
|
|
this.$refs['dataForm'].resetFields()
|
|
if (this.dataForm.id) {
|
|
this.getInfo()
|
|
}
|
|
})
|
|
},
|
|
// 获取信息
|
|
getInfo () {
|
|
this.$http.get(`/sys/dict/data/${this.dataForm.id}`).then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg)
|
|
}
|
|
this.dataForm = {
|
|
...this.dataForm,
|
|
...res.data
|
|
}
|
|
}).catch(() => {})
|
|
},
|
|
// 表单提交
|
|
dataFormSubmitHandle: debounce(function () {
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
if (!valid) {
|
|
return false
|
|
}
|
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/sys/dict/data', this.dataForm).then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg)
|
|
}
|
|
this.$message({
|
|
message: this.$t('prompt.success'),
|
|
type: 'success',
|
|
duration: 500,
|
|
onClose: () => {
|
|
this.visible = false
|
|
this.$emit('refreshDataList')
|
|
}
|
|
})
|
|
}).catch(() => {})
|
|
})
|
|
}, 1000, { 'leading': true, 'trailing': false })
|
|
}
|
|
}
|
|
</script>
|