[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"article-public-XAaCXz8W":3,"public-project-articles-XAaCXz8W":17},{"id":4,"uuid":5,"project_id":6,"title":7,"content":8,"type":9,"status":10,"public_enabled":10,"views":11,"sort":12,"created_at":13,"updated_at":14,"project_title":15,"project_slug":16},53,"XAaCXz8W",39,"20. SpringBoot+Vue集成系统公告","\n## 设计表 notice\n\n```json\nCREATE TABLE `notice` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '标题',\n  `content` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '内容',\n  `userid` int(11) DEFAULT NULL COMMENT '发布人id',\n  `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '发布时间',\n  `open` tinyint(1) DEFAULT '1' COMMENT '是否公开',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='系统公告表';\n```\n\n## 后台 crud\n\nNotice\n\n```json\npackage com.example.springboot.entity;\n\nimport com.baomidou.mybatisplus.annotation.IdType;\nimport com.baomidou.mybatisplus.annotation.TableField;\nimport com.baomidou.mybatisplus.annotation.TableId;\nimport lombok.Data;\n\n@Data\npublic class Notice {\n    @TableId(type= IdType.AUTO)\n    private Integer id;\n    private String title;\n    private String content;\n    private Integer userid;\n    private String time;\n\n    \u002F\u002F 这个注解表示这个字段不在数据库表里  是用来做业务处理用的\n    @TableField(exist = false)\n    private String user;\n\n}\n\n\n```\n\nNoticeController\n\n```json\npackage com.example.springboot.controller;\n\nimport cn.hutool.core.date.DateUtil;\nimport cn.hutool.core.util.StrUtil;\nimport com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;\nimport com.baomidou.mybatisplus.extension.plugins.pagination.Page;\nimport com.example.springboot.common.Result;\nimport com.example.springboot.entity.Notice;\nimport com.example.springboot.entity.User;\nimport com.example.springboot.service.NoticeService;\nimport com.example.springboot.service.UserService;\nimport com.example.springboot.utils.TokenUtils;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.web.bind.annotation.*;\n\nimport java.util.List;\n\n@RestController\n@RequestMapping(\"\u002Fnotice\")\npublic class NoticeController {\n\n    @Autowired\n    NoticeService noticeService;\n\n    @Autowired\n    UserService userService;\n\n    \u002F**\n     * 新增信息\n     *\u002F\n    @PostMapping(\"\u002Fadd\")\n    public Result add(@RequestBody Notice notice) {\n        User currentUser = TokenUtils.getCurrentUser();  \u002F\u002F 获取到当前登录的用户信息\n        notice.setUserid(currentUser.getId());\n        notice.setTime(DateUtil.now());  \u002F\u002F   2023-09-12 21:09:12\n        noticeService.save(notice);\n        return Result.success();\n    }\n\n    \u002F**\n     * 修改信息\n     *\u002F\n    @PutMapping(\"\u002Fupdate\")\n    public Result update(@RequestBody Notice notice) {\n        noticeService.updateById(notice);\n        return Result.success();\n    }\n\n    \u002F**\n     * 删除信息\n     *\u002F\n    @DeleteMapping(\"\u002Fdelete\u002F{id}\")\n    public Result delete(@PathVariable Integer id) {\n        noticeService.removeById(id);\n        return Result.success();\n    }\n\n\n    \u002F**\n     * 批量删除信息\n     *\u002F\n    @DeleteMapping(\"\u002Fdelete\u002Fbatch\")\n    public Result batchDelete(@RequestBody List\u003CInteger> ids) {\n        noticeService.removeBatchByIds(ids);\n        return Result.success();\n    }\n\n    \u002F**\n     * 查询全部信息\n     *\u002F\n    @GetMapping(\"\u002FselectAll\")\n    public Result selectAll() {\n        List\u003CNotice> userList = noticeService.list(new QueryWrapper\u003CNotice>().orderByDesc(\"id\"));\n        return Result.success(userList);\n    }\n\n    \u002F**\n     * 根据ID查询信息\n     *\u002F\n    @GetMapping(\"\u002FselectById\u002F{id}\")\n    public Result selectById(@PathVariable Integer id) {\n        Notice notice = noticeService.getById(id);\n        User user = userService.getById(notice.getUserid());\n        if (user != null) {\n            notice.setUser(user.getName());\n        }\n        return Result.success(notice);\n    }\n\n\n    \u002F**\n     * 多条件模糊查询信息\n     * pageNum 当前的页码\n     * pageSize 每页查询的个数\n     *\u002F\n    @GetMapping(\"\u002FselectByPage\")\n    public Result selectByPage(@RequestParam Integer pageNum,\n                               @RequestParam Integer pageSize,\n                               @RequestParam String title) {\n        QueryWrapper\u003CNotice> queryWrapper = new QueryWrapper\u003CNotice>().orderByDesc(\"id\");  \u002F\u002F 默认倒序，让最新的数据在最上面\n        queryWrapper.like(StrUtil.isNotBlank(title), \"title\", title);\n        Page\u003CNotice> page = noticeService.page(new Page\u003C>(pageNum, pageSize), queryWrapper);\n        List\u003CNotice> records = page.getRecords();\n\u002F\u002F        List\u003CUser> list = userService.list();\n        for (Notice record : records) {\n            Integer authorid = record.getUserid();\n            User user = userService.getById(authorid);\n\u002F\u002F            String author = list.stream().filter(u -> u.getId().equals(authorid)).findFirst().map(User::getName).orElse(\"\");\n            if (user != null) {\n                record.setUser(user.getName());\n            }\n        }\n        return Result.success(page);\n    }\n\n\n}\n\n```\n\n怎么设置字段的默认值？\n在数据库设置即可\n![image.png](https:\u002F\u002Fcdn.nlark.com\u002Fyuque\u002F0\u002F2023\u002Fpng\u002F751015\u002F1695899757808-b2e05d78-2e45-4e6a-924e-ea10ed5f795c.png#averageHue=%23faf7f7&clientId=ud871804e-3a02-4&from=paste&height=536&id=u37c7df10&originHeight=670&originWidth=921&originalType=binary&ratio=1.25&rotation=0&showTitle=false&size=23085&status=done&style=none&taskId=u90e9301e-7d99-4a62-b536-4c681cfbedb&title=&width=736.8)\n\n## 前台 vue\n\nNotice.vue\n\n```json\n\u003Ctemplate>\n  \u003Cdiv>\n    \u003Cdiv>\n      \u003Cel-input style=\"width: 200px\" placeholder=\"查询标题\" v-model=\"title\">\u003C\u002Fel-input>\n      \u003Cel-button type=\"primary\" style=\"margin-left: 10px\" @click=\"load(1)\">查询\u003C\u002Fel-button>\n      \u003Cel-button type=\"info\" @click=\"reset\">重置\u003C\u002Fel-button>\n    \u003C\u002Fdiv>\n    \u003Cdiv style=\"margin: 10px 0\">\n      \u003Cel-button type=\"primary\" plain @click=\"handleAdd\">新增\u003C\u002Fel-button>\n      \u003Cel-button type=\"danger\" plain @click=\"delBatch\">批量删除\u003C\u002Fel-button>\n    \u003C\u002Fdiv>\n    \u003Cel-table :data=\"tableData\" stripe :header-cell-style=\"{ backgroundColor: 'aliceblue', color: '#666' }\" @selection-change=\"handleSelectionChange\">\n      \u003Cel-table-column type=\"selection\" width=\"55\" align=\"center\">\u003C\u002Fel-table-column>\n      \u003Cel-table-column prop=\"id\" label=\"序号\" width=\"70\" align=\"center\">\u003C\u002Fel-table-column>\n      \u003Cel-table-column prop=\"title\" label=\"标题\">\u003C\u002Fel-table-column>\n      \u003Cel-table-column prop=\"content\" label=\"内容\" show-overflow-tooltip>\u003C\u002Fel-table-column>\n      \u003Cel-table-column prop=\"user\" label=\"发布人\">\u003C\u002Fel-table-column>\n      \u003Cel-table-column prop=\"time\" label=\"发布时间\">\u003C\u002Fel-table-column>\n      \u003Cel-table-column label=\"是否公开\">\n        \u003Ctemplate v-slot=\"scope\">\n          \u003Cel-switch v-model=\"scope.row.open\" @change=\"changeOpen(scope.row)\">\u003C\u002Fel-switch>\n        \u003C\u002Ftemplate>\n      \u003C\u002Fel-table-column>\n      \u003Cel-table-column label=\"操作\" align=\"center\" width=\"180\">\n        \u003Ctemplate v-slot=\"scope\">\n          \u003Cel-button size=\"mini\" type=\"primary\" plain @click=\"handleEdit(scope.row)\">编辑\u003C\u002Fel-button>\n          \u003Cel-button size=\"mini\" type=\"danger\" plain @click=\"del(scope.row.id)\">删除\u003C\u002Fel-button>\n        \u003C\u002Ftemplate>\n      \u003C\u002Fel-table-column>\n    \u003C\u002Fel-table>\n\n    \u003Cdiv style=\"margin: 10px 0\">\n      \u003Cel-pagination\n          @current-change=\"handleCurrentChange\"\n          :current-page=\"pageNum\"\n          :page-size=\"pageSize\"\n          layout=\"total, prev, pager, next\"\n          :total=\"total\">\n      \u003C\u002Fel-pagination>\n    \u003C\u002Fdiv>\n\n    \u003Cel-dialog title=\"公告信息\" :visible.sync=\"fromVisible\" width=\"40%\" :close-on-click-modal=\"false\">\n      \u003Cel-form :model=\"form\" label-width=\"80px\" style=\"padding-right: 20px\" :rules=\"rules\" ref=\"formRef\">\n        \u003Cel-form-item label=\"标题\" prop=\"title\">\n          \u003Cel-input v-model=\"form.title\" placeholder=\"标题\">\u003C\u002Fel-input>\n        \u003C\u002Fel-form-item>\n        \u003Cel-form-item label=\"内容\" prop=\"content\">\n          \u003Cel-input type=\"textarea\" v-model=\"form.content\" placeholder=\"内容\">\u003C\u002Fel-input>\n        \u003C\u002Fel-form-item>\n      \u003C\u002Fel-form>\n\n      \u003Cdiv slot=\"footer\" class=\"dialog-footer\">\n        \u003Cel-button @click=\"fromVisible = false\">取 消\u003C\u002Fel-button>\n        \u003Cel-button type=\"primary\" @click=\"save\">确 定\u003C\u002Fel-button>\n      \u003C\u002Fdiv>\n    \u003C\u002Fel-dialog>\n\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript>\n\nexport default {\n  name: \"Notice\",\n  data() {\n    return {\n      tableData: [],  \u002F\u002F 所有的数据\n      pageNum: 1,   \u002F\u002F 当前的页码\n      pageSize: 5,  \u002F\u002F 每页显示的个数\n      username: '',\n      title: '',\n      total: 0,\n      fromVisible: false,\n      form: {},\n      user: JSON.parse(localStorage.getItem('honey-user') || '{}'),\n      rules: {\n        title: [\n          { required: true, message: '请输入标题', trigger: 'blur' },\n        ],\n        content: [\n          { required: true, message: '请输入内容', trigger: 'blur' },\n        ]\n      },\n      ids: [],\n      content: '',\n    }\n  },\n  created() {\n    this.load()\n  },\n  methods: {\n    changeOpen(form) {\n      \u002F\u002F 调用更新的接口  更新数据到数据库\n      this.form = JSON.parse(JSON.stringify(form))\n      this.sendSaveRequest()   \u002F\u002F 直接发请求就可以了\n    },\n    delBatch() {\n      if (!this.ids.length) {\n        this.$message.warning('请选择数据')\n        return\n      }\n      this.$confirm('您确认批量删除这些数据吗？', '确认删除', {type: \"warning\"}).then(response => {\n        this.$request.delete('\u002Fnotice\u002Fdelete\u002Fbatch', { data: this.ids }).then(res => {\n          if (res.code === '200') {   \u002F\u002F 表示操作成功\n            this.$message.success('操作成功')\n            this.load(1)\n          } else {\n            this.$message.error(res.msg)  \u002F\u002F 弹出错误的信息\n          }\n        })\n      }).catch(() => {})\n    },\n    handleSelectionChange(rows) {   \u002F\u002F 当前选中的所有的行数据\n      this.ids = rows.map(v => v.id)\n    },\n    del(id) {\n      this.$confirm('您确认删除吗？', '确认删除', {type: \"warning\"}).then(response => {\n        this.$request.delete('\u002Fnotice\u002Fdelete\u002F' + id).then(res => {\n          if (res.code === '200') {   \u002F\u002F 表示操作成功\n            this.$message.success('操作成功')\n            this.load(1)\n          } else {\n            this.$message.error(res.msg)  \u002F\u002F 弹出错误的信息\n          }\n        })\n      }).catch(() => {})\n    },\n    handleEdit(row) {   \u002F\u002F 编辑数据\n      this.form = JSON.parse(JSON.stringify(row))  \u002F\u002F 给form对象赋值  注意要深拷贝数据\n      this.fromVisible = true   \u002F\u002F 打开弹窗\n    },\n    handleAdd() {   \u002F\u002F 新增数据\n      this.form = {}  \u002F\u002F 新增数据的时候清空数据\n      this.fromVisible = true   \u002F\u002F 打开弹窗\n    },\n    save() {   \u002F\u002F 保存按钮触发的逻辑  它会触发新增或者更新\n      this.$refs.formRef.validate((valid) => {\n        if (valid) {\n          this.sendSaveRequest()\n        }\n      })\n    },\n    sendSaveRequest() {\n      this.$request({\n        url: this.form.id ? '\u002Fnotice\u002Fupdate': '\u002Fnotice\u002Fadd',\n        method: this.form.id ? 'PUT' : 'POST',\n        data: this.form\n      }).then(res => {\n        if (res.code === '200') {  \u002F\u002F 表示成功保存\n          this.$message.success('保存成功')\n          this.load(1)\n          this.fromVisible = false\n        } else {\n          this.$message.error(res.msg)  \u002F\u002F 弹出错误的信息\n        }\n      })\n    },\n    reset() {\n      this.title = ''\n      this.load()\n    },\n    load(pageNum) {  \u002F\u002F 分页查询\n      if (pageNum)  this.pageNum = pageNum\n      this.$request.get('\u002Fnotice\u002FselectByPage', {\n        params: {\n          pageNum: this.pageNum,\n          pageSize: this.pageSize,\n          title: this.title\n        }\n      }).then(res => {\n        this.tableData = res.data.records\n        this.total = res.data.total\n      })\n    },\n    handleCurrentChange(pageNum) {\n      this.load(pageNum)\n    },\n  }\n}\n\u003C\u002Fscript>\n\n\u003Cstyle>\n.el-tooltip__popper{ max-width:300px !important; }\n\u003C\u002Fstyle>\n```\n\nHome.vue\n\n```json\n\u003Ctemplate>\n  \u003Cdiv>\n    \u003Cdiv style=\"box-shadow: 0 0 10px rgba(0,0,0,.1); padding: 10px 20px; border-radius: 5px; margin-bottom: 10px\">\n      早安，{{ user.name }}，祝你开心每一天！\n    \u003C\u002Fdiv>\n\n    \u003Cdiv style=\"display: flex\">\n      \u003Cel-card style=\"width: 100%;\">\n        \u003Cdiv slot=\"header\" class=\"clearfix\">\n          \u003Cspan>青哥哥带你做毕设2024\u003C\u002Fspan>\n        \u003C\u002Fdiv>\n        \u003Cdiv>\n          2024毕设正式开始了！青哥哥带你手把手敲出来！\n          \u003Cdiv style=\"margin-top: 20px\">\n            \u003Cdiv style=\"margin: 10px 0\">\u003Cstrong>主题色\u003C\u002Fstrong>\u003C\u002Fdiv>\n            \u003Cel-button type=\"primary\">按钮\u003C\u002Fel-button>\n            \u003Cel-button type=\"success\">按钮\u003C\u002Fel-button>\n            \u003Cel-button type=\"warning\">按钮\u003C\u002Fel-button>\n            \u003Cel-button type=\"danger\">按钮\u003C\u002Fel-button>\n            \u003Cel-button type=\"info\">按钮\u003C\u002Fel-button>\n          \u003C\u002Fdiv>\n        \u003C\u002Fdiv>\n      \u003C\u002Fel-card>\n    \u003C\u002Fdiv>\n\n    \u003Cdiv style=\"display: flex; margin: 15px 0\">\n      \u003Cel-card style=\"width: 50%; margin-right: 10px\">\n        \u003Cdiv style=\"margin-bottom: 15px; font-size: 20px; font-weight: bold\">系统公告\u003C\u002Fdiv>\n        \u003Cel-timeline style=\"padding: 0\">\n          \u003Cel-timeline-item v-for=\"item in notices\" :key=\"item.id\" :timestamp=\"item.time\" placement=\"top\">\n            \u003Cel-card>\n              \u003Ch4>{{ item.title }}\u003C\u002Fh4>\n              \u003Cp>{{ item.content }}\u003C\u002Fp>\n            \u003C\u002Fel-card>\n          \u003C\u002Fel-timeline-item>\n        \u003C\u002Fel-timeline>\n      \u003C\u002Fel-card>\n\n      \u003Cel-card style=\"width: 50%\">\n        \u003Cdiv style=\"margin-bottom: 15px; font-size: 20px; font-weight: bold\">系统公告\u003C\u002Fdiv>\n        \u003Cel-collapse v-model=\"activeName\" accordion>\n          \u003Cel-collapse-item  v-for=\"(item, index) in notices\" :key=\"item.id\" :name=\"index + ''\">\n            \u003Ctemplate slot=\"title\">\n              \u003Ch4>{{ item.title }}\u003C\u002Fh4>\n            \u003C\u002Ftemplate>\n            \u003Cdiv>{{ item.content }}\u003C\u002Fdiv>\n          \u003C\u002Fel-collapse-item>\n        \u003C\u002Fel-collapse>\n      \u003C\u002Fel-card>\n    \u003C\u002Fdiv>\n\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript>\nexport default {\n  name: \"Home\",\n  data() {\n    return {\n      user: JSON.parse(localStorage.getItem('honey-user') || '{}'),\n      notices: [],\n      activeName: '0'\n    }\n  },\n  created() {\n    this.loadNotice()\n  },\n  methods: {\n    loadNotice() {\n      this.$request.get('\u002Fnotice\u002FselectUserData').then(res => {\n        this.notices = res.data\n      })\n    }\n  }\n}\n\u003C\u002Fscript>\n\n\u003Cstyle scoped>\n\n\u003C\u002Fstyle>\n```\n","coding",1,1043,75,"2024-04-16 02:32:14","2026-05-03 22:49:02","【青哥带小白做毕设2024】完整教程资料汇总","qingge-graduation-project-2024",{"project":18,"items":19},{"id":6,"title":15,"slug":16},[20,28,35,42,49,56,63,69,76,83,90,97,104,111,118,125,132,139,146,153,160,161,168],{"id":21,"uuid":22,"project_id":6,"title":23,"type":9,"status":10,"public_enabled":10,"views":24,"sort":25,"created_at":26,"updated_at":27,"project_title":15,"project_slug":16},33,"R1oMCsCX","00. 从0开始带小白做SpringBoot+Vue+uniapp微信小程序实战项目",12130,55,"2025-04-08 11:28:17","2026-05-07 15:33:28.189425+00",{"id":29,"uuid":30,"project_id":6,"title":31,"type":9,"status":10,"public_enabled":10,"views":32,"sort":33,"created_at":34,"updated_at":14,"project_title":15,"project_slug":16},34,"s3u3u8W7","01. 网页布局技巧",3326,56,"2025-04-08 11:28:13",{"id":36,"uuid":37,"project_id":6,"title":38,"type":9,"status":10,"public_enabled":10,"views":39,"sort":40,"created_at":41,"updated_at":14,"project_title":15,"project_slug":16},35,"21zUHQYS","02. JavaScript入门",2017,57,"2025-04-08 11:27:55",{"id":43,"uuid":44,"project_id":6,"title":45,"type":9,"status":10,"public_enabled":10,"views":46,"sort":47,"created_at":48,"updated_at":14,"project_title":15,"project_slug":16},36,"4XVgY9Ti","03. Vue脚手架搭建",3719,58,"2025-04-08 11:27:46",{"id":50,"uuid":51,"project_id":6,"title":52,"type":9,"status":10,"public_enabled":10,"views":53,"sort":54,"created_at":55,"updated_at":14,"project_title":15,"project_slug":16},37,"S8vLLLvk","04. Git速成，推送代码到云端",1585,59,"2025-04-08 11:27:41",{"id":57,"uuid":58,"project_id":6,"title":59,"type":9,"status":10,"public_enabled":10,"views":60,"sort":61,"created_at":62,"updated_at":14,"project_title":15,"project_slug":16},38,"9EbwnGDp","05. 网页布局神器ElementUI速成",2670,60,"2025-04-08 11:27:37",{"id":6,"uuid":64,"project_id":6,"title":65,"type":9,"status":10,"public_enabled":10,"views":66,"sort":67,"created_at":68,"updated_at":14,"project_title":15,"project_slug":16},"tmzahWer","06. Vue管理系统速成",3744,61,"2025-04-08 11:27:32",{"id":70,"uuid":71,"project_id":6,"title":72,"type":9,"status":10,"public_enabled":10,"views":73,"sort":74,"created_at":75,"updated_at":14,"project_title":15,"project_slug":16},40,"2agqAUQK","07. SpringBoot速成",3654,62,"2025-04-08 11:27:27",{"id":77,"uuid":78,"project_id":6,"title":79,"type":9,"status":10,"public_enabled":10,"views":80,"sort":81,"created_at":82,"updated_at":14,"project_title":15,"project_slug":16},41,"SXPAzgy7","08. Http扫盲，让小白也能听懂",2337,63,"2025-04-08 11:27:20",{"id":84,"uuid":85,"project_id":6,"title":86,"type":9,"status":10,"public_enabled":10,"views":87,"sort":88,"created_at":89,"updated_at":14,"project_title":15,"project_slug":16},42,"ostBIxAV","09. SpringBoot集成Mybatis实现增删改查",4190,64,"2025-04-08 11:27:13",{"id":91,"uuid":92,"project_id":6,"title":93,"type":9,"status":10,"public_enabled":10,"views":94,"sort":95,"created_at":96,"updated_at":14,"project_title":15,"project_slug":16},43,"6Sv7afpa","10. Vue封装前后端数据交互工具",3716,65,"2024-04-16 02:33:13",{"id":98,"uuid":99,"project_id":6,"title":100,"type":9,"status":10,"public_enabled":10,"views":101,"sort":102,"created_at":103,"updated_at":14,"project_title":15,"project_slug":16},44,"d53BPIQs","11. Vue登录（含验证码）、注册页面开发",4867,66,"2024-04-16 02:33:08",{"id":105,"uuid":106,"project_id":6,"title":107,"type":9,"status":10,"public_enabled":10,"views":108,"sort":109,"created_at":110,"updated_at":14,"project_title":15,"project_slug":16},45,"m033ng06","12. SpringBoot集成JWT token实现权限验证",3243,67,"2024-04-16 02:33:00",{"id":112,"uuid":113,"project_id":6,"title":114,"type":9,"status":10,"public_enabled":10,"views":115,"sort":116,"created_at":117,"updated_at":14,"project_title":15,"project_slug":16},46,"7xzyVD06","13. SpringBoot+Vue实现单文件、多文件上传和下载",2784,68,"2024-04-16 02:32:52",{"id":119,"uuid":120,"project_id":6,"title":121,"type":9,"status":10,"public_enabled":10,"views":122,"sort":123,"created_at":124,"updated_at":14,"project_title":15,"project_slug":16},47,"BdOLUenp","14. 多角色登录（Vue-Router路由守卫）",2318,69,"2024-04-16 02:32:39",{"id":126,"uuid":127,"project_id":6,"title":128,"type":9,"status":10,"public_enabled":10,"views":129,"sort":130,"created_at":131,"updated_at":14,"project_title":15,"project_slug":16},48,"2Wkx3igg","15. Vue个人信息修改、修改密码、重置密码",2092,70,"2024-04-16 02:32:33",{"id":133,"uuid":134,"project_id":6,"title":135,"type":9,"status":10,"public_enabled":10,"views":136,"sort":137,"created_at":138,"updated_at":14,"project_title":15,"project_slug":16},49,"BDvVa4By","16. SpringBoot+Vue管理系统实现增删改查",2598,71,"2024-04-16 02:32:29",{"id":140,"uuid":141,"project_id":6,"title":142,"type":9,"status":10,"public_enabled":10,"views":143,"sort":144,"created_at":145,"updated_at":14,"project_title":15,"project_slug":16},50,"FJVl0rCu","17. SpringBoot+Vue实现数据的批量导入和导出",1684,72,"2024-04-16 02:32:26",{"id":147,"uuid":148,"project_id":6,"title":149,"type":9,"status":10,"public_enabled":10,"views":150,"sort":151,"created_at":152,"updated_at":14,"project_title":15,"project_slug":16},51,"FvW9oHgj","18. SpringBoot+Vue项目部署上线",2845,73,"2024-04-16 02:32:22",{"id":154,"uuid":155,"project_id":6,"title":156,"type":9,"status":10,"public_enabled":10,"views":157,"sort":158,"created_at":159,"updated_at":14,"project_title":15,"project_slug":16},52,"xyqrxxiR","19. SpringBoot+Vue集成富文本编辑器",1499,74,"2024-04-16 02:32:18",{"id":4,"uuid":5,"project_id":6,"title":7,"type":9,"status":10,"public_enabled":10,"views":11,"sort":12,"created_at":13,"updated_at":14,"project_title":15,"project_slug":16},{"id":162,"uuid":163,"project_id":6,"title":164,"type":9,"status":10,"public_enabled":10,"views":165,"sort":166,"created_at":167,"updated_at":14,"project_title":15,"project_slug":16},54,"2havlmaC","21. SpringBoot+Vue集成AOP系统日志",1159,76,"2024-04-16 02:32:11",{"id":25,"uuid":169,"project_id":6,"title":170,"type":9,"status":10,"public_enabled":10,"views":171,"sort":172,"created_at":173,"updated_at":14,"project_title":15,"project_slug":16},"ObvLqJdX","22. SpringBoot+Vue实现Echarts数据报表（柱状图、饼图、折线图）",1688,99,"2024-04-16 02:30:25"]