|
@@ -5,10 +5,10 @@
|
|
|
<image class="r-avatar" style="width: 80px; height: 80px;" :src="info.logoUrl || 'https://minio.citupro.com/dev/menduner/company-avatar.png'"></image>
|
|
|
<view class="f-straight ss-m-l-10" style="flex: 1;position: relative;">
|
|
|
<view class="title-des ellipsis font-weight-bold" style="max-width: 45vw;">{{ info.anotherName }}</view>
|
|
|
- <view class="ss-m-b-5">
|
|
|
+ <!-- <view class="ss-m-b-5">
|
|
|
<uni-icons :color="statusInfo.color" size="20" custom-prefix="iconfont" :type="statusInfo.mdi" />
|
|
|
<span :style="{'color': statusInfo.color,'font-size': '14px'}" class="font-weight-bold">{{ statusInfo.label }}</span>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<view class="color-999 ellipsis font-size-14" style="max-width: 60vw;">
|
|
|
<span>{{ !!info.industryName? info.industryName : '行业未知'}}</span>
|
|
|
<span class="ss-m-x-10"> | </span>
|
|
@@ -137,13 +137,13 @@ const queryParams = ref({
|
|
|
enterpriseId: id.value
|
|
|
})
|
|
|
const positionList = ref([])
|
|
|
-const authInfo = ref({})
|
|
|
-const statusList = [
|
|
|
- { label: '未认证', color: '#fb8c00', value: null, mdi: 'icon-dunpai1' },
|
|
|
- { label: '审核中', color: '#fb8c00', value: '0', mdi: 'icon-dunpai' },
|
|
|
- { label: '已认证', color: '#00897B', value: '1', mdi: 'icon-mn_dunpai_fill' },
|
|
|
- { label: '已驳回', color: '#fe574a', value: '2', mdi: 'icon-hongsedunpai' }
|
|
|
-]
|
|
|
+// const authInfo = ref({})
|
|
|
+// const statusList = [
|
|
|
+// { label: '未认证', color: '#fb8c00', value: null, mdi: 'icon-dunpai1' },
|
|
|
+// { label: '审核中', color: '#fb8c00', value: '0', mdi: 'icon-dunpai' },
|
|
|
+// { label: '已认证', color: '#00897B', value: '1', mdi: 'icon-mn_dunpai_fill' },
|
|
|
+// { label: '已驳回', color: '#fe574a', value: '2', mdi: 'icon-hongsedunpai' }
|
|
|
+// ]
|
|
|
|
|
|
// 预览
|
|
|
const previewImage = (i) => {
|
|
@@ -153,10 +153,10 @@ const previewImage = (i) => {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-const statusInfo = computed(() => {
|
|
|
- const obj = (authInfo.value && Object.keys(authInfo.value).length) ? statusList.find(e => e.value === authInfo.value.status) : statusList[0]
|
|
|
- return obj
|
|
|
-})
|
|
|
+// const statusInfo = computed(() => {
|
|
|
+// const obj = (authInfo.value && Object.keys(authInfo.value).length) ? statusList.find(e => e.value === authInfo.value.status) : statusList[0]
|
|
|
+// return obj
|
|
|
+// })
|
|
|
|
|
|
// 企业埋点
|
|
|
const enterpriseClickFn = async () => {
|
|
@@ -182,17 +182,17 @@ const handleFollow = async () => {
|
|
|
}
|
|
|
|
|
|
// 企业认证详情
|
|
|
-const getEnterpriseAuthInfo = async () => {
|
|
|
- const { data } = await getEnterpriseAuthDetails(id.value)
|
|
|
- authInfo.value = data
|
|
|
-}
|
|
|
+// const getEnterpriseAuthInfo = async () => {
|
|
|
+// const { data } = await getEnterpriseAuthDetails(id.value)
|
|
|
+// authInfo.value = data
|
|
|
+// }
|
|
|
|
|
|
// 企业详情
|
|
|
const getData = async () => {
|
|
|
const { data } = await getEnterpriseDetails(id.value)
|
|
|
- info.value = { ...data, ...dealDictObjData({}, data.enterprise) }
|
|
|
+ info.value = data.enterprise ? { ...data, ...dealDictObjData({}, data.enterprise) } : data
|
|
|
getCollectionStatus()
|
|
|
- getEnterpriseAuthInfo()
|
|
|
+ // getEnterpriseAuthInfo()
|
|
|
}
|
|
|
|
|
|
// 招聘职位列表
|