1 /** 2 * 实名认证 3 * @type {Object} 4 */ 5 define("real_name_auth", [ 6 "component/process_ui", 7 "business/real_name_auth" 8 ], function() { 9 $we.process.config.real_name_auth = { 10 processes: [{ 11 name: '实名认证', 12 widget: "real_name_auth" 13 }, { 14 name: '认证成功', 15 widget: "process.end", 16 params: { 17 title: "您的实名信息已经成功提交!" 18 } 19 }], 20 config: { 21 title: "实名认证", 22 prev: false, 23 next: "下一步", 24 end: "完成" 25 }, 26 data: [] 27 }; 28 29 return $we.process.use; 30 });