|
@@ -4,7 +4,7 @@
|
|
<div style="height: 50px;">
|
|
<div style="height: 50px;">
|
|
<v-img class="float-left" :src="props.info.enterprise.logoUrl" :width="45" height="45"></v-img>
|
|
<v-img class="float-left" :src="props.info.enterprise.logoUrl" :width="45" height="45"></v-img>
|
|
<div class="ml-3 float-left">
|
|
<div class="ml-3 float-left">
|
|
- <p class="enterprise-name">{{ props.info.enterprise.anotherName }}</p>
|
|
|
|
|
|
+ <p class="enterprise-name cursor-pointer" @click="handleEnterprise">{{ props.info.enterprise.anotherName }}</p>
|
|
<v-icon color="primary" size="20">mdi-shield-check</v-icon> <!-- mdi-shield-remove -->
|
|
<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>
|
|
<span style="color: var(--v-primary-base);font-size: 14px;">已认证</span>
|
|
</div>
|
|
</div>
|
|
@@ -44,6 +44,10 @@ const getData = async () => {
|
|
obj.value = dealDictData(obj.value, prise)
|
|
obj.value = dealDictData(obj.value, prise)
|
|
}
|
|
}
|
|
getData()
|
|
getData()
|
|
|
|
+
|
|
|
|
+const handleEnterprise = () => {
|
|
|
|
+ window.open(`/enterprise/details/${props.info.enterprise.id}`)
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|