32edc977 by 张猛

级位支付

1 parent a463bd31
......@@ -76,14 +76,14 @@
<view class="section-title">支付方式</view>
<view class="payment-methods">
<radio-group @change="onPayTypeChange">
<label class="payment-item" :class="{ selected: payType === '1' }">
<radio :checked="payType === '1'" value="1" />
<label :class="{ selected: payType === '0' }" class="payment-item">
<radio :checked="payType === '0'" value="0"/>
<image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image>
<text class="payment-name ml10">民生付</text>
<!-- <view v-if="payType === '1'" class="check-icon"></view> -->
</label>
<label class="payment-item" :class="{ selected: payType === '3' }">
<radio :checked="payType === '3'" value="3" />
<label :class="{ selected: payType === '3' }" class="payment-item">
<radio :checked="payType === '3'" value="3"/>
<image :src="config.baseUrl_api + '/fs/static/min.png'" class="icon ml10" mode="widthFix"></image>
<text class="payment-name ml10">对公转账</text>
<!-- <view v-if="payType === '3'" class="check-icon"></view> -->
......@@ -96,11 +96,11 @@
<view v-if="payType === '3'" class="info-card transfer-form">
<view class="form-item">
<text class="form-label">联系人</text>
<input class="form-input" v-model="formData.contactPerson" placeholder="请输入联系人" />
<input v-model="formData.contactPerson" class="form-input" placeholder="请输入联系人"/>
</view>
<view class="form-item">
<text class="form-label">联系方式</text>
<input class="form-input" v-model="formData.contactTel" type="number" placeholder="请输入联系方式" />
<input v-model="formData.contactTel" class="form-input" placeholder="请输入联系方式" type="number"/>
</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!