jason.lu 6 年之前
父节点
当前提交
93ea7e2c8d

+ 1 - 2
sourcecode/h5app/vue/src/components/schoolidCard.vue

@@ -160,10 +160,9 @@
                     if (response.ret === "10000") {
                         var t = response.model.list;
                         that.gender = t[0].userSex; // 左侧是vue页面内的变量名字, 右侧是后台数据里的变量名称
-                        that.dormDistrict = t[0].dormDistrict;
+                        that.dormDistrict = t[0].dormDistrict; //TODO: 这个方法没有生效
                         that.reviewDo = t[0];
                     } else {
-
                         Toast.fail("获取失败,请检查网络");
                     }
                 }, [{}]);

+ 1 - 0
sourcecode/h5app/vue/src/views/giftDetail.vue

@@ -91,6 +91,7 @@
                 }).then(() => {
                     // on confirm
                     // delete_present(this.presentId())
+                    // TODO: 考虑 updateBatch, 就是需要 将isDel设为1, 配合首页查找进行过滤
                     this.$router.push('index')
                 }).catch(() => {
                     // on cancel

+ 1 - 2
sourcecode/h5app/vue/src/views/login.vue

@@ -79,8 +79,7 @@
                     this.passError = true;
                     return;
                 }
-                // 检查手机号有无注册
-                window.routerme = this.$router;
+                window.routerme = this.$router;  //TODO: 考虑 encodeURIComponent(this.password)
                 BasicFunction.get_data("ajaxlogin?u=" + this.phone + "&p=" + this.password, function (response) {
                     console.log("------ Data Rcvd in Login --------");
                     console.log(response);