81 lines
3.3 KiB
Plaintext
81 lines
3.3 KiB
Plaintext
<view class="box">
|
|
<view class="filterList">
|
|
<view class="filterItem">
|
|
<van-checkbox value="{{ packageList.checked }}" shape="square" bind:change="onChange" data-idx="{{index}}" checked-color="#2583FF">
|
|
</van-checkbox>
|
|
<view class="filterItem_Msg">
|
|
<view class="filterItem_Img">
|
|
<image src="{{packageList.package_icon}}" mode="aspectFill" />
|
|
</view>
|
|
<view class="filterItem_Con">
|
|
<view class="filterItem_Con_msg">
|
|
¥{{packageList.suggested_price}}
|
|
</view>
|
|
<view class="filterItem_Con_tagList">
|
|
{{packageList.package_name}}
|
|
|
|
<view class="tag">
|
|
{{packageList.package_type == 1?'时长模式':'流量模式'}}
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view wx:if="{{packageList.package_type == 1}}">
|
|
续费时长:{{packageList.package_days}}天
|
|
</view>
|
|
<view wx:if="{{packageList.package_type != 1}}">
|
|
续费流量: {{packageList.package_flow}}
|
|
</view>
|
|
|
|
<view class="filterItem_Con_msg2">
|
|
经销商:{{packageList.dealer_name}}
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="gray"></view>
|
|
|
|
<!-- <view class="form">
|
|
<view class="formItem">
|
|
<view class="formItem_ask">收货人</view>
|
|
<view class="formItem_con">
|
|
<input type="text" value="{{name}}" placeholder="请输入收货人姓名" bindinput="ipt1" />
|
|
</view>
|
|
</view>
|
|
<view class="formItem">
|
|
<view class="formItem_ask">联系方式</view>
|
|
<view class="formItem_con">
|
|
<input type="number" maxlength="11" value="{{phone}}" placeholder="请输入收货人联系方式" bindinput="ipt2" />
|
|
</view>
|
|
</view>
|
|
<view class="formItem">
|
|
<view class="formItem_ask">所属地区</view>
|
|
<view class="formItem_con">
|
|
<input type="text" value="{{area}}" placeholder="请选择所在地区" disabled bindtap="changeShow" />
|
|
</view>
|
|
</view>
|
|
<view class="formItem">
|
|
<view class="formItem_ask">收货地址</view>
|
|
<view class="formItem_con">
|
|
<input type="text" value="{{address}}" placeholder="请输入详细地址" bindinput="ipt3" />
|
|
</view>
|
|
</view>
|
|
</view> -->
|
|
|
|
|
|
<view class="foot">
|
|
<view class="foot_mony"> <text>¥</text> {{selectPackage.discounted_price}}</view>
|
|
<!-- <view class="foot_btn" bind:tap="account">去结算</view> -->
|
|
<view class="foot_btn" bind:tap="account2">去结算</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
<van-popup show="{{ show }}" safe-area-inset-bottom lock-scroll bind:close="onClose" round close-on-click-overlay position="bottom" bind:>
|
|
<view style="width: 100%;">
|
|
<van-area area-list="{{ areaList }}" bind:confirm="AreaConfirm" bind:cancel="cancel" value="110101" />
|
|
</view>
|
|
</van-popup> |