|
@@ -4,7 +4,7 @@
|
|
|
<el-header class="main-header">
|
|
|
<div class="select-group">
|
|
|
<el-cascader ref="cascader" v-model="teamNames" :options="options" class="cascader" @change="handleChange" />
|
|
|
- <span class="team_teamName" @click="setCascader">{{ teamBizName.length > 11 ? teamBizName.substring(0, 11) + '...' : teamBizName }} <i class="el-icon-arrow-down" /></span>
|
|
|
+ <span class="el-dropdown-link" @click="setCascader">{{ teamBizName.length > 11 ? teamBizName.substring(0, 11) + '...' : teamBizName }} <i class="el-icon-arrow-down" /></span>
|
|
|
<el-dropdown size="small" style="margin-left: 20px" @command="handleBizId">
|
|
|
<span class="el-dropdown-link">
|
|
|
{{ bizName }}<i class="el-icon-arrow-down el-icon--right" />
|
|
@@ -697,6 +697,7 @@ export default {
|
|
|
.el-dropdown-link {
|
|
|
color: #333B4A;
|
|
|
font-weight: 600;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
>>>.el-dropdown-menu__item {
|
|
|
max-width: 20vw;
|
|
@@ -722,11 +723,6 @@ export default {
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss" scoped>
|
|
|
-.team_teamName {
|
|
|
- color: #333B4A;
|
|
|
- font-weight: 500;
|
|
|
- cursor: pointer;
|
|
|
-}
|
|
|
.cascader {
|
|
|
position: absolute;
|
|
|
width: 20px;
|