|
@@ -145,7 +145,14 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="contacts" label="联系人" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
- {{ row.contacts ? row.contacts : '---' }}
|
|
|
+ <template v-if="row.companyType === '2'">
|
|
|
+ <a style="color:#2fa4e7;" target="_blank" :href="handleClubHrefLink(row)">
|
|
|
+ {{ row.contacts ? row.contacts : '---' }}
|
|
|
+ </a>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ {{ row.contacts ? row.contacts : '---' }}
|
|
|
+ </template>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="phoneNumber" label="手机号" align="center" width="110">
|