k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
<view class="container">
  <view class="navbar" style="padding-top: {{ clientTop }}px;height: {{clientHeight + clientTop}}px;">我的家</view>
  <image class="mine_bg" src="{{ MINE_BG }}" mode="widthFix"></image>
  <view class="userinfo">
    <image class="avatar" src="{{ member.imgurl ? member.prefix + member.imgurl : '../../static/images/default_avatar.png' }}"></image>
    <view class="content">
      <view class="header">
        <view class="name">{{ member.nickname }}</view>
        <view data-index="3" bindtap="changePath" class="edit">编辑</view>
      </view>
      <view class="addr">{{ member.district || '' }}</view>
      <view class="detail">
        <text wx:if="{{member.housearea}}">{{ member.housearea }}m²|</text>
        <text class="item" wx:if="{{ houseType.val1 }}">{{ houseType.val1 }}室</text>
        <text class="item" wx:if="{{ houseType.val2 }}">{{ houseType.val2 }}厅</text>
        <text class="item" wx:if="{{ houseType.val3 }}">{{ houseType.val3 }}厨</text>
        <text class="item" wx:if="{{ houseType.val4 }}">{{ houseType.val4 }}卫</text>
        <text class="item" wx:if="{{ houseType.val5 }}">{{ houseType.val5 }}阳</text>
      </view>
    </view>
  </view>
  <view class="main_content">
    <view class="func_list">
      <view class="line" data-index="0" bindtap="changePath">
        <view class="name">我预约的</view>
        <image class="icon" src="../../static/icon/mine_ic_ar.png" mode="widthFix"></image>
      </view>
      <view class="line" data-index="1" bindtap="changePath">
        <view class="name">我收藏的</view>
        <image class="icon" src="../../static/icon/mine_ic_ar.png" mode="widthFix"></image>
      </view>
      <view class="line" data-index="2" bindtap="changePath">
        <view class="name">我喜欢的</view>
        <image class="icon" src="../../static/icon/mine_ic_ar.png" mode="widthFix"></image>
      </view>
    </view>
    <view class="func_list">
      <view class="line" data-index="4" bindtap="changePath">
        <view class="name">员工绑定</view>
        <image class="icon" src="../../static/icon/mine_ic_ar.png" mode="widthFix"></image>
      </view>
      <view class="line" data-index="5" bindtap="changePath">
        <view class="name">更多设置</view>
        <image class="icon" src="../../static/icon/mine_ic_ar.png" mode="widthFix"></image>
      </view>
    </view>
  </view>
  <view class="liucheng">
    <view class="h1">服务流程</view>
    <view class="h2">专注厨房 更懂生活</view>
    <image class="img" src="{{ IMG_LIUCHENG }}" mode="widthFix"></image>
  </view>
</view>