Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
MCMS
Commits
b19dccc6
Commit
b19dccc6
authored
Dec 22, 2020
by
xierz
Browse files
新增文章栏目问题
parent
185bb63a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/webapp/WEB-INF/manager/cms/content/main.ftl
View file @
b19dccc6
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
<el-header class="ms-header" height="50px">
<el-header class="ms-header" height="50px">
<el-col :span="12">
<el-col :span="12">
<@shiro.hasPermission name="cms:content:save">
<@shiro.hasPermission name="cms:content:save">
<el-button type="primary" icon="el-icon-plus" size="mini" @click="save(
0
)">新增</el-button>
<el-button type="primary" icon="el-icon-plus" size="mini" @click="save()">新增</el-button>
</@shiro.hasPermission>
</@shiro.hasPermission>
<@shiro.hasPermission name="cms:content:del">
<@shiro.hasPermission name="cms:content:del">
<el-button type="danger" icon="el-icon-delete" size="mini" @click="del(selectionList)" :disabled="!selectionList.length">删除</el-button>
<el-button type="danger" icon="el-icon-delete" size="mini" @click="del(selectionList)" :disabled="!selectionList.length">删除</el-button>
...
@@ -368,13 +368,18 @@
...
@@ -368,13 +368,18 @@
},
},
//新增
//新增
save
:
function
(
id
)
{
save
:
function
(
id
)
{
//
id
有值时编辑
if
(
id
)
{
if
(
id
)
{
location
.href
=
this
.manager
+
"/cms/content/form.do?id="
+
id
;
location
.href
=
this
.manager
+
"/cms/content/form.do?id="
+
id
;
}
else
if
(
id
==
0
){
}
else
{
//在全部栏目下新增文章
//根据当前栏目新增时自动选中栏目
location
.href
=
this
.manager
+
"/cms/content/form.do"
;
var
categoryId
=
this
.form.categoryId
;
}
else
{
if
(
categoryId
)
{
location
.href
=
this
.manager
+
"/cms/content/form.do?categoryId="
+
this
.form.categoryId
;
location
.href
=
this
.manager
+
"/cms/content/form.do?categoryId="
+
this
.form.categoryId
;
}
else
{
//如果栏目
id
没有值就单纯的新增,不自动选定栏目
location
.href
=
this
.manager
+
"/cms/content/form.do"
;
}
}
}
},
},
//表格数据转换
//表格数据转换
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment