parent
65ab95e84a
commit
eebdef758b
@ -0,0 +1,4 @@
|
||||
package com.bookstore.common.valid;
|
||||
|
||||
public interface AddShowStatusGroup {
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
package com.bookstore.common.valid;
|
||||
|
||||
import org.hibernate.validator.internal.util.annotation.ConstraintAnnotationDescriptor;
|
||||
|
||||
import javax.validation.ConstraintValidator;
|
||||
import javax.validation.ConstraintValidatorContext;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
public class ListValueConstraintValidator implements ConstraintValidator<ListValue, Integer>/*第一个泛型是校验注解,第二个泛型是校验类型*/ {
|
||||
|
||||
private Set<Integer> set = new HashSet<>();
|
||||
|
||||
//初始化方法,会将详细信息给我门
|
||||
@Override
|
||||
public void initialize(ListValue constraintAnnotation) {
|
||||
ConstraintValidator.super.initialize(constraintAnnotation);
|
||||
|
||||
int[] vals = constraintAnnotation.vals(); //获取数据
|
||||
for (int i =0; i < vals.length; i++) {
|
||||
set.add(vals[i]);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
|
||||
/*
|
||||
@param value 第一个value是用户提交用于校验的数据
|
||||
@param context
|
||||
@return
|
||||
* */
|
||||
public boolean isValid(Integer value, ConstraintValidatorContext constraintValidatorContext) {
|
||||
|
||||
return value == null || set.contains(value);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1 @@
|
||||
com.bookstore.common.valid.ListValue.message=必须提交的值
|
@ -0,0 +1,120 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
:title="!dataForm.attrGroupId ? '新增' : '修改'"
|
||||
:close-on-click-modal="false"
|
||||
:visible.sync="visible">
|
||||
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="80px">
|
||||
<el-form-item label="组名" prop="attrGroupName">
|
||||
<el-input v-model="dataForm.attrGroupName" 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="描述" prop="descript">
|
||||
<el-input v-model="dataForm.descript" placeholder="描述"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="组图标" prop="icon">
|
||||
<el-input v-model="dataForm.icon" placeholder="组图标"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="所属分类id" prop="catelogId">
|
||||
<el-input v-model="dataForm.catelogId" placeholder="所属分类id"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="visible = false">取消</el-button>
|
||||
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
visible: false,
|
||||
dataForm: {
|
||||
attrGroupId: 0,
|
||||
attrGroupName: '',
|
||||
sort: '',
|
||||
descript: '',
|
||||
icon: '',
|
||||
catelogId: ''
|
||||
},
|
||||
dataRule: {
|
||||
attrGroupName: [
|
||||
{ required: true, message: '组名不能为空', trigger: 'blur' }
|
||||
],
|
||||
sort: [
|
||||
{ required: true, message: '排序不能为空', trigger: 'blur' }
|
||||
],
|
||||
descript: [
|
||||
{ required: true, message: '描述不能为空', trigger: 'blur' }
|
||||
],
|
||||
icon: [
|
||||
{ required: true, message: '组图标不能为空', trigger: 'blur' }
|
||||
],
|
||||
catelogId: [
|
||||
{ required: true, message: '所属分类id不能为空', trigger: 'blur' }
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
init (id) {
|
||||
this.dataForm.attrGroupId = id || 0
|
||||
this.visible = true
|
||||
this.$nextTick(() => {
|
||||
this.$refs['dataForm'].resetFields()
|
||||
if (this.dataForm.attrGroupId) {
|
||||
this.$http({
|
||||
url: this.$http.adornUrl(`/product/attrgroup/info/${this.dataForm.attrGroupId}`),
|
||||
method: 'get',
|
||||
params: this.$http.adornParams()
|
||||
}).then(({data}) => {
|
||||
if (data && data.code === 0) {
|
||||
this.dataForm.attrGroupName = data.attrGroup.attrGroupName
|
||||
this.dataForm.sort = data.attrGroup.sort
|
||||
this.dataForm.descript = data.attrGroup.descript
|
||||
this.dataForm.icon = data.attrGroup.icon
|
||||
this.dataForm.catelogId = data.attrGroup.catelogId
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
// 表单提交
|
||||
dataFormSubmit () {
|
||||
this.$refs['dataForm'].validate((valid) => {
|
||||
if (valid) {
|
||||
this.$http({
|
||||
url: this.$http.adornUrl(`/product/attrgroup/${!this.dataForm.attrGroupId ? 'save' : 'update'}`),
|
||||
method: 'post',
|
||||
data: this.$http.adornData({
|
||||
'attrGroupId': this.dataForm.attrGroupId || undefined,
|
||||
'attrGroupName': this.dataForm.attrGroupName,
|
||||
'sort': this.dataForm.sort,
|
||||
'descript': this.dataForm.descript,
|
||||
'icon': this.dataForm.icon,
|
||||
'catelogId': this.dataForm.catelogId
|
||||
})
|
||||
}).then(({data}) => {
|
||||
if (data && data.code === 0) {
|
||||
this.$message({
|
||||
message: '操作成功',
|
||||
type: 'success',
|
||||
duration: 1500,
|
||||
onClose: () => {
|
||||
this.visible = false
|
||||
this.$emit('refreshDataList')
|
||||
}
|
||||
})
|
||||
} else {
|
||||
this.$message.error(data.msg)
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Loading…
Reference in new issue