Commit e0c1e0d3 authored by 杨梦雪's avatar 杨梦雪

11

parent d9bd5aac
...@@ -47,12 +47,10 @@ export default { ...@@ -47,12 +47,10 @@ export default {
setSignShould({}).then((res) => { setSignShould({}).then((res) => {
console.log(res, "setSignShould"); console.log(res, "setSignShould");
if (res.data.code !== 200) return this.$message.error(res.data.message); if (res.data.code !== 200) return this.$message.error(res.data.message);
this.$emit("getstatus", res.data.status);
this.$message.success(res.data.message); this.$message.success(res.data.message);
// if (doubt_code == 1) {
this.$router.push("/signUp/invitation"); this.$router.push("/signUp/invitation");
// } else {
// this.$router.push("/signUp/referInfo");
// }
}); });
}, },
}, },
......
...@@ -103,9 +103,9 @@ export default { ...@@ -103,9 +103,9 @@ export default {
}, },
}, },
methods: { methods: {
next() { // next() {
this.$router.push("/signUp/referInfo"); // this.$router.push("/signUp/referInfo");
}, // },
//第一个输入框 //第一个输入框
changeValue1(e) { changeValue1(e) {
// console.log(e, "输入"); // console.log(e, "输入");
......
...@@ -807,6 +807,9 @@ export default { ...@@ -807,6 +807,9 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
@import "a/scss/btn"; @import "a/scss/btn";
.btn {
padding-bottom: 0 !important;
}
.referInfo { .referInfo {
padding: 0 50px 110px 50px; padding: 0 50px 110px 50px;
.checkForm { .checkForm {
...@@ -956,7 +959,6 @@ export default { ...@@ -956,7 +959,6 @@ export default {
text-align: center; text-align: center;
} }
} }
} }
} }
} }
......
...@@ -150,7 +150,7 @@ export default { ...@@ -150,7 +150,7 @@ export default {
width: 100%; width: 100%;
padding: 0; padding: 0;
background-color: #ffffff; background-color: #ffffff;
z-index: 10000; z-index: 2000;//消息提示框z-index=2019
.bg-top { .bg-top {
height: 24px; height: 24px;
......
...@@ -102,10 +102,12 @@ export default { ...@@ -102,10 +102,12 @@ export default {
if (res.data.code != 200) { if (res.data.code != 200) {
return this.$message.error(res.data.message); return this.$message.error(res.data.message);
} }
this.status = res.data.status;
// 点击下一步传值给status,更新 // 点击下一步传值给status,更新
if (status_val != null) { if (status_val != null) {
this.status = status_val; this.status = status_val;
} else {
this.status = res.data.status;
} }
// doubt_code,doubt_info,doubt_check。0为不填写,1为填写 // doubt_code,doubt_info,doubt_check。0为不填写,1为填写
if (this.status == 0) { if (this.status == 0) {
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
</template> </template>
<script> <script>
/* eslint-disable */
export default { export default {
name: "loginIndex", name: "loginIndex",
data() { data() {
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
</template> </template>
<script> <script>
/* eslint-disable */
import { login } from "r/index/login"; import { login } from "r/index/login";
import { mobileCheck } from "@/common/utils.js"; import { mobileCheck } from "@/common/utils.js";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment