|
@ -231,7 +231,7 @@ |
|
|
</h3> |
|
|
</h3> |
|
|
<div style="height: calc(100% - 40px);overflow-y: auto;overflow-x: hidden;"> |
|
|
<div style="height: calc(100% - 40px);overflow-y: auto;overflow-x: hidden;"> |
|
|
<ul v-if="waitBorrowerData.length !== 0" class="todo-list"> |
|
|
<ul v-if="waitBorrowerData.length !== 0" class="todo-list"> |
|
|
<li v-for="(item,index) in waitBorrowerData" :key="index" @click="handleToWaiting(item)"> |
|
|
|
|
|
|
|
|
<li v-for="(item,index) in waitBorrowerData" :key="index" :class="item.title.includes('警告') || item.title.includes('逾期') ? 'warn-info' :''" @click="handleToWaiting(item)"> |
|
|
<el-tooltip class="item" effect="dark" :content="item.title" :enterable="false" placement="top"> |
|
|
<el-tooltip class="item" effect="dark" :content="item.title" :enterable="false" placement="top"> |
|
|
<p>{{ item.title }}</p> |
|
|
<p>{{ item.title }}</p> |
|
|
</el-tooltip> |
|
|
</el-tooltip> |
|
@ -716,7 +716,10 @@ export default { |
|
|
border-radius: 26px; |
|
|
border-radius: 26px; |
|
|
opacity: 1; |
|
|
opacity: 1; |
|
|
cursor: pointer; |
|
|
cursor: pointer; |
|
|
|
|
|
|
|
|
|
|
|
&.warn-info{ |
|
|
|
|
|
color: #F65163; |
|
|
|
|
|
box-shadow: inset 0px 0px 15px 1px #f65164; |
|
|
|
|
|
} |
|
|
& p { |
|
|
& p { |
|
|
display: inline-block; |
|
|
display: inline-block; |
|
|
width: calc(100% - 140px); |
|
|
width: calc(100% - 140px); |
|
@ -730,6 +733,7 @@ export default { |
|
|
float: right; |
|
|
float: right; |
|
|
padding-right: 10px; |
|
|
padding-right: 10px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
::v-deep |
|
|
::v-deep |
|
|