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