gx
queenwuli
2021-01-15 4b80c98ef5fda8d6358778f2efe8bb35cb20ccf9
hive-app/pages/workbench/followRecords/index.vue
@@ -59,7 +59,7 @@
      <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>
            <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>
@@ -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>