公共防伪积分模块(SCRM Beta版本切换)
防伪积分: 公共模块防伪积分,在多个项目中应用,因此抽出来避免重复工作。
文件大小69kb
测试地址
tips:
1、涉及微信环境,jssdk授权config时需要授权扫码( jsApiList:['scanQRCode'] );
2、通过方式引入js时将在window对象中全局 ___Points___ 构造方法,使用构造方法时务必在资源文件引入之后使用,如有命名上的冲突请自行处理
3、模块css部分由js动态插入用页面,命名使用到hash,但也不排除有冲突和被复写的可能性
项目维护说明
安装
npm i
运行
运行开发环境
npm run dev
打包Uat环境
npm run build:uat
打包发布Uat环境
./deploy.sh
打包生产环境
npm run build
测试demo时确认demo 资源目录位置
项目发布说明
将master分支下dist目录内文件发布至cdn 路径下
http://cdn-yyj.4000916916.com/yyj/2018/points/
安装install
1、npm或yarn安装
npm install @byhealth/points
yarn add @byhealth/points
构造方法:new Points(Options)
参数:options = {...}
参数名 | 必选 | 类型 | 说明 |
---|
async | 否 | Boole | 积分成功是否异步回调 |
customPhoneDom | 否 | String | 电话号码输入框 id(自定义入口UI时使用) |
customQrDom | 否 | String | 调用摄像头扫码按钮 id(自定义入口UI时使用) |
customSecuritycodeDom | 否 | String | 防伪输入框 id(自定义入口UI时使用) |
customSubmitDom | 否 | String | 提交按钮 id(自定义入口UI时使用) |
uatApiBase | 否 | String | 用测试环境ApiUrl,不传调用生产积分Api |
hidePointsResult | 否 | Boole | 隐藏积分成功结果 默认true |
primaryColour | 否 | String | 自定义颜色 |
基本用法:
import points from '@byhealth/points';
const Point = new points({
uatApiBase: 'http://wx-test.by-health.com'
});
const {
showSecuritycode
} = Point;
const options = {
mobilePhone: '13888888888'
};
const callback = (data) => {
console.log(data);
console.log('do something!!!');
}
showSecuritycode(options, callback)
自定义入口UI用法
import points from '@byhealth/points';
const customPoint = new points({
async: false,
securitycodeDom:'securitycodeDom',
phoneDom:'phoneDom',
QrDom:'QrDom',
submitDom:'submitDom',
uatApiBase: 'http://wx-test.by-health.com'
});
const {
customSecuritycode,
} = customPoint;
const options = {
mobilePhone: '13888888888'
};
const callback = (data) => {
console.log(data);
console.log('do something!!!');
}
customSecuritycode(options, callback)
Api 调用防伪积分方法
默认调起的防伪积分方法
默认ui直接显示防伪积分弹窗
showSecuritycode(options, callback)
自定义入口UI时调起的防伪积分方法
自定义入口ui时调用下面方法初始化积分入口
customSecuritycode(options, callback)
调用防伪积分方法参数说明:options = {...}
参数名 | 必选 | 类型 | 说明 |
---|
memberId | 二选一 | int | 消费者手机号码(memberId与mobilePhone二选一) |
mobilePhone | 二选一 | string | 消费者手机号码(memberId与mobilePhone二选一,已登陆传消费者会员id,未登陆或未注册传入消费者手机号码) |
storeId | 否 | string | 非必填:如线下门店的积分传入门店机构ID(不传默认微信虚拟门店1-WAYZ2) |
clerkId | 否 | Int | 非必填:如线下门店的积分传入店员员工ID |
channelType | 否 | Int | 渠道表,详情查看渠道表(默认传4,微信渠道)参数说明见附表) |
comment | 否 | String | 积分备注 |
antifakecode | 否 | String | 防伪码 |
回调:callback: (data: any) => void
注意:回调返回结果即为积分接口返回结果,为了保留积分模块的灵活性这里的回调不只是积分成功才发生,失败情况也会调用回调,请在使用时根据业务需要来进行处理
data值是积分接口返回,示例如下
{
antifakecode: "8869727599529863"
channelType: 1
clerkId: 39807044
createTime: "2019-02-20T12:13:42.222Z"
integralId: 252957006
memberId: 47253249
poiAvailableValue: 386
points: 168
productId: 340
productName: "汤臣倍健叶酸亚铁片"
status: 1
storeId: "1-C0MLA7"
txnSn: "JF276448510667530240"
updateTime: "2019-02-20T12:13:42.222Z"
}
私有API
暴露部分私有方法,方便小型项目使用
**1. initData: () => void 初始化防伪码和条形码数据 **
Points.initData()
2. showLoading: () => void 显示loading
Points.showLoading()
3. hideLoading: () => void 隐藏loading
Points.hideLoading()
4. showMsg: (msg: string, title: string) => any 显示弹窗
@param msg
— 弹窗内容,可以使用HTMLdom
@param title
— 弹窗标题
Points.showMsg('<div>这是弹窗文字</div>', '这是弹窗标题')
5. hideMsg: ƒ () 隐藏弹窗
points.hideMsg()
6. validate
引用包validate-by-health,查询api文档请访问:https://github.com/by-healthFED/validate
7. wechat
引用包share-wechat,查询api文档请访问:https://github.com/by-healthFED/share-wechat
8. nativeApp
引用包@byhealth/native-app-jssdk,查询api文档请访问:https://github.com/by-healthFED/native-app-jssdk
附表一:渠道类型对照表
channelType=value | 说明 |
---|
1 | 终端门店(APP) |
2 | 终端门店POS |
3 | PC网站 |
4 | 微信(默认) |
5 | CRM |
6 | 会员店平台 |
7 | 电话 |
8 | 二维码 |
9 | 瓶盖防伪 |
10 | 条形码 |
11 | H5页面 |
12 | 短信 |