From c4246ca910f28014efaace64ebf92f47a673a9cf Mon Sep 17 00:00:00 2001 From: queenwuli <942534046@qq.com> Date: Mon, 25 Jan 2021 11:47:46 +0800 Subject: [PATCH] gx --- hive-app/pages/workbench/followRecords/index.vue | 21 ++++++++++----------- 1 files changed, 10 insertions(+), 11 deletions(-) diff --git a/hive-app/pages/workbench/followRecords/index.vue b/hive-app/pages/workbench/followRecords/index.vue index 119ec2e..2706092 100644 --- a/hive-app/pages/workbench/followRecords/index.vue +++ b/hive-app/pages/workbench/followRecords/index.vue @@ -58,8 +58,8 @@ <no-record :isShow="!list.length" txt="暂无跟进记录"></no-record> <uni-popup ref="commentEl" type="bottom" :isShowMask="false"> <view class="message-row"> - <input type="text" v-model="comment" :focus="true" class="message-input" placeholder="评论" placeholder-class="placeholder"/> - <button class="green-btn message-btn" :disabled="!comment" @click="addFollowupComment">发送</button> + <input type="text" v-model="comment" :focus="true" class="message-input" placeholder="评论" placeholder-class="placeholder"/> + <button class="blue-btn message-btn" :disabled="!comment" @click="addFollowupComment">发送</button> </view> </uni-popup> <fillter :isShow="isShowFilter" :staffList="staffList" :vipList="vipList" @reset="resetFilter" @change="changeFilter"></fillter> @@ -142,7 +142,7 @@ onPullDownRefresh(){ this.reload(); let timer = setTimeout(function () { - uni.startPullDownRefresh(); + uni.stopPullDownRefresh(); clearTimeout(timer); timer = null; }, 800); @@ -188,7 +188,6 @@ this.list = res.rows } }) - console.log(Math.floor(this.list.length/10)) }, loadList(isRest){ if(this.loadStatus!=='more'){ @@ -337,10 +336,15 @@ font-size: 13px; } .message-row{ + position: fixed; + bottom: 0; + left: 0; + right: 0; display: flex; align-items: center; - background: #F6F6F8; + background: #eee; padding: 10px; + margin-bottom: var(–safe-area-inset-bottom); } .message-input{ flex: 1; @@ -354,12 +358,7 @@ .message-btn{ margin: 0; line-height: 30px; - border-radius: 0; + border-radius: 2px; font-size: 14px; - } - uni-button[disabled]:not([type]), uni-button[disabled][type=default]{ - color: #FFFFFF; - background-color: rgb(31 183 19 / 0.4); - border: 0; } </style> -- Gitblit v1.9.1