|
|
@@ -194,6 +194,19 @@ Page({
|
|
|
},
|
|
|
|
|
|
/**
|
|
|
+ * @desc : 调回主页刷新
|
|
|
+ * @date : 2022/5/12 13:49
|
|
|
+ * @author : 姜永辉
|
|
|
+ */
|
|
|
+ gotoWelcome() {
|
|
|
+ console.log("gotoWelcome");
|
|
|
+ // 调转主页
|
|
|
+ wx.reLaunch({
|
|
|
+ url: '../../pages/welcome/welcome',
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ /**
|
|
|
* @desc : 注册微信用户信息
|
|
|
* @date : 2022/5/12 13:49
|
|
|
* @author : 姜永辉
|
|
|
@@ -220,7 +233,7 @@ Page({
|
|
|
events: {
|
|
|
// 回调后
|
|
|
bindData: function (data) {
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
success: function (res) {
|
|
|
@@ -236,11 +249,8 @@ Page({
|
|
|
events: {
|
|
|
// 回调后
|
|
|
refresh: function (data) {
|
|
|
- console.log("company-register--okkkk", data);
|
|
|
- // 调转主页
|
|
|
- wx.reLaunch({
|
|
|
- url: '../../pages/welcome/welcome',
|
|
|
- })
|
|
|
+ console.log("company-register--okkkk", data);
|
|
|
+ setTimeout(() => _this.gotoWelcome(), 200);
|
|
|
}
|
|
|
},
|
|
|
success: function (res) {
|