新增子栏目

This commit is contained in:
xierz 2020-10-19 10:57:16 +08:00
parent ae907965f9
commit a655345c9a
2 changed files with 12 additions and 5 deletions

View File

@ -540,11 +540,15 @@
this.categoryUrlOptionsGet();
this.categoryFlagOptionsGet();
this.form.id = ms.util.getParameter("id");
this.form.child = ms.util.getParameter("child");
if (this.form.id) {
this.get(this.form.id);
} else {
this.categoryTypeDisabled = false;
if (this.form.id != undefined && this.form.child == undefined) {
this.categoryTypeDisabled = true;
this.get(this.form.id);
} else if (this.form.child) {
this.form.id = null;
this.form.categoryId = this.form.child;
}
}
});

View File

@ -64,6 +64,9 @@
</el-table-column>
<el-table-column label="操作" width="120" align="center">
<template slot-scope="scope">
<@shiro.hasPermission name="cms:category:save">
<el-link type="primary" :underline="false" @click="save(scope.row.id, scope.row.id)">新增子栏目</el-link>
</@shiro.hasPermission>
<@shiro.hasPermission name="cms:category:update">
<el-link type="primary" :underline="false" @click="save(scope.row.id)">编辑</el-link>
</@shiro.hasPermission>
@ -231,9 +234,9 @@
return value;
},
//新增
save: function (id) {
save: function (id, child) {
if (id) {
location.href = this.manager + "/cms/category/form.do?id=" + id;
location.href = this.manager + "/cms/category/form.do?id=" + id + "&child=" + child;
} else {
location.href = this.manager + "/cms/category/form.do";
}