Browse Source

产权交易报名修改

rongxin_prod
庞东旭 2 years ago
parent
commit
47966ba587
1 changed files with 18 additions and 13 deletions
  1. +18
    -13
      src/views/project/signUp.vue

+ 18
- 13
src/views/project/signUp.vue View File

@@ -141,9 +141,9 @@
name="status"
style="display: none"
/>
<van-field label="上传相关凭证" required>
<van-field label="上传相关凭证">
<template #input>
<van-uploader accept="*" v-model="fileList" multiple>
<van-uploader v-model="fileList" multiple>
<van-button icon="plus" size="small" round color="#007E72">点击上传</van-button>
</van-uploader>
</template>
@@ -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


Loading…
Cancel
Save