qaep-push
qaep-fe 推送服务
Install
npm install qaep-push --save
Example
import push from 'qaep-push'
push({
username : 'liushaopeng',
title : 'xxx平台收到用户反馈'
});
接入反馈平台
import push from 'qaep-push'
$("body").on("click", "#fb_right_canvas_save", function () {
push({
username : 'liushaopeng',
title : 'xxx平台收到用户反馈'
});
});
Options
Name | Default | Description | Required |
---|---|---|---|
username | 要推送给谁 | true | |
title | 默认标题 | icafe的标题 | |
detail | 默认内容 | icafe的内容 | |
product | qaep-fe | icafe所属产品线 | |
status | 新建 | icafe的流程状态 | |
type | Bug | icafe的类型 |