diff --git a/src/main/webapp/WEB-INF/manager/cms/category/form.ftl b/src/main/webapp/WEB-INF/manager/cms/category/form.ftl index 09b47f53..6d4b61eb 100644 --- a/src/main/webapp/WEB-INF/manager/cms/category/form.ftl +++ b/src/main/webapp/WEB-INF/manager/cms/category/form.ftl @@ -569,12 +569,20 @@ }, //categoryImg文件上传完成回调 categoryImgSuccess: function (response, file, fileList) { - this.form.categoryImg.push({ - url: file.url, - name: file.name, - path: response, - uid: file.uid - }); + if(response.result){ + this.form.categoryImg.push({ + url: file.url, + name: file.name, + path: response.data, + uid: file.uid + }); + }else { + this.$notify({ + title: response.msg, + type: 'warning' + }); + } + }, //上传超过限制 categoryImghandleExceed: function (files, fileList) { diff --git a/src/main/webapp/WEB-INF/manager/cms/content/form.ftl b/src/main/webapp/WEB-INF/manager/cms/content/form.ftl index 23845fb0..9b2aa92e 100644 --- a/src/main/webapp/WEB-INF/manager/cms/content/form.ftl +++ b/src/main/webapp/WEB-INF/manager/cms/content/form.ftl @@ -42,7 +42,8 @@ @@ -530,6 +531,11 @@ pageSize: 9999 }).then(function (res) { if (res.result) { + res.data.rows.forEach(function (item) { + if (item.categoryType == '2' || item.categoryType == '3') { + item.isDisabled = true; + } + }); that.contentCategoryIdOptions = ms.util.treeData(res.data.rows, 'id', 'categoryId', 'children'); that.categoryIdOptions = res.data.rows; that.changeModel(); @@ -555,12 +561,20 @@ }, //contentImg文件上传完成回调 contentImgSuccess: function (response, file, fileList) { - this.form.contentImg.push({ - url: file.url, - name: file.name, - path: response, - uid: file.uid - }); + if(response.result){ + this.form.contentImg.push({ + url: file.url, + name: file.name, + path: response.data, + uid: file.uid + }); + }else { + this.$notify({ + title: response.msg, + type: 'warning' + }); + } + }, contentImghandleRemove: function (file, files) { var index = -1; diff --git a/src/main/webapp/template/1/default/index.htm b/src/main/webapp/template/1/default/index.htm index a866a1ba..152e97cf 100644 --- a/src/main/webapp/template/1/default/index.htm +++ b/src/main/webapp/template/1/default/index.htm @@ -66,6 +66,7 @@ Vue.use(VueAwesomeSwiper) +

进入

<#include "header.htm"/>