Commit 5aaa6ed18502200723791cce7beab1c893b581a2

Authored by 史婷婷
1 parent 3794a24b

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

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