Commit a0fb092cf93bc485dff157ee15dbdf764f4392dd

Authored by fengtao
1 parent 94a2b360

pref:优化告警值长度过长样式问题

... ... @@ -32,7 +32,7 @@
32 32 <view class="column">
33 33 <text class="text-org-bold">告警值:</text>
34 34 <text
35   - class="text-device-muted">{{ list.details == null ? '暂无数据' : formatDetailText(list.details.data) }}</text>
  35 + class="text-device-muted text-clip">{{ list.details == null ? '暂无数据' : formatDetailText(list.details.data) }}</text>
36 36 </view>
37 37 <view class="column">
38 38 <text class="text-org-bold">告警时间:</text>
... ...
... ... @@ -15,7 +15,8 @@
15 15 align-items: center;
16 16 .column {
17 17 flex-direction: row;
18   - justify-content: space-between;
  18 + display:flex;
  19 + // justify-content: space-between;
19 20 margin-top: 10rpx;
20 21 line-height: 68rpx;
21 22 width: 614rpx;
... ...