Commit 5aaa6ed18502200723791cce7beab1c893b581a2

Authored by 史婷婷
1 parent 3794a24b

feat: 资信管理-列表样式优化

Showing 1 changed file with 6 additions and 5 deletions
... ... @@ -22,10 +22,10 @@
22 22 <text class="title omit2">{{ item.companyName }}</text>
23 23 <view class="status-box">
24 24 <text
  25 + :class="['status', `status_${item.status}`]">{{ getDicName('AUDIT_STATUS', item.status, dicOptions.AUDIT_STATUS) }}</text>
  26 + <text
25 27 v-if="item.frozenStatus === '冻结'"
26 28 :class="['status2']">{{ item.frozenStatus === '冻结' ? '已冻结' : '' }}</text>
27   - <text
28   - :class="['status', `status_${item.status}`]">{{ getDicName('AUDIT_STATUS', item.status, dicOptions.AUDIT_STATUS) }}</text>
29 29 </view>
30 30 </view>
31 31 <view class="info-row">
... ... @@ -396,7 +396,7 @@
396 396 right: -32rpx;
397 397
398 398 .status {
399   - display: inline-block;
  399 + display: block;
400 400 height: 48rpx;
401 401 line-height: 48rpx;
402 402 font-weight: 600;
... ... @@ -404,7 +404,7 @@
404 404 font-size: 24rpx;
405 405 padding: 0 14rpx;
406 406 border-radius: 6rpx;
407   - margin-left: 8rpx;
  407 + margin-bottom: 8rpx;
408 408
409 409 &.status_AUDIT {
410 410 background: #3D48A3;
... ... @@ -425,7 +425,7 @@
425 425 }
426 426
427 427 .status2 {
428   - display: inline-block;
  428 + display: block;
429 429 font-weight: 600;
430 430 line-height: 48rpx;
431 431 height: 48rpx;
... ... @@ -435,6 +435,7 @@
435 435 border-radius: 6rpx;
436 436 background: #E7E7E7;
437 437 color: #323241;
  438 +
438 439 }
439 440
440 441 }
... ...