Fix:2629 【商城小程序】商品评价和店铺资讯超过140字时限制输入无提示,再次输入内容,发表结果会显示再次输入内容的最后两个字
This commit is contained in:
@@ -1327,6 +1327,7 @@ export default {
|
|||||||
padding: 32rpx;
|
padding: 32rpx;
|
||||||
}
|
}
|
||||||
.info-section {
|
.info-section {
|
||||||
|
word-break: break-all;
|
||||||
.info-item + .info-item {
|
.info-item + .info-item {
|
||||||
margin: 32rpx 0 0 0;
|
margin: 32rpx 0 0 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -154,7 +154,7 @@
|
|||||||
postHotelNewsAdd({
|
postHotelNewsAdd({
|
||||||
hotelId: this.hotelId,
|
hotelId: this.hotelId,
|
||||||
name: this.form.title,
|
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'),
|
content: this.form.content.replace(/\<img src/g, '<img style="display: block;max-width: 100%;" src'),
|
||||||
type: this.uploadType === 'image' ? 'NT_TEXT' : 'NT_VIDEO',
|
type: this.uploadType === 'image' ? 'NT_TEXT' : 'NT_VIDEO',
|
||||||
resources: this.uploadType === 'image' ? this.uploadedFilesArray : [],
|
resources: this.uploadType === 'image' ? this.uploadedFilesArray : [],
|
||||||
|
|||||||
Reference in New Issue
Block a user