|
@@ -103,4 +103,12 @@ public class MiniPageSetController extends BaseController {
|
|
|
@PathVariable("ids") Long[] ids) {
|
|
@PathVariable("ids") Long[] ids) {
|
|
|
return toAjax(miniPageSetService.deleteWithValidByIds(List.of(ids), true));
|
|
return toAjax(miniPageSetService.deleteWithValidByIds(List.of(ids), true));
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取当前页面设置
|
|
|
|
|
+ */
|
|
|
|
|
+ @GetMapping("/current")
|
|
|
|
|
+ public R<MiniPageSetVo> getCurrent() {
|
|
|
|
|
+ return R.ok(miniPageSetService.getCurrentPageSet());
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|