Fix:4007 【商城小程序】评论较长,无法上下滑动查看(超过40字后可以滑动查看)
This commit is contained in:
@@ -169,7 +169,7 @@
|
|||||||
:showConfirmBar="false"
|
:showConfirmBar="false"
|
||||||
cursorSpacing="15"
|
cursorSpacing="15"
|
||||||
v-model="reply"
|
v-model="reply"
|
||||||
autoHeight
|
:autoHeight="content.length < 40 ? true : false"
|
||||||
placeholder="分享你的观点,让世界听见你的声音...">
|
placeholder="分享你的观点,让世界听见你的声音...">
|
||||||
|
|
||||||
<template slot="prefix">
|
<template slot="prefix">
|
||||||
|
|||||||
@@ -66,9 +66,9 @@
|
|||||||
@focus="commentInputFocus"
|
@focus="commentInputFocus"
|
||||||
@change="commentInputChange"
|
@change="commentInputChange"
|
||||||
:maxheight="200"
|
:maxheight="200"
|
||||||
|
:autoHeight="content.length < 40 ? true : false"
|
||||||
:showConfirmBar="false"
|
:showConfirmBar="false"
|
||||||
:focus="autoFocus"
|
:focus="autoFocus"
|
||||||
autoHeight
|
|
||||||
id="input"
|
id="input"
|
||||||
:cursor="cursorIndex"
|
:cursor="cursorIndex"
|
||||||
cursorSpacing="85"
|
cursorSpacing="85"
|
||||||
|
|||||||
Reference in New Issue
Block a user