32edc977 by 张猛

级位支付

1 parent a463bd31
...@@ -76,14 +76,14 @@ ...@@ -76,14 +76,14 @@
76 <view class="section-title">支付方式</view> 76 <view class="section-title">支付方式</view>
77 <view class="payment-methods"> 77 <view class="payment-methods">
78 <radio-group @change="onPayTypeChange"> 78 <radio-group @change="onPayTypeChange">
79 <label class="payment-item" :class="{ selected: payType === '1' }"> 79 <label :class="{ selected: payType === '0' }" class="payment-item">
80 <radio :checked="payType === '1'" value="1" /> 80 <radio :checked="payType === '0'" value="0"/>
81 <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image> 81 <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image>
82 <text class="payment-name ml10">民生付</text> 82 <text class="payment-name ml10">民生付</text>
83 <!-- <view v-if="payType === '1'" class="check-icon"></view> --> 83 <!-- <view v-if="payType === '1'" class="check-icon"></view> -->
84 </label> 84 </label>
85 <label class="payment-item" :class="{ selected: payType === '3' }"> 85 <label :class="{ selected: payType === '3' }" class="payment-item">
86 <radio :checked="payType === '3'" value="3" /> 86 <radio :checked="payType === '3'" value="3"/>
87 <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image> 87 <image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image>
88 <text class="payment-name ml10">对公转账</text> 88 <text class="payment-name ml10">对公转账</text>
89 <!-- <view v-if="payType === '3'" class="check-icon"></view> --> 89 <!-- <view v-if="payType === '3'" class="check-icon"></view> -->
...@@ -96,11 +96,11 @@ ...@@ -96,11 +96,11 @@
96 <view v-if="payType === '3'" class="info-card transfer-form"> 96 <view v-if="payType === '3'" class="info-card transfer-form">
97 <view class="form-item"> 97 <view class="form-item">
98 <text class="form-label">联系人</text> 98 <text class="form-label">联系人</text>
99 <input class="form-input" v-model="formData.contactPerson" placeholder="请输入联系人" /> 99 <input v-model="formData.contactPerson" class="form-input" placeholder="请输入联系人"/>
100 </view> 100 </view>
101 <view class="form-item"> 101 <view class="form-item">
102 <text class="form-label">联系方式</text> 102 <text class="form-label">联系方式</text>
103 <input class="form-input" v-model="formData.contactTel" type="number" placeholder="请输入联系方式" /> 103 <input v-model="formData.contactTel" class="form-input" placeholder="请输入联系方式" type="number"/>
104 </view> 104 </view>
105 </view> 105 </view>
106 </view> 106 </view>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!