上传bug修复

uat_us
熊飞 2024-01-30 16:32:30 +08:00
parent 06ac1a660c
commit df530c8d69
2 changed files with 12 additions and 12 deletions

View File

@ -34,12 +34,12 @@
<el-form :model="form" class="demo-form-inline" size="small">
<el-form-item :label="$t('resumeInfo:label:GCPCertificate')">
<span>{{ GCP }}</span>
<a
<el-button
style="margin-left: 10px"
v-if="form.GCP"
href="#"
class="view"
@click.prevent="previewGCP()"
>View</a>
type="text"
@click="previewGCP()"
>{{ $t('resumeInfo:button:view') }}</el-button>
</el-form-item>
<el-form-item :label="$t('resumeInfo:label:OtherRelevantExperience')">
@ -93,7 +93,7 @@ export default {
methods: {
previewGCP() {
if (this.GCPPath) {
window.open(this.GCPPath, '_blank')
window.open(this.OSSclientConfig.basePath + this.GCPPath, '_blank')
}
}
}

View File

@ -34,12 +34,12 @@
<el-form :model="form" class="demo-form-inline" size="small">
<el-form-item :label="$t('resumeInfo:label:GCPCertificate')">
<span>{{ GCP }}</span>
<a
<el-button
style="margin-left: 10px"
v-if="form.GCP"
href="#"
class="view"
@click.prevent="previewGCP()"
>View</a>
type="text"
@click="previewGCP()"
>{{ $t('resumeInfo:button:view') }}</el-button>
</el-form-item>
<el-form-item :label="$t('resumeInfo:label:OtherRelevantExperience')">
@ -93,7 +93,7 @@ export default {
methods: {
previewGCP() {
if (this.GCPPath) {
window.open(this.GCPPath, '_blank')
window.open(this.OSSclientConfig.basePath + this.GCPPath, '_blank')
}
}
}