消费设置
$we.biz.use('coupon_cost_service');
var processes =[{ name: "安全验证", widget: "bind_mobile", params: { tips: "为了确保安全的设置点券消费,请验证您的手机" }, beforeAction : function(){ } }, { name: "设置应用项", widget: "coupon_cost_service", }, { name: "设置成功", widget: "process.end", beforeAction:function(){ if($we.process.getData('coupon_result')){ this.config.title='设置成功'; this.config.type='success'; this.config.content='如何开通已经被限制点券消费的应用
方法一:在本服务页面开通
'+'方法二:您在已关闭的应用中使用点券被限制时,
我们会通知您到账号中心设置'; }else{ this.config.title='设置失败'; this.config.type='error'; this.config.content=''; } return true; } }]; /** * 业务流组件的配置 * @type {Object} */ var pConfig = { title: "点券设置", // 业务流title prev: false, // 上一步按钮的文案 next: "下一步", // 下一步按钮的文案 end: "完成", // 结束按钮的文案 width:'800px', height:'800px' }; // $we.process.setData("independent", true); var pro; require(["component/process_ui"], function(f) { pro = f(processes, pConfig); pro.start(); });
var processes =[{ name: "安全验证", widget: "bind_mobile", params: { tips: "为了确保安全的设置点券消费,请验证您的手机" }, beforeAction : function(){ } }, { name: "设置应用项", widget: "coupon_cost_service", beforeAction : function(){ } }, { name: "设置成功", widget: "process.end", beforeAction:function(){ if($we.process.getData('coupon_result')){ this.config.title='设置成功'; this.config.type='success'; this.config.content='如何开通已经被限制点券消费的应用
方法一:在本服务页面开通
'+'方法二:您在已关闭的应用中使用点券被限制时,
我们会通知您到账号中心设置'; }else{ this.config.title='设置失败'; this.config.type='error'; this.config.content=''; } return true; } }]; /** * 业务流组件的配置 * @type {Object} */ var pConfig = { title: "点券设置", // 业务流title prev: false, // 上一步按钮的文案 next: "下一步", // 下一步按钮的文案 end: "完成" // 结束按钮的文案 }; // $we.process.setData("independent", true); var pro; require(["component/process_ui"], function(f) { pro = f(processes, pConfig); pro.start(); });
$we.require(["component/process_ui", "coupon_cost_service"], function() { var p = $we.process.config.coupon_cost_service.processes; $we.widget.add("process.ui", [p[1]], {width:'800px'}).start(); });