Browse Source

新增期刊管理,通过添加cms_term中taxonomy:journal和type:dictionary来实现

liyan 1 month ago
parent
commit
54d2531753

+ 6 - 6
ruoyi-cms/src/main/kotlin/com/cclotus/cms/controller/admin/CmsPostController.kt

@@ -33,7 +33,7 @@ class CmsPostController : BaseController() {
      * @param deep      是否显示栏目下子栏目的文章
      * @param post      过滤条件
      */
-    @GetMapping(path = ["/{contentType:article|page|video|picture|custom}/{termAlias}/list", "/{contentType:article|page|video|picture|custom}/list"])
+    @GetMapping(path = ["/{contentType:article|page|video|picture|custom|dictionary}/{termAlias}/list", "/{contentType:article|page|video|picture|custom}/list"])
     fun list(
         @PathVariable("contentType") contentType: String,
         @PathVariable(name = "termAlias", required = false) termAlias: String?,
@@ -58,7 +58,7 @@ class CmsPostController : BaseController() {
      * @param contentType 页面别名
      * @return 页面详情信息
      */
-    @GetMapping("/{contentType:article|page|video|picture|custom}/{post}")
+    @GetMapping("/{contentType:article|page|video|picture|custom|dictionary}/{post}")
     fun detail(
         @PathVariable("contentType") contentType: String,
         @PathVariable("post") post: String,
@@ -70,7 +70,7 @@ class CmsPostController : BaseController() {
      * 新增发布内容
      */
     @Log(title = "发布内容管理", businessType = BusinessType.INSERT)
-    @PostMapping("/{contentType:article|page|video|picture|custom}")
+    @PostMapping("/{contentType:article|page|video|picture|custom|dictionary}")
     fun add(
         @PathVariable("contentType") contentType: String,
         @Validated @RequestBody cmsPostFormReq: CmsPostFormReq,
@@ -86,7 +86,7 @@ class CmsPostController : BaseController() {
      * 修改发布内容
      */
     @Log(title = "发布内容管理", businessType = BusinessType.UPDATE)
-    @PutMapping("/{contentType:article|page|video|picture|custom}")
+    @PutMapping("/{contentType:article|page|video|picture|custom|dictionary}")
     fun edit(
         @PathVariable("contentType") contentType: String,
         @Validated @RequestBody cmsPostFormReq: CmsPostFormReq,
@@ -101,7 +101,7 @@ class CmsPostController : BaseController() {
      * @param postIds 内容ID列表
      */
     @Log(title = "发布内容管理", businessType = BusinessType.DELETE)
-    @DeleteMapping("/{contentType:article|page|video|picture|custom}/{postIds}")
+    @DeleteMapping("/{contentType:article|page|video|picture|custom|dictionary}/{postIds}")
     fun remove(
         @PathVariable("contentType") contentType: String,
         @PathVariable("postIds") postIds: Array<Int>,
@@ -118,7 +118,7 @@ class CmsPostController : BaseController() {
      * @return 处理结果
      */
     @Log(title = "审核内容", businessType = BusinessType.UPDATE)
-    @PostMapping("/{contentType:article|page|video|picture|custom}/review/{post}")
+    @PostMapping("/{contentType:article|page|video|picture|custom|dictionary}/review/{post}")
     fun review(
         @PathVariable("contentType") contentType: String,
         @PathVariable("post") post: String,

+ 5 - 5
ruoyi-cms/src/main/kotlin/com/cclotus/cms/controller/admin/CmsTermController.kt

@@ -24,7 +24,7 @@ class CmsTermController : BaseController() {
     /**
      * 查询分类列表
      */
-    @GetMapping("/{taxonomy:wxAppMenu|menu|catalog|tag}/list")
+    @GetMapping("/{taxonomy:wxAppMenu|menu|catalog|tag|journal}/list")
     fun list(
         @PathVariable("taxonomy") taxonomy: String,
         cmsTerm: CmsTerm,
@@ -43,7 +43,7 @@ class CmsTermController : BaseController() {
      * @param term 分类标识
      * @return 分类详细信息
      */
-    @GetMapping("/{taxonomy:wxAppMenu|menu|catalog|tag}/{term}")
+    @GetMapping("/{taxonomy:wxAppMenu|menu|catalog|tag|journal}/{term}")
     fun detail(
         @PathVariable("taxonomy") taxonomy: String,
         @PathVariable("term") term: String,
@@ -55,7 +55,7 @@ class CmsTermController : BaseController() {
      * 新增分类
      */
     @Log(title = "分类管理", businessType = BusinessType.INSERT)
-    @PostMapping("/{taxonomy:wxAppMenu|menu|catalog|tag}")
+    @PostMapping("/{taxonomy:wxAppMenu|menu|catalog|tag|journal}")
     fun add(
         @PathVariable("taxonomy") taxonomy: String,
         @Validated @RequestBody cmsTerm: CmsTermForm,
@@ -68,7 +68,7 @@ class CmsTermController : BaseController() {
      * 修改分类
      */
     @Log(title = "分类管理", businessType = BusinessType.UPDATE)
-    @PutMapping("/{taxonomy:wxAppMenu|menu|catalog|tag}")
+    @PutMapping("/{taxonomy:wxAppMenu|menu|catalog|tag|journal}")
     fun edit(
         @PathVariable("taxonomy") taxonomy: String,
         @RequestBody cmsTerm: CmsTermForm,
@@ -81,7 +81,7 @@ class CmsTermController : BaseController() {
      * 删除分类
      */
     @Log(title = "分类管理", businessType = BusinessType.DELETE)
-    @DeleteMapping("/{taxonomy:wxAppMenu|menu|catalog|tag}/{termIds}")
+    @DeleteMapping("/{taxonomy:wxAppMenu|menu|catalog|tag|journal}/{termIds}")
     fun remove(
         @PathVariable("taxonomy") taxonomy: String,
         @PathVariable termIds: Array<Int>,