You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
5.2 KiB
146 lines
5.2 KiB
|
6 years ago
|
<template>
|
||
|
|
<el-dialog :visible.sync="visible" :title="!dataForm.id ? $t('add') : $t('update')" :close-on-click-modal="false" :close-on-press-escape="false">
|
||
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" :label-width="$i18n.locale === 'en-US' ? '120px' : '80px'">
|
||
|
|
<el-form-item label="权限编码(1.点赞,2.吐槽)" prop="roleCode">
|
||
|
|
<el-input v-model="dataForm.roleCode" placeholder="权限编码(1.点赞,2.吐槽)"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="评价选项" prop="optionContent">
|
||
|
|
<el-input v-model="dataForm.optionContent" placeholder="评价选项"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="显示顺序" prop="sort">
|
||
|
|
<el-input v-model="dataForm.sort" placeholder="显示顺序"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="可用标记(0-不可用,1-可用)" prop="available">
|
||
|
|
<el-input v-model="dataForm.available" placeholder="可用标记(0-不可用,1-可用)"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="乐观锁" prop="revision">
|
||
|
|
<el-input v-model="dataForm.revision" placeholder="乐观锁"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="删除标识 0:否,1:是" prop="delFlag">
|
||
|
|
<el-input v-model="dataForm.delFlag" placeholder="删除标识 0:否,1:是"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="创建人" prop="createdBy">
|
||
|
|
<el-input v-model="dataForm.createdBy" placeholder="创建人"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="创建时间" prop="createdTime">
|
||
|
|
<el-input v-model="dataForm.createdTime" placeholder="创建时间"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="更新人" prop="updatedBy">
|
||
|
|
<el-input v-model="dataForm.updatedBy" placeholder="更新人"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="更新时间" prop="updatedTime">
|
||
|
|
<el-input v-model="dataForm.updatedTime" placeholder="更新时间"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form>
|
||
|
|
<template slot="footer">
|
||
|
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button>
|
||
|
|
<el-button type="primary" @click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button>
|
||
|
|
</template>
|
||
|
|
</el-dialog>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import debounce from 'lodash/debounce'
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
visible: false,
|
||
|
|
dataForm: {
|
||
|
|
id: '',
|
||
|
|
roleCode: '',
|
||
|
|
optionContent: '',
|
||
|
|
sort: '',
|
||
|
|
available: '',
|
||
|
|
revision: '',
|
||
|
|
delFlag: '',
|
||
|
|
createdBy: '',
|
||
|
|
createdTime: '',
|
||
|
|
updatedBy: '',
|
||
|
|
updatedTime: ''
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
computed: {
|
||
|
|
dataRule () {
|
||
|
|
return {
|
||
|
|
roleCode: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
optionContent: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
sort: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
available: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
revision: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
delFlag: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
createdBy: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
createdTime: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
updatedBy: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
],
|
||
|
|
updatedTime: [
|
||
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
init () {
|
||
|
|
this.visible = true
|
||
|
|
this.$nextTick(() => {
|
||
|
|
this.$refs['dataForm'].resetFields()
|
||
|
|
if (this.dataForm.id) {
|
||
|
|
this.getInfo()
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
// 获取信息
|
||
|
|
getInfo () {
|
||
|
|
this.$http.get(`/custom/evaluateoption/${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']('/custom/evaluateoption/', 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>
|