Fix:3011 【商城小程序】店铺主页发布动态中,简介输入字数超过140字时未弹出”字数超过限制“提示,且下方字数提示变化不正确
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
placeholder-style="font-size:24rpx;color:#C2C5CC;"
|
||||
class="content-style inp"
|
||||
/>
|
||||
<text class="v12-font-24 v12-dark1-text">{{ form.intro.length }} / 140</text>
|
||||
<text class="v12-font-24 v12-dark1-text">{{ form.intro.length > 140 ? 140 : form.intro.length }} / 140</text>
|
||||
</view>
|
||||
<view class="form-item" v-if="showUpload">
|
||||
<view v-if="uploadType === 'image'" class="title">图片(最多9张):</view>
|
||||
|
||||
Reference in New Issue
Block a user