|
@@ -4,7 +4,7 @@
|
|
|
<div style="height: 50px;">
|
|
|
<v-img class="float-left" :src="props.info.enterprise.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'" :width="45" height="45"></v-img>
|
|
|
<div class="ml-3 float-left">
|
|
|
- <p class="enterprise-name cursor-pointer" @click="handleEnterprise">{{ props.info.enterprise.anotherName }}</p>
|
|
|
+ <p class="enterprise-name cursor-pointer" @click="handleEnterprise(0)">{{ props.info.enterprise.anotherName }}</p>
|
|
|
<v-icon color="primary" size="20">mdi-shield-check</v-icon> <!-- mdi-shield-remove -->
|
|
|
<span style="color: var(--v-primary-base);font-size: 14px;">已认证</span>
|
|
|
</div>
|
|
@@ -17,7 +17,7 @@
|
|
|
</div>
|
|
|
<div style="font-size: 12px;height: 50px; line-height: 50px">
|
|
|
<span class="float-left">共<span style="color: var(--v-primary-base)">9</span>个在招职位</span>
|
|
|
- <span class="float-right more-position">查看全部职位<v-icon>mdi-chevron-right</v-icon></span>
|
|
|
+ <span class="float-right more-position" @click="handleEnterprise(1)">查看全部职位<v-icon>mdi-chevron-right</v-icon></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -45,8 +45,9 @@ const getData = async () => {
|
|
|
}
|
|
|
getData()
|
|
|
|
|
|
-const handleEnterprise = () => {
|
|
|
- window.open(`/enterprise/details/${props.info.enterprise.id}?key=briefIntroduction`)
|
|
|
+const handleEnterprise = (val) => {
|
|
|
+ const key = val ? 'recruitmentPositions' : 'briefIntroduction'
|
|
|
+ window.open(`/enterprise/details/${props.info.enterprise.id}?key=${key}`)
|
|
|
}
|
|
|
</script>
|
|
|
|