提交 57129f6445206dfe384e529124892f0265a03972

作者 guomingshu
1 个父辈 de92bef6

feat: fix bug

... ... @@ -58,11 +58,25 @@
58 58 :rightIconStyle="{ fontSize: '26rpx' }"
59 59 :title-style="{ color: '#909097', fontSize: '28rpx' }"
60 60 >
61   - <view slot="value">
62   - <view v-for="(item, index) in departmentName" v-bind:key="index">{{item.departmentName ? `${item.departmentName}/${item.name}` : item.name}}</view>
63   - </view>
64 61 </u-cell>
65 62 </u-cell-group>
  63 + <view style="padding: 10px 15px;">
  64 + <view
  65 + style="
  66 + font-size: 28rpx;
  67 + color: #202131;
  68 + word-break: break-all;
  69 + padding-bottom: 10px;
  70 + "
  71 + v-for="(item, index) in departmentName"
  72 + v-bind:key="index"
  73 + >{{
  74 + item.departmentName
  75 + ? `${item.departmentName}/${item.name}`
  76 + : item.name
  77 + }}</view
  78 + >
  79 + </view>
66 80 </view>
67 81
68 82 <u-action-sheet
... ... @@ -277,7 +291,6 @@ export default {
277 291 }
278 292
279 293 .cell /deep/ .u-cell {
280   -
281 294 .u-cell__value {
282 295 font-size: 34rpx;
283 296 color: rgba(0, 0, 0, 0.5);
... ...
注册登录 后发表评论