Commit a655345c authored by xierz's avatar xierz

新增子栏目

parent ae907965
......@@ -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;
}
}
});
......
......@@ -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";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment