guo00guo 5 anos atrás
pai
commit
5081972529

+ 20 - 20
src/components/authen/AuthenticationManage.vue

@@ -439,26 +439,26 @@
             },
             getCurrentAgencyAuthInfoSuccess (res) {
                 this.hideLoading()
-              this.authInfoDetail.bankAccount = res.bankAccount
-              this.authInfoDetail.legalPersonName = res.legalPersonName
-              this.authInfoDetail.businessLicensePhoto = res.businessLicensePhoto
-              this.authInfoDetail.address = res.address
-              this.authInfoDetail.applyTime = res.applyTime
-              this.authInfoDetail.evaluationAgencyName = res.evaluationAgencyName
-              this.authInfoDetail.evaluationAgencyAbilityList = res.evaluationAgencyAbilityList
-              this.authInfoDetail.evaluationAgencyResourceList = res.evaluationAgencyResourceList
-              this.authInfoDetail.agencyPhoto = res.agencyPhoto
-              this.authInfoDetail.updateTime = res.updateTime
-              this.authInfoDetail.checkTime = res.checkTime
-              this.authInfoDetail.explain = res.explain
-              this.authInfoDetail.gender = res.gender
-              this.authInfoDetail.idCardNum = res.idCardNum
-              this.authInfoDetail.idCardBackPhoto = res.idCardBackPhoto
-              this.authInfoDetail.idCardDeadTime = res.idCardDeadTime
-              this.authInfoDetail.idCardPositivePhoto = res.idCardPositivePhoto
-              this.authInfoDetail.isAuthentication = res.isAuthentication
-              this.authInfoDetail.isDeleted = res.isDeleted
-              this.authInfoDetail.roleList = res.roleList
+              this.authInfoDetail.bankAccount = res.data.bankAccount
+              this.authInfoDetail.legalPersonName = res.data.legalPersonName
+              this.authInfoDetail.businessLicensePhoto = res.data.businessLicensePhoto
+              this.authInfoDetail.address = res.data.address
+              this.authInfoDetail.applyTime = res.data.applyTime
+              this.authInfoDetail.evaluationAgencyName = res.data.evaluationAgencyName
+              this.authInfoDetail.evaluationAgencyAbilityList = res.data.evaluationAgencyAbilityList
+              this.authInfoDetail.evaluationAgencyResourceList = res.data.evaluationAgencyResourceList
+              this.authInfoDetail.agencyPhoto = res.data.agencyPhoto
+              this.authInfoDetail.updateTime = res.data.updateTime
+              this.authInfoDetail.checkTime = res.data.checkTime
+              this.authInfoDetail.explain = res.data.explain
+              this.authInfoDetail.gender = res.data.gender
+              this.authInfoDetail.idCardNum = res.data.idCardNum
+              this.authInfoDetail.idCardBackPhoto = res.data.idCardBackPhoto
+              this.authInfoDetail.idCardDeadTime = res.data.idCardDeadTime
+              this.authInfoDetail.idCardPositivePhoto = res.data.idCardPositivePhoto
+              this.authInfoDetail.isAuthentication = res.data.isAuthentication
+              this.authInfoDetail.isDeleted = res.data.isDeleted
+              this.authInfoDetail.roleList = res.data.roleList
               this.showAuthDialog()
             },
             getCurrentAgencyAuthInfoFail (error) {

+ 1 - 1
src/pages/DetailPage/UserDetail.vue

@@ -12,7 +12,7 @@
         <el-form-item label="性别" prop="count" v-if="this.gender != null &&  this.gender != ''">
           <span>{{user.gender}}</span>
         </el-form-item>
-        <el-form-item label="省市" prop="address" v-if="this.address != null &&  this.address != ''">
+        <el-form-item label="地址" prop="address">
           <span class="badge">{{user.address}}</span>
         </el-form-item>
         <el-form-item label="接包次数" prop="count">

+ 1 - 1
src/pages/Square/Square2.0.vue

@@ -160,7 +160,7 @@
         // 正常点击众测广场跳转过来
         else{
             this.searchVal = this.$route.params.searchVal;
-            this.searchType = this.$route.params.searchType;
+            this.searchType = 'project';
             this.currTab = "squareHome"
             this.getData();
         }

+ 1 - 1
src/pages/UserCenter/EnterpriseAuth.vue

@@ -168,7 +168,7 @@
       <button class="enterprise-btn previousBtn" style="cursor: pointer" @click="active--" v-if="active>0">上一步</button>
       <button class="enterprise-btn nextBtn" style="cursor: pointer" @click="nextStep" v-if="active===0">下一步</button>
       <button class="enterprise-btn nextBtn" style="cursor: pointer" @click="submitEnterpriseAuth" v-if="active===1 && authType === 0">提交审核</button>
-      <button class="enterprise-btn nextBtn" style="cursor: pointer" @click="submitEnterpriseAuth" v-if="active===1 && authStatus.text =='审核中'">修改审核</button>
+      <button class="enterprise-btn nextBtn" style="cursor: pointer" @click="submitEnterpriseAuth" v-if="active===1 && (authStatus.text =='审核中' || authStatus.text == '认证失败')">修改审核</button>
     </div>
   </div>
 </template>