125 lines
5.0 KiB
Plaintext
125 lines
5.0 KiB
Plaintext
<view class="box">
|
||
|
||
<view class="tabList">
|
||
<view class="tab {{tabIndex == 0?'active':''}}" data-index="0" bind:tap="changeTab">设备进货</view>
|
||
<view class="tab {{tabIndex == 1?'active':''}}" data-index="1" bind:tap="changeTab">进货记录</view>
|
||
</view>
|
||
|
||
<view wx:if="{{tabIndex == 0}}" style="padding-bottom:180rpx">
|
||
<view class="filterList">
|
||
<view class="filterItem" wx:for="{{3}}">
|
||
<van-checkbox value="{{ checked }}" shape="square" bind:change="onChange" checked-color="#ff512a">
|
||
</van-checkbox>
|
||
<view class="filterItem_Msg">
|
||
<view class="filterItem_Img">
|
||
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/water_filter/goods.png" mode="widthFix" />
|
||
</view>
|
||
<view class="filterItem_Con">
|
||
<view class="filterItem_Con_tit">后置活性炭滤芯</view>
|
||
<view class="filterItem_Con_tagList">
|
||
进货价
|
||
<view class="icon">¥</view>
|
||
<view class="money">998</view>
|
||
</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="请输入收货人姓名" />
|
||
</view>
|
||
</view>
|
||
<view class="formItem">
|
||
<view class="formItem_ask">联系方式</view>
|
||
<view class="formItem_con">
|
||
<input type="text" value="{{phone}}" placeholder="请输入收货人联系方式" />
|
||
</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="请输入详细地址" />
|
||
</view>
|
||
</view>
|
||
|
||
<view class="formItem2">
|
||
<view class="foremItem2_tit">留言</view>
|
||
<view class="foremItem2_con">
|
||
<textarea value="{{message}}" placeholder="请输入留言" />
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view class="foot">
|
||
<view class="foot_mony"> <text>¥</text> 68.00</view>
|
||
<view class="foot_btn" bind:tap="account">去结算</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view wx:if="{{tabIndex == 1}}" style="background-color: #f9f9f9;">
|
||
|
||
<view class="payList">
|
||
<view class="payItem" wx:for="{{2}}">
|
||
<view class="payItem_tit">
|
||
<view class="payItem_tit_time">2024-12-20 10:31:48</view>
|
||
<view class="payItem_tit_state">未支付</view>
|
||
</view>
|
||
<view class="payItem_goods">
|
||
<view class="payItem_goods_img">
|
||
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/water_filter/goods.png" mode="widthFix" />
|
||
</view>
|
||
<view class="payItem_goods_msg">
|
||
<view class="payItem_goods_msg_orderNum">订单编号:20250228150122105</view>
|
||
<view class="payItem_goods_msg_orderName">滤芯名称:后置活性炭</view>
|
||
<view class="payItem_goods_msg_orderPrice">价格:58</view>
|
||
</view>
|
||
</view>
|
||
<view class="rows">
|
||
<view class="rows_tit">实付款</view>
|
||
<view class="rows_con">58</view>
|
||
</view>
|
||
<view class="rows">
|
||
<view class="rows_tit">支付方式</view>
|
||
<view class="rows_con">微信</view>
|
||
</view>
|
||
<view class="rows">
|
||
<view class="rows_tit">收货人名称</view>
|
||
<view class="rows_con">杜胜男</view>
|
||
</view>
|
||
<view class="rows">
|
||
<view class="rows_tit">收货人手机</view>
|
||
<view class="rows_con">15901518415</view>
|
||
</view>
|
||
<view class="rows">
|
||
<view class="rows_tit">收货人地址</view>
|
||
<view class="rows_con">河北省衡水市桃城区信合荣景园6号楼</view>
|
||
</view>
|
||
<view class="buybox">
|
||
<view class="buy">
|
||
去支付
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</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> |