1234567891011121314151617181920212223242526272829303132 |
- <l-container>
- <view class="globstyle leaveadd">
- <!-- 自定义 -->
- <!-- 收货方 -->
- <van-cell bind:click="ChooseAddress" center is-link>
- <view class="user-address" slot="title">
- <view class="user-address-h1">{{useraddress.name}} {{useraddress.tel}}</view>
- <view class="user-address-h2">
- <van-tag wx:if="{{useraddress.lock}}" round type="danger">默认</van-tag>
- {{useraddress.address}}
- </view>
- </view>
- </van-cell>
- <!-- 选择日期 -->
- <van-cell title="选择日期" use-label-slot>
- <view class="flex" slot="label">
- <view bindtap="choosedata" data-index="{{index}}" wx:for="{{datas}}" wx:key="index"
- class="item {{item[2] ? 'block' : ''}}">{{item[0]}} {{item[1]}}</view>
- </view>
- </van-cell>
- <!-- 选择类别 -->
- <van-cell title="选择内容" use-label-slot>
- <view class="flex" slot="label">
- <view bindtap="choosetype" data-index="{{index}}" wx:for="{{type}}" wx:key="index"
- class="item {{item['lock'] ? 'block' : ''}}">{{item.name}}</view>
- </view>
- </van-cell>
- <view class="button">
- <van-button round block type="info" bindtap="submit">提交</van-button>
- </view>
- </view>
- </l-container>
|