jiangping
2024-07-29 d9a89d83c2048a964f16ca179feb2b7f21b9d33a
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<view class="container">
  <view class="tabs">
    <!-- <view class="item {{ activeTabs == '0' ? 'active' : '' }}" data-val="0" bindtap="tabsChange">
      <view class="name">需求</view>
      <view class="border"></view>
    </view> -->
    <view class="item {{ activeTabs == '1' ? 'active' : '' }}" data-val="1" bindtap="tabsChange">
      <view class="name">预约量尺</view>
      <view class="border"></view>
    </view>
    <view class="item {{ activeTabs == '2' ? 'active' : '' }}" data-val="2" bindtap="tabsChange">
      <view class="name">预算</view>
      <view class="border"></view>
    </view>
  </view>
  <view class="list">
    <view class="item" wx:for="{{ dataList }}">
      <view class="header">
        <view class="name">{{ item.name }}</view>
        <view class="phone">{{ item.phone }}</view>
      </view>
      <block wx:if="{{ activeTabs == '1' }}">
        <view class="line">
          <view class="label">所在城市</view>
          <view class="val">
            <text>{{ item.provinceName }}{{ item.cityName }}{{ item.areaName || '' }}</text>
          </view>
        </view>
      </block>
      <!-- 预算 -->
      <block wx:else>
        <view class="line">
          <view class="label">房屋类型</view>
          <view class="val">{{ item.houseStatus == '0' ? '精装' : '毛坯' }}</view>
        </view>
        <view class="line">
          <view class="label">户型信息</view>
          <view wx:if="{{ item.houseType == '0' }}" class="val">一室一厅</view>
          <view wx:if="{{ item.houseType == '1' }}" class="val">二室一厅</view>
          <view wx:if="{{ item.houseType == '2' }}" class="val">两室两厅</view>
          <view wx:if="{{ item.houseType == '3' }}" class="val">三室一厅</view>
          <view wx:if="{{ item.houseType == '4' }}" class="val">四室一厅</view>
          <view wx:if="{{ item.houseType == '5' }}" class="val">五室两厅及以上</view>
        </view>
        <view class="line">
          <view class="label">房屋面积</view>
          <view class="val">{{ item.area }} m²</view>
        </view>
        <view class="line">
          <view class="label">装修预算</view>
          <view class="val">{{ item.budget }}元</view>
        </view>
      </block>
      <view class="time">
        <view>提交时间:{{ item.crmDate }}</view>
      </view>
    </view>
    <view wx:if="{{ dataList.length == 0 }}" class="empty_wrap">
      <image class="default_empty" src="../../static/images/default_empty.png"></image>
    </view>
  </view>
</view>