yuminge-app/yun-min-program-plugin-master/packageD/member/myOrder/express/express.wxml

24 lines
1.1 KiB
Plaintext

<!--pages/member/myOrder/express/express.wxml-->
<view class="my_value">
<van-cell-group>
<van-field readonly value="{{expressName}}" placeholder="请选择快递公司" catchtap="companyShowbtn" />
</van-cell-group>
</view>
<view class="my_value">
<van-cell-group>
<van-field ind:clear="expressclear" clearable bind:input="expressbtn" value="{{form.express_sn}}" placeholder="请输入快递单号" >
<van-icon name="scan" slot="right-icon" size="20px" bindtap="scanCode" />
</van-field>
</van-cell-group>
</view>
<view class="my_value">
<van-button type="default" size='large' bind:tap="submitInfo">提交信息</van-button>
</view>
<van-popup custom-style="width:100%;height:100%;" show="{{companyShow}}" position="right" overlay="{{false}}">
<view class="company">
<van-nav-bar title="选择快递" left-text="" right-text="" left-arrow bind:click-left="companyShowClose" />
<van-cell-group>
<van-cell wx:for="{{express}}" wx:key="index" title="{{item.name}}" data-item="{{item}}" is-link bind:tap="companyConfirm" />
</van-cell-group>
</view>
</van-popup>