123456789101112131415161718192021222324252627282930313233343536 |
- <view class="search-box">
- <view class="search-top">
- <input class="search-ipt" focus="true" placeholder="搜索用户手机号" type="text" value="{{value}}" bindinput="mobileInput" maxlength="11" type="number" placeholder-style="color:#b0b0b0" />
- <!-- 输入的时候显示 -->
- <van-icon name="cross" size="{{showInput}}" custom-style="margin-top: 20rpx" bind:click="clear" />
- <button class="search-btn" bindtap="Search">搜索</button>
- </view>
- </view>
- <view style="margin: 4%;" wx:for="{{showList}}">
- <view class="item-box">
- <view style="color: #747474;font-size: 29rpx;">
- 订单编号 : {{item.Oid}}
- <view style="float: right;" bindtap="onClickdetail">
- {{detail}}
- </view>
- </view>
- <view style=" margin: 20rpx 0rpx; background: #E0E3DA;width: 100%;height: 1rpx">
- </view>
- <view>
- <view class="card1">
- <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">姓名:{{item.UserName}}</text>
- <text style="font-size:26rpx; color: #FF6347;">待送达</text>
- </view>
- <view class="card1">
- <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">手机号:{{item.Phone}}</text>
- </view>
- <view class="card1">
- <text style="font-size:26rpx;margin-bottom: 10rpx;color: #747474;">地址:{{item.Area}}</text>
- </view>
- <view class="card1">
- <text style="font-size:26rpx;color: #747474;">下单时间:{{item.CreateTime}}</text>
- <van-button color="#FF8C00" custom-style="border-radius:8px;font-size:20rpx" class="btn1" round type="info" size="mini">重新打印</van-button>
- </view>
- </view>
- </view>
- </view>
|