|
@@ -26,8 +26,9 @@
|
26
|
26
|
<text class="name ellipsis">延期处理:{{currentLogOverTime(data.currentLog)}}</text>
|
27
|
27
|
</view>
|
28
|
28
|
<view class="body_item_content_p">
|
29
|
|
- <text class="name"><template v-if="data.assigneeName">处理人:{{data.assigneeName}}</template></text>
|
30
|
|
- <text class="name"><template v-if="data.candidateGroupsName">处理组:{{data.candidateGroupsName}}</template></text>
|
|
29
|
+ <text class="name" v-if="data.assigneeName">处理人:{{data.assigneeName}}</text>
|
|
30
|
+ <text class="name" v-else-if="data.candidateGroupsName">处理组:{{data.candidateGroupsName}}</text>
|
|
31
|
+ <text class="name" v-else></text>
|
31
|
32
|
<view class="icon_all" @click.stop="attachmentClick(data)">
|
32
|
33
|
<uni-icons type="mic-filled" class="mic-filled" :size="22" color="#949494" v-if="data.callID"></uni-icons>
|
33
|
34
|
<uni-icons type="image-filled" class="image-filled" :size="22" color="#949494" v-if="data.reqAttachment"></uni-icons>
|
|
@@ -287,7 +288,6 @@
|
287
|
288
|
uni.stopPullDownRefresh();
|
288
|
289
|
if(res.status == 200){
|
289
|
290
|
let list = res.list || [];
|
290
|
|
- list = list.map(v => ({...v, ...{callID:123}}))//模拟
|
291
|
291
|
if(list.length){
|
292
|
292
|
dataInfo.hasMore = true;
|
293
|
293
|
dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
|
|
@@ -363,7 +363,7 @@
|
363
|
363
|
|
364
|
364
|
<style lang="scss" scoped>
|
365
|
365
|
page{
|
366
|
|
- height: calc(100vh - 50px);
|
|
366
|
+ height: calc(100vh - var(--window-bottom));
|
367
|
367
|
}
|
368
|
368
|
.incidentList{
|
369
|
369
|
display: flex;
|
|
@@ -400,7 +400,7 @@ page{
|
400
|
400
|
}
|
401
|
401
|
}
|
402
|
402
|
.body{
|
403
|
|
- margin-bottom: 50px;
|
|
403
|
+ margin-bottom: var(--window-bottom);
|
404
|
404
|
margin-top: 88rpx;
|
405
|
405
|
border-top: 6rpx solid #EBEBEB;
|
406
|
406
|
.body_item{
|
|
@@ -461,10 +461,10 @@ page{
|
461
|
461
|
}
|
462
|
462
|
.zanwu{
|
463
|
463
|
box-sizing: border-box;
|
464
|
|
- margin-bottom: 50px;
|
|
464
|
+ margin-bottom: var(--window-bottom);
|
465
|
465
|
margin-top: 88rpx;
|
466
|
466
|
border-top: 6rpx solid #EBEBEB;
|
467
|
|
- height: calc(100vh - 50px - 88rpx);
|
|
467
|
+ height: calc(100vh - var(--window-bottom) - 88rpx);
|
468
|
468
|
display: flex;
|
469
|
469
|
justify-content: center;
|
470
|
470
|
background-color: #F7F7F7;
|