Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing Details

uat_us
caiyiling 2024-01-30 17:21:07 +08:00
commit 0e8fad2e6a
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')
}
}
}