attrgroup-add-or-update.vue
<template>
<el-dialog
:title="!dataForm.id ? '新增' : '修改'"
:close-on-click-modal="false"
:visible.sync="visible"
>
<el-form
:model="dataForm"
:rules="dataRule"
ref="dataForm"
@keyup.enter.native="dataFormSubmit()"
label-width="130px"
>
<el-form-item label="名称" prop="name">
<el-input v-model="dataForm.name" 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="categoryId">
<!-- <el-input v-model="dataForm.categoryId" placeholder="分类ID"></el-input> -->
<el-cascader
v-model="dataForm.categoryPath"
:options="categorys"
:props="props"
></el-cascader>
</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 {
props:{
value: "id",
label: "name",
children: "childrens"
},
categorys: [],
visible: false,
dataForm: {
id: 0,
name: "",
sort: "",
descript: "",
icon: "",
categoryPath: [],
categoryId: 0,
},
dataRule: {
name: [{ required: true, message: "名称不能为空", trigger: "blur" }],
sort: [{ required: true, message: "排序不能为空", trigger: "blur" }],
descript: [
{ required: true, message: "描述不能为空", trigger: "blur" },
],
icon: [{ required: true, message: "图表不能为空", trigger: "blur" }],
categoryId: [
{ required: true, message: "分类ID不能为空", trigger: "blur" },
],
},
};
},
created(){
this.getCategorys()
},
methods: {
// 查询分类菜单
getCategorys() {
this.$http({
url: this.$http.adornUrl("/product/category/list/tree"),
method: "get",
}).then(({ data }) => {
console.log("成功获取到了菜单数据...", data);
this.categorys = data.data;
});
},
init(id) {
this.dataForm.id = id || 0;
this.visible = true;
this.$nextTick(() => {
this.$refs["dataForm"].resetFields();
if (this.dataForm.id) {
this.$http({
url: this.$http.adornUrl(
`/product/attrgroup/info/${this.dataForm.id}`
),
method: "get",
params: this.$http.adornParams(),
}).then(({ data }) => {
if (data && data.code === 0) {
this.dataForm.name = data.attrGroup.name;
this.dataForm.sort = data.attrGroup.sort;
this.dataForm.descript = data.attrGroup.descript;
this.dataForm.icon = data.attrGroup.icon;
this.dataForm.categoryId = data.attrGroup.categoryId;
//查询categoryID的完整菜单
this.dataForm.categoryPath = data.attrGroup.categoryPath
}
});
}
});
},
// 表单提交
dataFormSubmit() {
this.$refs["dataForm"].validate((valid) => {
if (valid) {
this.$http({
url: this.$http.adornUrl(
`/product/attrgroup/${!this.dataForm.id ? "save" : "update"}`
),
method: "post",
data: this.$http.adornData({
id: this.dataForm.id || undefined,
name: this.dataForm.name,
sort: this.dataForm.sort,
descript: this.dataForm.descript,
icon: this.dataForm.icon,
categoryId: this.dataForm.categoryPath[this.dataForm.categoryPath.length-1],
}),
}).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>