Browse Source

修复报错

master
王饶冀 2 years ago
parent
commit
e74bee2383

+ 1
- 1
digital-park-web/digital-park/src/views/my-related/business/Business.scss View File

@@ -216,7 +216,7 @@
left: calc(50% - 10px);
color: #fff;
font-size: 16px;
top: 134px;
top: 164px;
}
}
}

+ 1
- 8
digital-park-web/digital-park/src/views/my-related/business/Business.vue View File

@@ -121,13 +121,6 @@
<img src="~@assets/image/index/icon_more.png" alt="more" />
</div>
</div>
<!-- 没授权 -->
<!-- <div class="tax-content" v-if="!isAuthorize">
<div class="tax-btn">
<el-button type="primary">企业授权</el-button>
</div>
<div class="tax-info">企业授权后即可进行税收查询</div>
</div>-->
<!-- 已授权 -->
<div class="tax-content">
<div class="tax-content-title">
@@ -336,7 +329,7 @@ export default {
getCompanyList({ claim: true })
.then((res) => {
if (res.data.status == 0) {
this.companyDetail = res.data.data.list[0];
this.companyDetail = res.data.data.list[0] || {};
let { enterpriseLabel, logo, claimState } =
this.companyDetail;
// 是否认领

Loading…
Cancel
Save