diff --git a/src/main/java/com/corewing/app/modules/admin/sys/SysFirmwareController.java b/src/main/java/com/corewing/app/modules/admin/sys/SysFirmwareController.java new file mode 100644 index 0000000..e08cf64 --- /dev/null +++ b/src/main/java/com/corewing/app/modules/admin/sys/SysFirmwareController.java @@ -0,0 +1,19 @@ +package com.corewing.app.modules.admin.sys; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; + +/** + * 固件管理 + */ +@Controller +@RequestMapping("/sys/firmware") +public class SysFirmwareController { + + @GetMapping("/index") + public String index() { + return "admin/sys/firmware/index"; + } + +} diff --git a/src/main/resources/templates/admin/sys/firmware/index.html b/src/main/resources/templates/admin/sys/firmware/index.html new file mode 100644 index 0000000..2557407 --- /dev/null +++ b/src/main/resources/templates/admin/sys/firmware/index.html @@ -0,0 +1,474 @@ + + + + + + 用户管理系统 + + + + + + + +
+
+ +

固件管理

+ + + + + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + ID名称状态用户类型所属部门创建时间操作
+
+
+ Loading... +
+

加载中,请稍候...

+
+
+
+ +
暂无匹配数据
+

请尝试调整搜索条件或重置查询

+
+
+ + {{ item.id }}{{ item.name }} + + {{ item.status === 1 ? '启用' : '禁用' }} + + + + {{ item.userType === 'admin' ? '管理员' : item.userType === 'editor' ? '编辑' : '查看者' }} + + + + {{ item.deptId === '1' ? '技术部' : item.deptId === '2' ? '运营部' : item.deptId === '3' ? '市场部' : '人事部' }} + + {{ formatTime(item.createTime) }} +
+ + +
+
+
+ + +
+
+ 已选中 {{ selectedIds.length }} 条数据 + + + + + +
+
+ + +
+
+ 共 {{ total }} 条数据,当前第 {{ pageNum }}/{{ totalPages }} 页 +
+ +
+
+
+ + + + + + + + + + + +