|
@@ -5,8 +5,8 @@
|
|
|
<CtForm ref="CtFormRef" :items="formItems" style="width: 900px;margin: 0 auto">
|
|
|
<template #name="{ item }">
|
|
|
<div v-show="!item.show" class="text-right" style="width: 80px; line-height: 40px;">
|
|
|
- <v-icon :color="statusInfo.color" size="20">{{ authInfo && authInfo.status === '1' ? 'mdi-shield-check' : 'mdi-shield-remove' }}</v-icon> <!-- mdi-shield-remove -->
|
|
|
- <span style="color: var(--v-primary-base);font-size: 14px;">{{ statusInfo.label }}</span>
|
|
|
+ <v-icon :color="statusInfo.color" size="20">{{ statusInfo.mdi }}</v-icon>
|
|
|
+ <span :style="{'color': statusInfo.color,'font-size': '14px'}">{{ statusInfo.label }}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
<template #industryId="{ item }">
|
|
@@ -185,10 +185,10 @@ getDict('menduner_industry_type', {}, 'industryList').then(({ data }) => {
|
|
|
// 获取企业实名信息
|
|
|
const authInfo = ref({})
|
|
|
const statusList = [
|
|
|
- { label: '未认证', color: 'warning', value: null },
|
|
|
- { label: '审核中', color: 'warning', value: '0' },
|
|
|
- { label: '已认证', color: 'primary', value: '1' },
|
|
|
- { label: '已驳回', color: 'error', value: '2' }
|
|
|
+ { label: '未认证', color: '#fb8c00', value: null, mdi: 'mdi-shield-remove' },
|
|
|
+ { label: '审核中', color: '#fb8c00', value: '0', mdi: 'mdi-shield-half-full' },
|
|
|
+ { label: '已认证', color: '#00897B', value: '1', mdi: 'mdi-shield-check' },
|
|
|
+ { label: '已驳回', color: '#fe574a', value: '2', mdi: 'mdi-shield-off' }
|
|
|
]
|
|
|
const getAuthInfo = async () => {
|
|
|
const data = await getEnterpriseAuth()
|