Compare commits

..

No commits in common. "12d4a28751844f19d37fb10bc74419ee07897c9c" and "118acc70f3d675cc95e02d8b6003b9d8f1db40e2" have entirely different histories.

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>
<el-button
style="margin-left: 10px"
<a
v-if="form.GCP"
type="text"
@click="previewGCP()"
>{{ $t('resumeInfo:button:view') }}</el-button>
href="#"
class="view"
@click.prevent="previewGCP()"
>View</a>
</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.OSSclientConfig.basePath + this.GCPPath, '_blank')
window.open(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>
<el-button
style="margin-left: 10px"
<a
v-if="form.GCP"
type="text"
@click="previewGCP()"
>{{ $t('resumeInfo:button:view') }}</el-button>
href="#"
class="view"
@click.prevent="previewGCP()"
>View</a>
</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.OSSclientConfig.basePath + this.GCPPath, '_blank')
window.open(this.GCPPath, '_blank')
}
}
}