13404089107
2025-05-08 51cca32d236262be90f2d39b8889fa343f1adfa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--pages/home/type-style/type-style.wxml-->
<van-skeleton  row="3" wx:if="{{showSkeleton}}"/>
<view class="type-style" wx:else>
    <view class="first-box" catchtap="clickFirstBox">
        <view class="img-left">
            <image src="/img/icon_raidobutton.png" wx:if="{{!firstBox}}"  style="width:40rpx" mode="widthFix"></image>
            <image src="/img/icon_raidobutton_selected.png"  wx:else style="width:40rpx" mode="widthFix"></image>
        </view>
        <view class="info-center">
     
            <view>普通小件 <span>起步价¥{{ordinary||0}}</span></view>
            <view>物品大小在25cm×25cm×25cm以内</view>
        </view>
        <view class="active-right">
            <image src="/img/icon_minus_disable.png" catchtap="firstDown" mode="widthFix" style="width:44rpx"></image>
            <view>{{firstNum}}</view>
            <image src="/img/icon_plus_able.png" catchtap="firstPull" mode="widthFix" style="width:44rpx"></image>
        </view>
    </view>
    <view class="first-box" catchtap="clickScendBox" style="margin-bottom:0;border-bottom:1rpx solid rgba(219, 219, 231, 1)">
        <view class="img-left">
            <image src="/img/icon_raidobutton.png" wx:if="{{!scendBox}}" style="width:40rpx" mode="widthFix"></image>
            <image src="/img/icon_raidobutton_selected.png" wx:else style="width:40rpx" mode="widthFix"></image>
        </view>
        <view class="info-center">
            <view>尊重物品 <span>起步价¥{{precious||0}}</span></view>
            <view>如身份证、护照、手机等</view>
        </view>
        <view class="active-right">
            <image src="/img/icon_minus_disable.png" catchtap="scendDown" mode="widthFix" style="width:44rpx"></image>
            <view>{{scendNum}}</view>
            <image src="/img/icon_plus_able.png" catchtap="scendPull" mode="widthFix" style="width:44rpx"></image>
        </view>
    </view>
 
    <view wx:if="{{scendBox}}">
        <view class="click-list" wx:for="{{pullData}}" catchtap="clickItem" data-name="{{item.name}}" data-id="{{item.id}}" wx:key="index">
            <view class="click-name">{{item.name}}</view>
            <image src="{{activeID == item.id ? activeImg: selectImg}}" style="width:40rpx;margin-right:28rpx" mode="widthFix"></image>
        </view>
        <textarea placeholder="填写其他物品名称" bindinput="textarea" class="textarea"></textarea>
    </view>
 
    <view class="click-pick" catchtap="click"> 确认选择</view>
</view>