支付方式
Showing
8 changed files
with
9 additions
and
9 deletions
| ... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
| 69 | <view class="info-line"></view> | 69 | <view class="info-line"></view> |
| 70 | <view class="info-item"> | 70 | <view class="info-item"> |
| 71 | <text class="item-label">支付方式</text> | 71 | <text class="item-label">支付方式</text> |
| 72 | <text class="item-value">民生付</text> | 72 | <text class="item-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 73 | </view> | 73 | </view> |
| 74 | </view> | 74 | </view> |
| 75 | 75 | ... | ... |
| ... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
| 33 | </view> | 33 | </view> |
| 34 | <view class="info-row"> | 34 | <view class="info-row"> |
| 35 | <text class="label">支付方式</text> | 35 | <text class="label">支付方式</text> |
| 36 | <text class="value">民生付</text> | 36 | <text class="value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 37 | </view> | 37 | </view> |
| 38 | <view class="info-row"> | 38 | <view class="info-row"> |
| 39 | <text class="label">提交日期</text> | 39 | <text class="label">提交日期</text> | ... | ... |
| ... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
| 33 | </view> | 33 | </view> |
| 34 | <view class="info-item"> | 34 | <view class="info-item"> |
| 35 | <text class="label">支付方式</text> | 35 | <text class="label">支付方式</text> |
| 36 | <text class="value"> 民生付</text> | 36 | <text class="value">{{ form.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 37 | </view> | 37 | </view> |
| 38 | <view class="info-item"> | 38 | <view class="info-item"> |
| 39 | <text class="label">提交日期</text> | 39 | <text class="label">提交日期</text> |
| ... | @@ -113,7 +113,7 @@ | ... | @@ -113,7 +113,7 @@ |
| 113 | </view> | 113 | </view> |
| 114 | <view class="item-row"> | 114 | <view class="item-row"> |
| 115 | <text class="item-label">支付方式</text> | 115 | <text class="item-label">支付方式</text> |
| 116 | <text class="item-value">民生付</text> | 116 | <text class="item-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 117 | </view> | 117 | </view> |
| 118 | <view class="item-row"> | 118 | <view class="item-row"> |
| 119 | <text class="item-label">审核状态</text> | 119 | <text class="item-label">审核状态</text> | ... | ... |
| ... | @@ -107,7 +107,7 @@ | ... | @@ -107,7 +107,7 @@ |
| 107 | </view> | 107 | </view> |
| 108 | <view class="price-row"> | 108 | <view class="price-row"> |
| 109 | <text class="price-label">缴费方式</text> | 109 | <text class="price-label">缴费方式</text> |
| 110 | <text class="price-value">民生付</text> | 110 | <text class="price-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 111 | </view> | 111 | </view> |
| 112 | </view> | 112 | </view> |
| 113 | 113 | ... | ... |
| ... | @@ -113,7 +113,7 @@ | ... | @@ -113,7 +113,7 @@ |
| 113 | </view> | 113 | </view> |
| 114 | <view class="price-row"> | 114 | <view class="price-row"> |
| 115 | <text class="price-label">缴费方式</text> | 115 | <text class="price-label">缴费方式</text> |
| 116 | <text class="price-value">民生付</text> | 116 | <text class="price-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text> |
| 117 | </view> | 117 | </view> |
| 118 | <view class="price-row"> | 118 | <view class="price-row"> |
| 119 | <text class="price-label">订单状态</text> | 119 | <text class="price-label">订单状态</text> | ... | ... |
| ... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
| 55 | <view class="line"></view> | 55 | <view class="line"></view> |
| 56 | <view class="single-info"> | 56 | <view class="single-info"> |
| 57 | <view class="label">缴费方式</view> | 57 | <view class="label">缴费方式</view> |
| 58 | <view class="value">民生付</view> | 58 | <view class="value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</view> |
| 59 | </view> | 59 | </view> |
| 60 | </view> | 60 | </view> |
| 61 | 61 | ... | ... |
| ... | @@ -75,7 +75,7 @@ | ... | @@ -75,7 +75,7 @@ |
| 75 | <view class="divider"></view> | 75 | <view class="divider"></view> |
| 76 | <view class="single-info"> | 76 | <view class="single-info"> |
| 77 | <view class="label">缴费方式</view> | 77 | <view class="label">缴费方式</view> |
| 78 | <view class="value">{{ item.payWay || '民生付' }}</view> | 78 | <view class="value">{{ item.ziZhangBu ? '对公转账' : (item.payWay || '民生付') }}</view> |
| 79 | </view> | 79 | </view> |
| 80 | </view> | 80 | </view> |
| 81 | 81 | ... | ... |
-
Please register or sign in to post a comment