Fix:2629 【商城小程序】商品评价和店铺资讯超过140字时限制输入无提示,再次输入内容,发表结果会显示再次输入内容的最后两个字

This commit is contained in:
modendeveloper
2024-11-24 16:28:20 +08:00
parent 862e624913
commit 33425987f7
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1327,6 +1327,7 @@ export default {
padding: 32rpx;
}
.info-section {
word-break: break-all;
.info-item + .info-item {
margin: 32rpx 0 0 0;
}
+1 -1
View File
@@ -154,7 +154,7 @@
postHotelNewsAdd({
hotelId: this.hotelId,
name: this.form.title,
intro: this.form.intro,
intro: this.form.intro.substring(0, 140),
content: this.form.content.replace(/\<img src/g, '<img style="display: block;max-width: 100%;" src'),
type: this.uploadType === 'image' ? 'NT_TEXT' : 'NT_VIDEO',
resources: this.uploadType === 'image' ? this.uploadedFilesArray : [],