Quellcode durchsuchen

产权交易报名修改

rongxin_prod
庞东旭 vor 2 Jahren
Ursprung
Commit
47966ba587
1 geänderte Dateien mit 18 neuen und 13 gelöschten Zeilen
  1. +18
    -13
      src/views/project/signUp.vue

+ 18
- 13
src/views/project/signUp.vue Datei anzeigen

@@ -141,9 +141,9 @@
name="status" name="status"
style="display: none" style="display: none"
/> />
<van-field label="上传相关凭证" required>
<van-field label="上传相关凭证">
<template #input> <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-button icon="plus" size="small" round color="#007E72">点击上传</van-button>
</van-uploader> </van-uploader>
</template> </template>
@@ -191,7 +191,12 @@ export default {
}; };
}, },
created() { 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 => { getInfo().then(response => {
getMember(response.user.userId).then(res => { getMember(response.user.userId).then(res => {
this.realname = res.data.realname this.realname = res.data.realname
@@ -214,9 +219,9 @@ export default {
}) })
}); });
getOutProjectDetail(this.$route.query.projectId).then(res => { 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.payAccount = res.data.payAccount
this.accountName = res.data.accountName this.accountName = res.data.accountName
@@ -257,13 +262,13 @@ export default {
}) })
return; 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 =>{ submmitSignup(values).then(response =>{
if(response.code==200){ if(response.code==200){
this.tableId = response.data this.tableId = response.data


Laden…
Abbrechen
Speichern