Fix:3011 【商城小程序】店铺主页发布动态中,简介输入字数超过140字时未弹出”字数超过限制“提示,且下方字数提示变化不正确

This commit is contained in:
modendeveloper
2025-01-26 17:08:15 +08:00
parent 6f3fa44385
commit 8e0caaca24
+1 -1
View File
@@ -119,7 +119,7 @@
}, },
methods: { methods: {
inputIntro() { inputIntro() {
if(this.form.intro.length >= 140) { if(this.form.intro.length > 140) {
uni.showToast({ uni.showToast({
title: '字数超过限制', title: '字数超过限制',
icon: 'none' icon: 'none'