更新记录
1.0.1(2023-03-11) 下载此版本
1.0.1
1.0.0(2023-03-11) 下载此版本
1.0.0
平台兼容性
<!-- * @Author: 计佳付 490281620@qq.com * @Date: 2023-03-11 09:52:49 * @LastEditors: 计佳付 490281620@qq.com * @LastEditTime: 2023-03-11 17:36:56 * @FilePath: /points-mall-uniapp-plugin/uni_modules/points-mall-uniapp-plugin/readme.md * @Description: -->points-mall-uniapp-plugin
本插件是采用 uniapp 提供的页面模板插件功能实现的积分商城板块。引用本插件可以直接加载路由页面接入积分商城功能。
使用步骤
1、通过 uniapp 插件市场或者下载安装包的方式,把插件安装到 uni_modules 模块中
2、把以下内容复制到项目根目录的 pages.json 中的 pages 数组中
{
"path": "uni_modules/points-mall-uniapp-plugin/pages/home/home",
"style": {
"navigationBarTitleText": "积分商城"
}
},
{
"path": "uni_modules/points-mall-uniapp-plugin/pages/detail/detail",
"style": {
"navigationBarTitleText": "商品详情"
}
}
3、引入插件所使用的 store 状态管理文件到主项目的 store modules 中
// 主项目store/index.js文件
import pointMall from "@/uni_modules/points-mall-uniapp-plugin/store/pointMall.js";
...
const Store = new Vuex.Store({
modules: {
...,
pointMall,
},
});
4、确保主项目安装插件使用的必要依赖:
- uview@2.0.35 插件使用的 ui 库
- vuex@3.6.2 状态关联
- zpaging@2.5.4 下拉刷新加载组件