Fix:3853 【商城小程序】聊天窗口可输入字数太少 修改为500字

This commit is contained in:
LinCyJang
2025-06-02 11:19:20 +08:00
parent ea5efb50c4
commit 0ddb5451e5
+3 -2
View File
@@ -78,7 +78,7 @@
<view class="input-box">
<textarea
v-model="content"
maxlength="150"
maxlength="500"
:auto-height="true"
:fixed="true"
:show-confirm-bar="false"
@@ -279,7 +279,8 @@ export default {
},
userInput(event) {
this.content = event.detail.value;
// 只取前500字
this.content = event.detail.value.slice(0, 500);
},
userSend(msg_type) {