4f6db0bd by 张猛

Merge remote-tracking branch 'origin/master'

2 parents 441a011a eedfcf54
......@@ -69,7 +69,7 @@
<view class="info-line"></view>
<view class="info-item">
<text class="item-label">支付方式</text>
<text class="item-value">民生付</text>
<text class="item-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
</view>
......
......@@ -33,7 +33,7 @@
</view>
<view class="info-row">
<text class="label">支付方式</text>
<text class="value">民生付</text>
<text class="value">{{ form.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
<view class="info-row">
<text class="label">提交日期</text>
......
......@@ -24,7 +24,7 @@
<view>
支付方式
<view>
民生付
{{ item.ziZhangBu ? '对公转账' : '民生付' }}
</view>
</view>
<view>
......
......@@ -33,7 +33,7 @@
</view>
<view class="info-item">
<text class="label">支付方式</text>
<text class="value"> 民生付</text>
<text class="value">{{ form.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
<view class="info-item">
<text class="label">提交日期</text>
......@@ -113,7 +113,7 @@
</view>
<view class="item-row">
<text class="item-label">支付方式</text>
<text class="item-value">民生付</text>
<text class="item-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
<view class="item-row">
<text class="item-label">审核状态</text>
......
......@@ -107,7 +107,7 @@
</view>
<view class="price-row">
<text class="price-label">缴费方式</text>
<text class="price-value">民生付</text>
<text class="price-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
</view>
......
......@@ -113,7 +113,7 @@
</view>
<view class="price-row">
<text class="price-label">缴费方式</text>
<text class="price-value">民生付</text>
<text class="price-value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</text>
</view>
<view class="price-row">
<text class="price-label">订单状态</text>
......
......@@ -55,7 +55,7 @@
<view class="line"></view>
<view class="single-info">
<view class="label">缴费方式</view>
<view class="value">民生付</view>
<view class="value">{{ item.ziZhangBu ? '对公转账' : '民生付' }}</view>
</view>
</view>
......
......@@ -75,7 +75,7 @@
<view class="divider"></view>
<view class="single-info">
<view class="label">缴费方式</view>
<view class="value">{{ item.payWay || '民生付' }}</view>
<view class="value">{{ item.ziZhangBu ? '对公转账' : (item.payWay || '民生付') }}</view>
</view>
</view>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!