|
|
@@ -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 |
|
|
|