多点商城小程序案例笔记一

《微信小程序-开发入门及案例详解》

需求分析

核心流程页面

1.入口页
2.商详页
3.购物车
4.结算页
5.支付页
6.支付状态页

辅助功能页面

1.登录相关页面
2.商品检索相关页面
3.地址相关页面
4.订单相关页面
5.个人中心相关页面

技术架构

技术架构图

   + pages
        active
        cashier
        checkout
        details
        index
        search
        status
   + views       // template
        home
        cart
        mine
        modules
        sort
   + widgets    // 公共组件块
        itemlist
        searchbox
   + common  // 公共方法集合
        ajax
        basestyle
        utils
   + service    // 业务逻辑
        cart
        items
原文地址:https://www.cnblogs.com/siluo2000/p/11284320.html