|
@@ -48,7 +48,7 @@
|
|
<view class="foot-view-info" id="foot-view-info">
|
|
<view class="foot-view-info" id="foot-view-info">
|
|
<view class="foot-view fx-r fx-bc">
|
|
<view class="foot-view fx-r fx-bc">
|
|
<image class="icon" src="/static/chat/voice.svg" @tap="tapRecord"></image>
|
|
<image class="icon" src="/static/chat/voice.svg" @tap="tapRecord"></image>
|
|
- <textarea auto-height @input="tapInput" class="fx-g1" v-model="msg" :focus="focus" @focus="tapFoucus" :confirm-hold="true" :hold-keyboard="true" :adjust-position="false" @blur="tapBlur" ></textarea>
|
|
|
|
|
|
+ <textarea auto-height maxlength="-1" @input="tapInput" class="fx-g1 limited-height" v-model="msg" :focus="focus" @focus="tapFoucus" :confirm-hold="true" :hold-keyboard="true" :adjust-position="false" @blur="tapBlur" ></textarea>
|
|
<image @tap="tapCkFace(true)" class="icon" src="/static/chat/face.svg" v-if="!isFace"></image>
|
|
<image @tap="tapCkFace(true)" class="icon" src="/static/chat/face.svg" v-if="!isFace"></image>
|
|
<image @tap="tapCkFace(false)" class="icon" src="/static/chat/cmore.svg" v-else></image>
|
|
<image @tap="tapCkFace(false)" class="icon" src="/static/chat/cmore.svg" v-else></image>
|
|
<image @tap="tapOpenGroup" class="icon" style="width: 28px;height: 28px;" v-if="msg == ''" src="/static/chat/cadd.svg"></image>
|
|
<image @tap="tapOpenGroup" class="icon" style="width: 28px;height: 28px;" v-if="msg == ''" src="/static/chat/cadd.svg"></image>
|
|
@@ -214,7 +214,9 @@
|
|
.pop-win-scroll .item:last-child .info{border-bottom: 0;}
|
|
.pop-win-scroll .item:last-child .info{border-bottom: 0;}
|
|
.pop-win-scroll .letter{padding: 10px;background: #F8F6F6;}
|
|
.pop-win-scroll .letter{padding: 10px;background: #F8F6F6;}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ .limited-height{
|
|
|
|
+ height: 300rpx;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
.red-lq{position: fixed;height: 100%;width: 100%;background: rgba(0, 0, 0, 0.5);left: 0;top: 0;z-index: 10;}
|
|
.red-lq{position: fixed;height: 100%;width: 100%;background: rgba(0, 0, 0, 0.5);left: 0;top: 0;z-index: 10;}
|