<!-- 评论框 -->
<view class="d-foot d-foot-h">
<view class="textarea-box-box ft-bg " :class="{'align-center': !setFocus && !content}">
<view class="textarea-box">
<textarea @input="handleInput" :focus="setFocus" :placeholder="reply_text" placeholder-class="color999" class="font28 reply_text" v-model="content" @blur="get_blur" auto-height :cursor-spacing="20" maxlength="1000" :fixed="true" :adjust-position="true" @keyboardheightchange="onCommentKeyboardHeightChange" />
</view>
<view v-if="!setFocus && !content" class="btns flex-lect">
<view class="item flex-lect" @click.stop="shareFun()">
<image :src="imgApi.dynamicShare" mode="aspectFill" class="icon"></image>
分享
<button class="button" open-type="share"></button>
</view>
<view class="item flex-lect" style="margin-right: 20rpx;" @click.stop="detailZan"><image :src="detail_info.is_zan ? imgApi.zanLan : imgApi.zanHui" mode="aspectFill" class="icon"></image>{{detail_info.zan}}</view>
<view class="item flex-lect" style="margin-left: 0;"><image :src="imgApi.dynamicPl" mode="aspectFill" class="icon"></image>{{detail_info.comment_number || 0}}</view>
</view>
<view v-else class="btn1 comment-send-btn" @click="get_submit('')">发送</view>
</view>
</view>
.d-foot 这个使用的是fixed; bottom:0
上面textarea该加的属性都加了
且在ios,安卓的都是完美的,就是鸿蒙手机上不行
