[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"article-public-aX7rviTw":3,"public-project-articles-aX7rviTw":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},1059,"aX7rviTw",52,"11. 带你实现商品收藏功能","## SQL\n\n```sql\nCREATE TABLE `collect` (\n  `id` int NOT NULL AUTO_INCREMENT COMMENT 'ID',\n  `goods_id` int DEFAULT NULL COMMENT '商品ID',\n  `user_id` int DEFAULT NULL COMMENT '用户ID',\n  `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '收藏时间',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='用户收藏';\n```\n\n## 收藏后端逻辑\n\nCollect.java\n\n```java\npackage com.example.entity;\n\nimport java.math.BigDecimal;\n\npublic class Collect {\n\n    \u002F**ID *\u002F\n    private Integer id;\n    \u002F**商品ID *\u002F\n    private Integer goodsId;\n    private String goodsName;\n    private String goodsImg;\n    private BigDecimal goodsPrice;\n    \u002F**用户ID *\u002F\n    private Integer userId;\n    private String userName;\n    \u002F**收藏时间 *\u002F\n    private String time;\n\n    public String getGoodsImg() {\n        return goodsImg;\n    }\n\n    public void setGoodsImg(String goodsImg) {\n        this.goodsImg = goodsImg;\n    }\n\n    public BigDecimal getGoodsPrice() {\n        return goodsPrice;\n    }\n\n    public void setGoodsPrice(BigDecimal goodsPrice) {\n        this.goodsPrice = goodsPrice;\n    }\n\n    public String getGoodsName() {\n        return goodsName;\n    }\n\n    public void setGoodsName(String goodsName) {\n        this.goodsName = goodsName;\n    }\n\n    public String getUserName() {\n        return userName;\n    }\n\n    public void setUserName(String userName) {\n        this.userName = userName;\n    }\n\n    public Integer getId() {\n        return id;\n    }\n\n    public void setId(Integer id) {\n        this.id = id;\n    }\n\n    public Integer getGoodsId() {\n        return goodsId;\n    }\n\n    public void setGoodsId(Integer goodsId) {\n        this.goodsId = goodsId;\n    }\n\n    public Integer getUserId() {\n        return userId;\n    }\n\n    public void setUserId(Integer userId) {\n        this.userId = userId;\n    }\n\n    public String getTime() {\n        return time;\n    }\n\n    public void setTime(String time) {\n        this.time = time;\n    }\n}\n\n```\n\n\n\nCollectMapper.xml\n\n```xml\n\u003C?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\u003C!DOCTYPE mapper\n        PUBLIC \"-\u002F\u002Fmybatis.org\u002F\u002FDTD Mapper 3.0\u002F\u002FEN\"\n        \"http:\u002F\u002Fmybatis.org\u002Fdtd\u002Fmybatis-3-mapper.dtd\">\n\u003Cmapper namespace=\"com.example.mapper.CollectMapper\">\n\n    \u003Cselect id=\"selectAll\" resultType=\"com.example.entity.Collect\">\n        select collect.*, goods.name as goodsName, goods.img as goodsImg, goods.price as goodsPrice, user.name as userName from `collect`\n        left join goods on collect.goods_id = goods.id\n        left join user on collect.user_id = user.id\n        \u003Cwhere>\n            \u003Cif test=\"goodsName != null\"> and goods.name  like concat('%', #{goodsName}, '%')\u003C\u002Fif>\n            \u003Cif test=\"userId != null\"> and collect.user_id  = #{userId}\u003C\u002Fif>\n            \u003Cif test=\"goodsId != null\"> and collect.goods_id  = #{goodsId}\u003C\u002Fif>\n        \u003C\u002Fwhere>\n        order by collect.id desc\n    \u003C\u002Fselect>\n\n    \u003Cselect id=\"selectById\" resultType=\"com.example.entity.Collect\">\n        select * from `collect` where id = #{id}\n    \u003C\u002Fselect>\n\n    \u003Cdelete id=\"deleteById\">\n        delete from `collect` where id = #{id}\n    \u003C\u002Fdelete>\n\n    \u003Cinsert id=\"insert\" parameterType=\"com.example.entity.Collect\" useGeneratedKeys=\"true\">\n        insert into `collect`\n        \u003Ctrim prefix=\"(\" suffix=\")\" suffixOverrides=\",\">\n            \u003Cif test=\"id != null\">id,\u003C\u002Fif>\n            \u003Cif test=\"goodsId != null\">goods_id,\u003C\u002Fif>\n            \u003Cif test=\"userId != null\">user_id,\u003C\u002Fif>\n            \u003Cif test=\"time != null\">time,\u003C\u002Fif>\n        \u003C\u002Ftrim>\n        values\n        \u003Ctrim prefix=\"(\" suffix=\")\" suffixOverrides=\",\">\n            \u003Cif test=\"id != null\">#{id},\u003C\u002Fif>\n            \u003Cif test=\"goodsId != null\">#{goodsId},\u003C\u002Fif>\n            \u003Cif test=\"userId != null\">#{userId},\u003C\u002Fif>\n            \u003Cif test=\"time != null\">#{time},\u003C\u002Fif>\n        \u003C\u002Ftrim>\n    \u003C\u002Finsert>\n\n    \u003Cupdate id=\"updateById\" parameterType=\"com.example.entity.Collect\">\n        update `collect`\n        \u003Cset>\n            \u003Cif test=\"id != null\">\n                id = #{id},\n            \u003C\u002Fif>\n            \u003Cif test=\"goodsId != null\">\n                goods_id = #{goodsId},\n            \u003C\u002Fif>\n            \u003Cif test=\"userId != null\">\n                user_id = #{userId},\n            \u003C\u002Fif>\n            \u003Cif test=\"time != null\">\n                time = #{time},\n            \u003C\u002Fif>\n        \u003C\u002Fset>\n        where id = #{id}\n    \u003C\u002Fupdate>\n\n\u003C\u002Fmapper>\n```\n\n## 收藏的前端页面\n\n### 管理页面 Collect.vue\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv>\n\n    \u003Cdiv class=\"card\" style=\"margin-bottom: 5px;\">\n      \u003Cel-input v-model=\"data.goodsName\" style=\"width: 300px; margin-right: 10px\" placeholder=\"请输入商品名称查询\">\u003C\u002Fel-input>\n      \u003Cel-button type=\"primary\" @click=\"load\">查询\u003C\u002Fel-button>\n      \u003Cel-button type=\"info\" style=\"margin: 0 10px\" @click=\"reset\">重置\u003C\u002Fel-button>\n    \u003C\u002Fdiv>\n\n    \u003Cdiv class=\"card\" style=\"margin-bottom: 5px\">\n      \u003Cel-table :data=\"data.tableData\" stripe>\n        \u003Cel-table-column prop=\"goodsName\" label=\"商品名称\">\u003C\u002Fel-table-column>\n        \u003Cel-table-column prop=\"userName\" label=\"用户名称\">\u003C\u002Fel-table-column>\n        \u003Cel-table-column prop=\"time\" label=\"收藏时间\">\u003C\u002Fel-table-column>\n\n        \u003Cel-table-column label=\"操作\" align=\"center\" width=\"160\">\n          \u003Ctemplate #default=\"scope\">\n            \u003Cel-button type=\"danger\" @click=\"handleDelete(scope.row.id)\">删除\u003C\u002Fel-button>\n          \u003C\u002Ftemplate>\n        \u003C\u002Fel-table-column>\n      \u003C\u002Fel-table>\n    \u003C\u002Fdiv>\n\n    \u003Cdiv class=\"card\">\n      \u003Cel-pagination @current-change=\"load\" background layout=\"total, prev, pager, next\" v-model:page-size=\"data.pageSize\" v-model:current-page=\"data.pageNum\" :total=\"data.total\"\u002F>\n    \u003C\u002Fdiv>\n\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript setup>\nimport request from \"@\u002Futils\u002Frequest\";\nimport {reactive, ref} from \"vue\";\nimport {ElMessageBox, ElMessage} from \"element-plus\";\n\nconst formRef = ref()\nconst data = reactive({\n  pageNum: 1,\n  pageSize: 10,\n  total: 0,\n  formVisible: false,\n  form: {},\n  tableData: [],\n  goodsName: null,\n  rules: {\n    name: [\n      { required: true, message: '请输入名称', trigger: 'blur' },\n    ]\n  }\n})\n\n\u002F\u002F 分页查询\nconst load = () => {\n  request.get('\u002Fcollect\u002FselectPage', {\n    params: {\n      pageNum: data.pageNum,\n      pageSize: data.pageSize,\n      goodsName: data.goodsName\n    }\n  }).then(res => {\n    data.tableData = res.data?.list\n    data.total = res.data?.total\n  })\n}\nload()\n\n\u002F\u002F 新增\nconst handleAdd = () => {\n  data.form = {}\n  data.formVisible = true\n}\n\n\u002F\u002F 编辑\nconst handleEdit = (row) => {\n  data.form = JSON.parse(JSON.stringify(row))\n  data.formVisible = true\n}\n\n\u002F\u002F 新增保存\nconst add = () => {\n  request.post('\u002Fcollect\u002Fadd', data.form).then(res => {\n    if (res.code === '200') {\n      load()\n      ElMessage.success('操作成功')\n      data.formVisible = false\n    } else {\n      ElMessage.error(res.msg)\n    }\n  })\n}\n\n\u002F\u002F 编辑保存\nconst update = () => {\n  request.put('\u002Fcollect\u002Fupdate', data.form).then(res => {\n    if (res.code === '200') {\n      load()\n      ElMessage.success('操作成功')\n      data.formVisible = false\n    } else {\n      ElMessage.error(res.msg)\n    }\n  })\n}\n\n\u002F\u002F 弹窗保存\nconst save = () => {\n  formRef.value.validate(valid => {\n    if (valid) {\n      \u002F\u002F data.form有id就是更新，没有就是新增\n      data.form.id ? update() : add()\n    }\n  })\n}\n\n\u002F\u002F 删除\nconst handleDelete = (id) => {\n  ElMessageBox.confirm('删除后数据无法恢复，您确定删除吗?', '删除确认', { type: 'warning' }).then(res => {\n    request.delete('\u002Fcollect\u002Fdelete\u002F' + id).then(res => {\n      if (res.code === '200') {\n        load()\n        ElMessage.success('操作成功')\n      } else {\n        ElMessage.error(res.msg)\n      }\n    })\n  }).catch(err => {})\n}\n\n\u002F\u002F 重置\nconst reset = () => {\n  data.goodsName = null\n  load()\n}\n\u003C\u002Fscript>\n```\n\n\n\n### 商品详情页面 GoodsDetail.vue\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"front-container\" style=\"width: 50%\">\n    \u003Cdiv class=\"card\" style=\"padding: 20px; display: flex; grid-gap: 20px; margin-bottom: 10px\">\n      \u003Cimg :src=\"data.goods.img\" alt=\"\" style=\"width: 300px; height: 300px\">\n      \u003Cdiv style=\"flex: 1\">\n        \u003Cdiv style=\"display: flex; align-items: flex-start; grid-gap: 20px; margin-bottom: 10px\">\n          \u003Cdiv style=\"font-size: 22px; font-weight: bold; line-height: 25px; flex: 1\">\n            \u003Cel-tag style=\"margin-right: 5px; float: left; background-color: red; color: white\" type=\"danger\" v-if=\"data.goods.recommend === '是'\">推荐\u003C\u002Fel-tag>\n            {{ data.goods.name }}\n          \u003C\u002Fdiv>\n          \u003Cdiv style=\"width: 60px; cursor: pointer; color: #666\" @click=\"addCollect\" v-if=\"!data.userCollect?.id\">\n            \u003Cel-icon style=\"position: relative; top: 3px\" size=\"18\">\u003CStar \u002F>\u003C\u002Fel-icon>收藏\n          \u003C\u002Fdiv>\n          \u003Cdiv style=\"width: 100px; cursor: pointer; color: orange\" @click=\"removeCollect\" v-if=\"data.userCollect?.id\">\n            \u003Cel-icon style=\"position: relative; top: 3px\" size=\"18\">\u003CStarFilled \u002F>\u003C\u002Fel-icon>取消收藏\n          \u003C\u002Fdiv>\n        \u003C\u002Fdiv>\n        \u003Cdiv style=\"margin-bottom: 20px\">\n          \u003Cspan style=\"color: red; font-size: 18px\">￥\u003C\u002Fspan>\u003Cb style=\"color: red; font-size: 30px\">{{ data.goods.price }}\u003C\u002Fb>\n          \u003Cspan style=\"color: #666; margin-left: 20px\">累计销量 {{ data.goods.saleCount }}\u003C\u002Fspan>\n          \u003Cspan style=\"color: #666; margin-left: 20px\">剩余库存 {{ data.goods.store }}\u003C\u002Fspan>\n        \u003C\u002Fdiv>\n        \u003Cdiv style=\"margin-bottom: 20px; padding: 10px; border-radius: 5px; background-color: #e8e4e4; line-height: 25px; text-align: justify\">{{ data.goods.description }}\u003C\u002Fdiv>\n        \u003Cdiv>\n          \u003Cel-input-number style=\"width: 150px; height: 40px\" :min=\"1\" v-model=\"data.num\">\u003C\u002Fel-input-number>\n          \u003Cel-button style=\"height: 40px; margin-left: 5px\" type=\"danger\">加入购物车\u003C\u002Fel-button>\n          \u003Cel-button style=\"height: 40px; margin-left: 5px\" type=\"danger\">立即购买\u003C\u002Fel-button>\n        \u003C\u002Fdiv>\n        \u003Cdiv style=\"margin-top: 10px; color: #666\">校园小卖部销售并发货的商品，由小卖部提供发票和相应的售后服务。请您放心购买！\u003C\u002Fdiv>\n      \u003C\u002Fdiv>\n    \u003C\u002Fdiv>\n\n    \u003Cdiv class=\"card\" style=\"padding: 20px; margin-bottom: 50px\">\n      \u003Cdiv style=\"font-size: 20px; padding-bottom: 10px; border-bottom: 1px solid #ddd\">\n        \u003Cspan @click=\"changeTab('商品详情')\" style=\"cursor: pointer\" :class=\"{'current-active': data.current === '商品详情' }\">商品详情\u003C\u002Fspan>\n        \u003Cspan @click=\"changeTab('商品评论')\" :class=\"{'current-active': data.current === '商品评论' }\" style=\"cursor: pointer; margin-left: 20px\">商品评论\u003C\u002Fspan>\n      \u003C\u002Fdiv>\n      \u003Cdiv v-if=\"data.current === '商品详情'\" style=\"padding: 10px\" v-html=\"data.goods.content\">\u003C\u002Fdiv>\n      \u003Cdiv v-if=\"data.current === '商品评论'\" style=\"min-height: 700px\">\n        \u003Cdiv v-if=\"data.commentList.length === 0\" style=\"padding: 50px; text-align: center; color: #666\">暂无评论...\u003C\u002Fdiv>\n        \u003Cdiv v-if=\"data.commentList.length > 0\" style=\"padding: 20px; text-align: center\">\n\u003C!--          显示评论列表-->\n        \u003C\u002Fdiv>\n      \u003C\u002Fdiv>\n\n    \u003C\u002Fdiv>\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript setup>\nimport { reactive } from \"vue\";\nimport router from \"@\u002Frouter\";\nimport request from \"@\u002Futils\u002Frequest\";\nimport {ElMessage} from \"element-plus\";\n\nconst data = reactive({\n  user: JSON.parse(localStorage.getItem('system-user') || '{}'),\n  id: router.currentRoute.value.query.id,\n  goods: {},\n  num: 1,\n  current: '商品详情',\n  commentList: [],\n  userCollect: {}\n})\n\n\u002F\u002F 当前的商品是否被当前登录的用户收藏过\nconst loadCollect = () => {\n  request.get('\u002Fcollect\u002FselectAll', {\n    params:{\n      goodsId: data.id,\n      userId: data.user.id\n    }\n  }).then(res => {\n    if (res.data?.length > 0) {  \u002F\u002F 查询到数据了 表示用户收藏过了\n      data.userCollect = res.data[0]\n    } else {\n      data.userCollect = {}\n    }\n  })\n}\nloadCollect()\n\n\u002F\u002F 取消收藏\nconst removeCollect = () => {\n  request.delete('\u002Fcollect\u002Fdelete\u002F' + data.userCollect.id).then(res => {\n    if (res.code === '200') {\n      ElMessage.success('操作成功')\n      loadCollect()\n    } else {\n      ElMessage.error(res.msg)\n    }\n  })\n}\n\nconst addCollect = () => {\n  request.post('\u002Fcollect\u002Fadd', { goodsId: data.id, userId: data.user.id }).then(res => {\n    if (res.code === '200') {\n      ElMessage.success('操作成功')\n      loadCollect()\n    } else {\n      ElMessage.error(res.msg)\n    }\n  })\n}\n\nconst changeTab = (tabName) => {\n  data.current = tabName\n}\n\nconst load = () => {\n  request.get('\u002Fgoods\u002FselectById\u002F' + data.id).then(res => {\n    data.goods = res.data\n  })\n}\nload()\n\u003C\u002Fscript>\n\n\u003Cstyle>\n.current-active {\n  color: red;\n  border-bottom: 2px solid red;\n  padding-bottom: 10px\n}\n\u003C\u002Fstyle>\n```\n\n### 用户个人收藏页面 UserCollect.vue\n\n```vue\n\u003Ctemplate>\n  \u003Cdiv class=\"front-container\">\n    \u003Cdiv style=\"font-size: 20px; font-weight: bold; margin-bottom: 20px\">我收藏的商品（{{ data.total }}）\u003C\u002Fdiv>\n    \u003Cel-row :gutter=\"20\">\n      \u003Cel-col :span=\"6\" v-for=\"item in data.tableData\" :key=\"item.id\">\n        \u003Cdiv @click=\"router.push('\u002Ffront\u002FgoodsDetail?id=' + item.goodsId)\" class=\"card\"\n             style=\"cursor: pointer; width: 100%; padding: 0; border-radius: 5px; margin-bottom: 20px\">\n          \u003Cimg :src=\"item.goodsImg\" alt=\"\" style=\"width: 100%; height: 260px; border-radius: 5px 5px 0 0\">\n          \u003Cdiv style=\"padding: 5px\">\n            \u003Cdiv class=\"line1\" style=\"font-size: 18px; margin-bottom: 10px\">{{ item.goodsName }}\u003C\u002Fdiv>\n            \u003Cdiv style=\"display: flex; align-items: center\">\n              \u003Cdiv style=\"flex: 1; color: red\">￥\u003Cb style=\"font-size: 20px\">{{ item.goodsPrice }}\u003C\u002Fb>\u003C\u002Fdiv>\n              \u003Cel-button type=\"danger\" @click.stop=\"cancel(item.id)\">取消收藏\u003C\u002Fel-button>\n            \u003C\u002Fdiv>\n          \u003C\u002Fdiv>\n        \u003C\u002Fdiv>\n      \u003C\u002Fel-col>\n    \u003C\u002Fel-row>\n\n    \u003Cdiv v-if=\"data.total > 0\">\n      \u003Cel-pagination style=\"background-color: white; width: fit-content; padding: 5px 10px; border-radius: 5px\" @current-change=\"load\" layout=\"total, prev, pager, next\" v-model:page-size=\"data.pageSize\" v-model:current-page=\"data.pageNum\" :total=\"data.total\"\u002F>\n    \u003C\u002Fdiv>\n  \u003C\u002Fdiv>\n\u003C\u002Ftemplate>\n\n\u003Cscript setup>\nimport {reactive} from \"vue\";\nimport request from \"@\u002Futils\u002Frequest\";\nimport router from \"@\u002Frouter\";\nimport {ElMessage} from \"element-plus\";\n\nconst data = reactive({\n  user: JSON.parse(localStorage.getItem('system-user') || '{}'),\n  pageNum: 1,\n  pageSize: 10,\n  total: 0,\n  tableData: [],\n})\n\n\u002F\u002F 分页查询\nconst load = () => {\n  request.get('\u002Fcollect\u002FselectPage', {\n    params: {\n      pageNum: data.pageNum,\n      pageSize: data.pageSize,\n      userId: data.user.id\n    }\n  }).then(res => {\n    data.tableData = res.data?.list\n    data.total = res.data?.total\n  })\n}\nload()\n\n\u002F\u002F 取消收藏\nconst cancel = (collectId) => {\n  request.delete('\u002Fcollect\u002Fdelete\u002F' + collectId).then(res => {\n    if (res.code === '200') {\n      ElMessage.success('操作成功')\n      load()\n    } else {\n      ElMessage.error(res.msg)\n    }\n  })\n}\n\u003C\u002Fscript>\n```\n\n## 页面自动滑动到顶部\n\nrouter\u002Findex.js 设置跳转配置\n\n```vue\nrouter.beforeEach(() => {\n  window.scroll({ top: 0, behavior: \"smooth\" })\n})\n\n```\n\n","coding",1,2667,2067,"2025-11-28 17:00:21","2026-05-03 22:49:02","青哥带小白做毕设2026所有资料汇总","qingge-code-2026",{"project":18,"items":19},{"id":6,"title":15,"slug":16},[20,27,34,41,48,55,62,69,76,83,90,97,98,105,112,119,127,134],{"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":14,"project_title":15,"project_slug":16},993,"mgoFKmGT","00. 带小白做毕设课程介绍以及脚手架获取",32063,1966,"2026-03-29 19:37:39",{"id":28,"uuid":29,"project_id":6,"title":30,"type":9,"status":10,"public_enabled":10,"views":31,"sort":32,"created_at":33,"updated_at":14,"project_title":15,"project_slug":16},998,"1kCk1d2E","01. 导入并运行项目脚手架",14398,1974,"2025-11-11 16:24:50",{"id":35,"uuid":36,"project_id":6,"title":37,"type":9,"status":10,"public_enabled":10,"views":38,"sort":39,"created_at":40,"updated_at":14,"project_title":15,"project_slug":16},1003,"8ZlQ12IX","02. 带你开发一个基础的用户管理模块（上）",12150,1987,"2025-11-12 16:53:01",{"id":42,"uuid":43,"project_id":6,"title":44,"type":9,"status":10,"public_enabled":10,"views":45,"sort":46,"created_at":47,"updated_at":14,"project_title":15,"project_slug":16},1006,"6mmUNf9i","03. 带你开发一个基础的用户管理模块（下）",7782,1994,"2025-11-13 16:48:27",{"id":49,"uuid":50,"project_id":6,"title":51,"type":9,"status":10,"public_enabled":10,"views":52,"sort":53,"created_at":54,"updated_at":14,"project_title":15,"project_slug":16},1011,"3XNG04wA","04. 带你开发用户登录、注册、个人信息、修改密码功能",6474,2003,"2025-11-17 17:03:58",{"id":56,"uuid":57,"project_id":6,"title":58,"type":9,"status":10,"public_enabled":10,"views":59,"sort":60,"created_at":61,"updated_at":14,"project_title":15,"project_slug":16},1017,"LnAAYydZ","05. 带你开发商品分类管理功能",5467,2012,"2025-11-24 17:30:23",{"id":63,"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},1018,"584qohhy","06. 开发商品信息管理功能",4836,2013,"2025-11-24 17:30:12",{"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},1024,"scxsifCZ","07. 开发轮播图信息管理功能",3313,2021,"2025-11-24 17:29:58",{"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},1041,"AjujV8Gq","08. 带你实现前台首页功能",4058,2039,"2025-11-24 17:31:31",{"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},1045,"p6yD8ZxS","09. 带你实现商品搜索、商品分类检索功能",3005,2048,"2025-11-25 16:35:45",{"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},1050,"7gHUek7z","10. 带你实现商品详情页功能",2622,2053,"2025-11-26 17:22:20",{"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":99,"uuid":100,"project_id":6,"title":101,"type":9,"status":10,"public_enabled":10,"views":102,"sort":103,"created_at":104,"updated_at":14,"project_title":15,"project_slug":16},1060,"xcmGXr9E","12. 带你开发用户模拟充值功能",2443,2068,"2026-02-02 14:24:37",{"id":106,"uuid":107,"project_id":6,"title":108,"type":9,"status":10,"public_enabled":10,"views":109,"sort":110,"created_at":111,"updated_at":14,"project_title":15,"project_slug":16},1065,"z8IN0tX8","13. 带你实现购物车功能",2461,2078,"2025-12-01 17:16:05",{"id":113,"uuid":114,"project_id":6,"title":115,"type":9,"status":10,"public_enabled":10,"views":116,"sort":117,"created_at":118,"updated_at":14,"project_title":15,"project_slug":16},1069,"NfBIfhVx","14. 带你实现商品下单功能",3131,2086,"2025-12-02 16:57:21",{"id":120,"uuid":121,"project_id":6,"title":122,"type":9,"status":10,"public_enabled":10,"views":123,"sort":124,"created_at":125,"updated_at":126,"project_title":15,"project_slug":16},1072,"PDQdczrn","14.1 带你实现订单配送功能",2772,2097,"2025-12-03 16:10:40","2026-05-07 15:36:12.649662+00",{"id":128,"uuid":129,"project_id":6,"title":130,"type":9,"status":10,"public_enabled":10,"views":131,"sort":132,"created_at":133,"updated_at":14,"project_title":15,"project_slug":16},1075,"RYH15Bfu","15. 带你实现订单评价功能",2507,2103,"2025-12-04 17:10:47",{"id":135,"uuid":136,"project_id":6,"title":137,"type":9,"status":10,"public_enabled":10,"views":138,"sort":139,"created_at":140,"updated_at":14,"project_title":15,"project_slug":16},1079,"iUdzrNPu","16. 带你实现后台数据统计功能",2991,2107,"2025-12-05 17:37:57"]