diff --git a/src/views/project/signUp.vue b/src/views/project/signUp.vue index 85cbbb1b..b51729d0 100644 --- a/src/views/project/signUp.vue +++ b/src/views/project/signUp.vue @@ -141,9 +141,9 @@ name="status" style="display: none" /> - + @@ -191,7 +191,12 @@ export default { }; }, created() { - + this.projectId = this.$route.query.projectId; + this.deposit = this.$route.query.deposit; + this.projectName = this.$route.query.projectName; + console.log(this.$route.query.projectId) + console.log(this.$route.query.deposit) + console.log(this.$route.query.projectName) getInfo().then(response => { getMember(response.user.userId).then(res => { this.realname = res.data.realname @@ -214,9 +219,9 @@ export default { }) }); getOutProjectDetail(this.$route.query.projectId).then(res => { - this.projectId = res.data.projectId - this.deposit = res.data.deposit - this.projectName = res.data.projectName + // this.projectId = res.data.projectId + // this.deposit = res.data.deposit + // this.projectName = res.data.projectName this.payAccount = res.data.payAccount this.accountName = res.data.accountName @@ -257,13 +262,13 @@ export default { }) return; } - if(this.fileList.length<1){ - this.$toast({ - icon: 'warning', // 找到自己需要的图标 - message: '请上传相关凭证' - }) - return; - } + // if(this.fileList.length<1){ + // this.$toast({ + // icon: 'warning', // 找到自己需要的图标 + // message: '请上传相关凭证' + // }) + // return; + // } submmitSignup(values).then(response =>{ if(response.code==200){ this.tableId = response.data