|
@@ -1,32 +1,32 @@
|
|
|
<form catchsubmit="formSubmit">
|
|
|
- <view class="info_cell-wrap bacfff">
|
|
|
- <view class="info_cell">
|
|
|
- <view class="info_cell_lable">卡号:</view>
|
|
|
- <view class="info_cell_content">
|
|
|
- <input class="postage_input" type="number" name="card_no" placeholder="请输入卡号" value="{{card_no}}"/>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
-
|
|
|
-
|
|
|
- <radio-group bindchange="radioChange" name="card_type">
|
|
|
- <label class="radiobox">
|
|
|
- <image src="/image/postage/petrochina.png" class="radiobox-image"></image>
|
|
|
- <text class="radiobox-text">中国石油</text>
|
|
|
- <radio value="petrochina" checked="{{card_type === 'petrochina'}}" disabled="{{card_type && card_type !== 'petrochina'}}" class="radiobox-radio" />
|
|
|
- </label>
|
|
|
- <label class="radiobox">
|
|
|
- <image src="/image/postage/sinopec.png" class="radiobox-image"></image>
|
|
|
- <text class="radiobox-text">中国石化</text>
|
|
|
- <radio value="sinopec" checked="{{card_type === 'sinopec'}}" disabled="{{card_type && card_type !== 'sinopec'}}" class="radiobox-radio" />
|
|
|
- </label>
|
|
|
- <label class="radiobox">
|
|
|
- <image src="/image/postage/phone.png" class="radiobox-image"></image>
|
|
|
- <text class="radiobox-text">手机号</text>
|
|
|
- <radio value="phone" checked="{{card_type === 'phone'}}" disabled="{{card_type && card_type !== 'phone'}}" class="radiobox-radio" />
|
|
|
- </label>
|
|
|
- </radio-group>
|
|
|
-
|
|
|
- <button class="add_postage_btn" formType="submit" type="primary">确认</button>
|
|
|
- <view class="tips">为了您的财产安全,请确认卡号正确无误!</view>
|
|
|
+ <view class="form-control">
|
|
|
+ <view class="title">选择卡类别</view>
|
|
|
+ <radio-group bindchange="radioChange" name="card_type">
|
|
|
+ <label class="radiobox">
|
|
|
+ <image src="/image/postage/petrochina.png" class="radiobox-image"></image>
|
|
|
+ <text class="radiobox-text">中国石油</text>
|
|
|
+ <radio value="petrochina" checked="{{card_type === 'petrochina'}}" disabled="{{card_type && card_type !== 'petrochina'}}" class="radiobox-radio" />
|
|
|
+ </label>
|
|
|
+ <label class="radiobox">
|
|
|
+ <image src="/image/postage/sinopec.png" class="radiobox-image"></image>
|
|
|
+ <text class="radiobox-text">中国石化</text>
|
|
|
+ <radio value="sinopec" checked="{{card_type === 'sinopec'}}" disabled="{{card_type && card_type !== 'sinopec'}}" class="radiobox-radio" />
|
|
|
+ </label>
|
|
|
+ <label class="radiobox">
|
|
|
+ <image src="/image/postage/phone.png" class="radiobox-image"></image>
|
|
|
+ <text class="radiobox-text">手机号</text>
|
|
|
+ <radio value="phone" checked="{{card_type === 'phone'}}" disabled="{{card_type && card_type !== 'phone'}}" class="radiobox-radio" />
|
|
|
+ </label>
|
|
|
+ </radio-group>
|
|
|
+ </view>
|
|
|
+ <view class="form-control form-control-flex">
|
|
|
+ <label class="form-label">卡号:</label>
|
|
|
+ <input class="input-control" type="number" name="card_no" value="{{card_no}}"/>
|
|
|
+ </view>
|
|
|
+ <view class="form-control form-control-flex">
|
|
|
+ <label class="form-label">确认卡号:</label>
|
|
|
+ <input class="input-control" type="number" name="confirm_card_no" value="{{confirm_card_no}}"/>
|
|
|
+ </view>
|
|
|
+ <button class="add_postage_btn" formType="submit" type="primary">确认</button>
|
|
|
+ <view class="tips">为了您的财产安全,请确认卡号正确无误!</view>
|
|
|
</form>
|