修复UI上英文不换行bug

This commit is contained in:
范鹏 2024-09-13 09:49:41 +08:00
parent 373cbdbb35
commit 529626818b
3 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
"appid" : "__UNI__933D519", "appid" : "__UNI__933D519",
"description" : "", "description" : "",
"versionName" : "1.0.0", "versionName" : "1.0.0",
"versionCode" : "12", "versionCode" : "13",
"transformPx" : false, "transformPx" : false,
/* */ /* */
"mp-weixin" : { "mp-weixin" : {

View File

@ -279,6 +279,7 @@ export default {
font-size: 32rpx; font-size: 32rpx;
padding: 32rpx 32rpx 0 32rpx; padding: 32rpx 32rpx 0 32rpx;
font-weight: bold; font-weight: bold;
word-break: break-all;
} }
.top { .top {

View File

@ -4,7 +4,7 @@
<view class="view-button"> <view class="view-button">
<view style="width: 350rpx">名称</view> <view style="width: 350rpx">名称</view>
<view class="view-button" style="padding: 20rpx 0"> <view class="view-button" style="padding: 20rpx 0">
<view class="info" style="line-height: 40rpx">{{currentLockInfo.lockAlias}}</view> <view class="info" style="line-height: 40rpx;word-break: break-all;">{{currentLockInfo.lockAlias}}</view>
</view> </view>
</view> </view>
<view class="view-line"></view> <view class="view-line"></view>