7 months ago
parent
commit
65ae9f7f8d
1 changed files with 4 additions and 1 deletions
  1. 4 1
      pages/my/index.vue

+ 4 - 1
pages/my/index.vue

@@ -369,9 +369,10 @@
 											style="margin-left: 10rpx; width: 80rpx; height: 30rpx"
 											src="../../static/images/my/isVip.png" mode=""></image>
 									</view>
+								
 									<view v-if="XCXIsSelect != '否'" class="info-box-header-r-bj flex align-center"
 										@click="goNav('/my/renzheng/editCompany')">
-										编辑企业信息
+										{{companyInfo.companyAllName||"编辑企业信息"}}
 										<image src="@/static/images/jobApplicant/edit-user.svg" mode="scaleToFill"
 											@click.stop="goNav('/my/renzheng/editCompany')" />
 									</view>
@@ -824,6 +825,7 @@
 				resumesStatus: 1, //求职状态
 				resumesId: "",
 				token: "",
+				companyInfo:"",
 				companyStatus: "", //企业认证状态(1:审核中 2:已通过 3:已拒绝 空:未认证)
 			};
 		},
@@ -1433,6 +1435,7 @@
 			getCompanyStatus() {
 				this.$Request.get("/app/company/selectCompanyByUserId").then((res) => {
 					if (res.code == 0 && res.data) {
+						this.companyInfo=res.data
 						this.companyStatus = res.data.status;
 						uni.setStorageSync("companyStatus", this.companyStatus);
 						uni.setStorageSync("companyName",  res.data.companyAllName);