zs 2 years ago
parent
commit
d12788c064
1 changed files with 7 additions and 3 deletions
  1. 7 3
      pagesHome/order/appraise.vue

+ 7 - 3
pagesHome/order/appraise.vue

@@ -35,7 +35,7 @@
 								<view class="stars">
 									<uni-rate size="18" :readonly="true" :value="item.goods_score" />
 								</view>
-								<view class="other1">{{item.reply[0].content||'暂无'}}</view>
+								<view class="other1"><text>{{item.reply[0].content||'暂无'}}</text></view>
 								<view class="other2">规格:{{item.goodsSpec.name}}</view>
 								<view class="other2" v-for="(itm, indexx) in item.reply" :key="indexx">
 									<view class="reply">
@@ -44,7 +44,8 @@
 									</view>
 									<view v-if="item.customer._id==user._id" @tap="toReply(item)">回复</view>
 								</view>
-								<uni-easyinput v-if="reply.reply" class="input" maxlength=-1 type="textarea" @change="confirm" placeholder="回复商家" />
+								<uni-easyinput v-if="reply.reply" class="input" maxlength=-1 type="textarea"
+									@change="confirm" placeholder="回复商家" />
 							</view>
 						</view>
 					</view>
@@ -328,6 +329,8 @@
 
 					.other1 {
 						margin: 1vw 0 0 0;
+						word-break: break-all;
+						word-wrap: break-word;
 					}
 
 					.flie {
@@ -353,7 +356,8 @@
 							display: flex;
 							flex-direction: column;
 							width: 70vw;
-							word-wrap:break-word;
+							word-wrap: break-word;
+							word-break: break-all;
 						}
 					}
 				}