Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
0e8fad2e6a
|
@ -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>
|
||||||
<a
|
<el-button
|
||||||
|
style="margin-left: 10px"
|
||||||
v-if="form.GCP"
|
v-if="form.GCP"
|
||||||
href="#"
|
type="text"
|
||||||
class="view"
|
@click="previewGCP()"
|
||||||
@click.prevent="previewGCP()"
|
>{{ $t('resumeInfo:button:view') }}</el-button>
|
||||||
>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.GCPPath, '_blank')
|
window.open(this.OSSclientConfig.basePath + this.GCPPath, '_blank')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
<a
|
<el-button
|
||||||
|
style="margin-left: 10px"
|
||||||
v-if="form.GCP"
|
v-if="form.GCP"
|
||||||
href="#"
|
type="text"
|
||||||
class="view"
|
@click="previewGCP()"
|
||||||
@click.prevent="previewGCP()"
|
>{{ $t('resumeInfo:button:view') }}</el-button>
|
||||||
>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.GCPPath, '_blank')
|
window.open(this.OSSclientConfig.basePath + this.GCPPath, '_blank')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue