|
@@ -6,8 +6,19 @@
|
|
|
<div class="loginform">
|
|
|
<el-col :span="24" class="content_1">
|
|
|
<div class="type-list">
|
|
|
- <el-tooltip v-for="(item, index) in typeList" :key="index" effect="dark" :content="item.remark" placement="top">
|
|
|
- <span class="span" :class="[item.value === type ? 'active' : '']" @click="toSelect(item.value)">{{ item.label }}</span>
|
|
|
+ <el-tooltip
|
|
|
+ v-for="(item, index) in typeList"
|
|
|
+ :key="index"
|
|
|
+ effect="dark"
|
|
|
+ :content="item.remark"
|
|
|
+ placement="top"
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ class="span"
|
|
|
+ :class="[item.value === type ? 'active' : '']"
|
|
|
+ @click="toSelect(item.value)"
|
|
|
+ >{{ item.label }}</span
|
|
|
+ >
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -48,10 +59,10 @@ import association from './parts/association.vue'
|
|
|
import company from './parts/company.vue'
|
|
|
import competition from './parts/competition.vue'
|
|
|
import expert from './parts/expert.vue'
|
|
|
-import incubator from './parts/Incubator.vue'
|
|
|
+import incubator from './parts/incubator.vue'
|
|
|
import state from './parts/state.vue'
|
|
|
import unit from './parts/unit.vue'
|
|
|
-import investment from './parts/Investment.vue'
|
|
|
+import investment from './parts/investment.vue'
|
|
|
// 路由
|
|
|
const router = useRouter()
|
|
|
// 加载中
|