|
@@ -6,8 +6,8 @@
|
|
|
</div>
|
|
|
<article>
|
|
|
<div class="my-business">
|
|
|
- <div class="business-title">我的业务线</div>
|
|
|
- <div class="my-business-list">
|
|
|
+ <div class="business-title" style="color: #333333; font-weight: 500;">我的业务线</div>
|
|
|
+ <div v-if="myBusiness && myBusiness[0]" class="my-business-list">
|
|
|
<div
|
|
|
v-for="(item, index) in myBusiness"
|
|
|
:key="'my'+item.code"
|
|
@@ -19,9 +19,10 @@
|
|
|
<span class="biz-name">{{ item.name }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-else style=" padding: 27px 32px; color: #666666; font-size: 16px;">请联系所在业务线负责人将您添加为团队成员</div>
|
|
|
</div>
|
|
|
<div class="all-business">
|
|
|
- <div class="business-title" style="margin: 15px 0">所有业务线</div>
|
|
|
+ <div class="business-title" style="margin: 15px 0; color: #333333; font-weight: 500">所有业务线</div>
|
|
|
<div class="all-business-list">
|
|
|
<div
|
|
|
v-for="(item, index) in bizSelectList"
|
|
@@ -134,19 +135,19 @@ export default {
|
|
|
.business-contain {
|
|
|
height: 100%;
|
|
|
width: 100%;
|
|
|
- padding: 70px 130px 120px;
|
|
|
+ padding: 30px;
|
|
|
background-color: #f7f8fc;
|
|
|
}
|
|
|
.bizId-select {
|
|
|
position: relative;
|
|
|
- height: 628px;
|
|
|
+ // height: 628px;
|
|
|
width: 100%;
|
|
|
- padding-bottom: 32px;
|
|
|
+ // padding-bottom: 32px;
|
|
|
background-color: #ffffff;
|
|
|
border-radius: 10px;
|
|
|
- box-shadow: 0px 30px 16px #eef0f5;
|
|
|
+ // box-shadow: 0px 30px 16px #eef0f5;
|
|
|
article {
|
|
|
- height: 480px;
|
|
|
+ // height: 480px;
|
|
|
overflow: scroll;
|
|
|
}
|
|
|
}
|
|
@@ -170,20 +171,21 @@ export default {
|
|
|
padding: 27px 32px;
|
|
|
display: grid;
|
|
|
text-align: center;
|
|
|
- grid-template-columns: repeat(5, 20%);
|
|
|
+ grid-template-columns: repeat(6, 17%);
|
|
|
grid-gap: 50px 0;
|
|
|
}
|
|
|
}
|
|
|
.all-business {
|
|
|
width: 100%;
|
|
|
- padding: 0 46px 43px;
|
|
|
+ padding: 0 46px 0;
|
|
|
color: #666666;
|
|
|
font-size: 18px;
|
|
|
.all-business-list {
|
|
|
+ font-size: 16px;
|
|
|
padding: 27px 32px;
|
|
|
display: grid;
|
|
|
text-align: center;
|
|
|
- grid-template-columns: repeat(5, 20%);
|
|
|
+ grid-template-columns: repeat(6, 17%);
|
|
|
grid-gap: 33px 0;
|
|
|
}
|
|
|
}
|
|
@@ -235,8 +237,8 @@ export default {
|
|
|
// background-color: #13cbc2;
|
|
|
// }
|
|
|
.business-tips {
|
|
|
- margin-top: 43px;
|
|
|
- margin-bottom: 50px;
|
|
|
+ margin-top: 20px;
|
|
|
+ padding-bottom: 50px;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|