出现的问题 type="textarea" 这个限制 微信小程序使用textarea ,
输入字数大于140 时就输入不进去了
加入这个就解决了
maxlength="-1"
<u-input
v-model="queryParams.orderIdTxt"
border="true"
:focus="true"
:auto-height="true"
:height="500"
maxlength="-1"
type="textarea"
placeholder="请输入订单号,多单号换行分割"
/>