|
|
@@ -26,7 +26,7 @@
|
|
|
<i class="el-input__icon" slot="prefix" style="line-height: 14px;margin-left: 10px;">
|
|
|
<img src="/static/images/pic.png" alt="Picture">
|
|
|
</i>
|
|
|
- <i class="el-input__icon" slot="suffix" style="line-height: 12px;">
|
|
|
+ <i class="el-input__icon" slot="suffix" style="line-height: 12px; cursor: pointer;" @click="showPicture">
|
|
|
<img src="/static/images/look.png" alt="Look">
|
|
|
</i>
|
|
|
</el-input>
|
|
|
@@ -100,6 +100,13 @@
|
|
|
}
|
|
|
|
|
|
axios.put('/api/user/space//modifySpaceInfo', data).then(success).catch(error)
|
|
|
+ },
|
|
|
+ showPicture () {
|
|
|
+ if (this.enterpriseInfo.businessCodeImage) {
|
|
|
+ window.open(this.enterpriseInfo.businessCodeImage)
|
|
|
+ return 0
|
|
|
+ }
|
|
|
+ this.$message.info('该企业没有上传营业执照附件')
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|