上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: 优惠券 创建优惠券子应用 创建coupon子应用 git checkout master git merge feature/order git push ​ git checkout -b feature/coupon ​ cd luffycityapi/apps python ../../man 阅读全文
posted @ 2022-11-03 10:31 贰号猿 阅读(80) 评论(0) 推荐(0)
摘要: 下单结算 客户端展示下单结算界面展示 views/Cart.vue,代码: <div class="li-3"><router-link to="/order" class="btn">去结算</router-link></div> View Code router/index.js,代码: // 阅读全文
posted @ 2022-11-01 20:50 贰号猿 阅读(258) 评论(0) 推荐(0)
摘要: 购物车实现 准备工作 创建子应用 cart cd /home/moluo/Desktop/luffycity/ git checkout master git merge feature/discount git checkout -b feature/cart ​ cd luffycityapi/ 阅读全文
posted @ 2022-11-01 10:39 贰号猿 阅读(52) 评论(0) 推荐(0)
摘要: 课程动态价格策略实现 动态价格策略设计 商城往往为了提高销量都会出现活动内容,商品因为参加了活动所以会产生价格的变动。 价格优惠活动类型名称: 限时免费, 限时折扣, 限时减免, 限时满减, 积分抵扣, 优惠券 ​ 针对单个商品的动态价格策略,公式: 限时免费 0 限时折扣 原价*0.8 限时减免 阅读全文
posted @ 2022-10-31 12:01 贰号猿 阅读(76) 评论(0) 推荐(0)
摘要: 课程详情页显示 课程详情页 views/Info.vue,代码: <template> <div class="detail"> <Header/> <div class="main"> <div class="course-info"> <div class="wrap-left"> <!-- 课 阅读全文
posted @ 2022-10-28 15:38 贰号猿 阅读(146) 评论(0) 推荐(0)
摘要: case_numtitleurlmethodparamsdatajsoncookiesheadersexcept neeo_001 token_登录 http://www.neeo.cc:6002/pinter/bank/api/login2 post 空的就是不需要的参数 {"userName": 阅读全文
posted @ 2022-10-28 08:55 贰号猿 阅读(49) 评论(0) 推荐(0)
摘要: Shell脚本 Shell脚本命令的工作方式有两种:交互式和批处理。 交互式:Interactive,用户每输入一条命令就立即执行。直接打开系统终端直接调用命令,采取的就是这种方式。 批处理:Bach,事先编写一个完整的Shell脚本,一次性执行脚本中的诸多指令。工作中,往往采用的这种方式比较多。 阅读全文
posted @ 2022-10-26 20:17 贰号猿 阅读(422) 评论(0) 推荐(0)
摘要: elasticsearch Elasticsearch是一个基于Lucene的搜索服务器,也是属于NoSQL阵营的数据库。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口提供给我们操作的。Elasticsearch是用Java语言开发的,并作为Apache许可条款下的开放源 阅读全文
posted @ 2022-10-26 20:03 贰号猿 阅读(159) 评论(0) 推荐(0)
摘要: 虚拟化技术 虚拟化技术:把真实物理机子中剩余的资源重新整合,基于虚拟机软件创建出来一台新的虚拟的计算机提供给开发者使用。 优点: 虚拟化 使用软件/硬件的方法重新定义划分计算机资源,可以实现计算机资源的动态分配、灵活调度、跨域共享,提高IT资源利用率,降低成本,加快部署,极大增强系统整体安全性和可靠 阅读全文
posted @ 2022-10-21 15:35 贰号猿 阅读(877) 评论(0) 推荐(0)
摘要: 前台 课程列表页 前端显示课程列表页面 views/Course.vue,代码: <template> <div class="course"> <Header></Header> <div class="top-wrap"> <div class="actual-header"> <div cla 阅读全文
posted @ 2022-10-20 20:22 贰号猿 阅读(252) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页