hailu
2023-10-13 6763ddbac0a8df83bfb5191ed99e3dcbdd16beee
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
<view class="header">
  <view class="type">
    在线
  </view>
  <view class="main">
    <view class="info">
      <view style="color: #007CFE;">剩余天数</view>
      <view style="font-size: 18px;color: #007CFE;margin: 5px 0 20px;">111</view>
      <view style="width: 90%;height: 2px;background-color: #808080;margin-left: 5%;"></view>
      <view style="margin-top: 20px;color: #007CFE;">开机</view>
    </view>
  </view>
  <view class="footer" style="width: 100%;">
    <view class="tds" style="width:94%px;display: flex;justify-content: space-between;position: relative;top: -10px;">
      <view class="tds2" style="width: 110px;height: 50px;background-color: #007CFE;color: #fff;border-radius: 25px;text-align: center;">
        <!-- <image src="/images/water-drop.png" mode="" /> -->
        <view style="width: 20px;height: 20px;background-color: #fff;border-radius: 50%;position: relative;top: 15px;left: 10px;"></view>
        <view style="margin-left: 15px;margin-top: 5px;">
          <view>纯水TDS</view>
          <view>111</view>
        </view>
 
      </view>
      <view class="tds2" style="width: 110px;height: 50px;background-color: #007CFE;color: #fff;border-radius: 25px;text-align: center;">
        <!-- <image src="/images/water-drop.png" mode="" /> -->
        <view style="width: 20px;height: 20px;background-color: #fff;border-radius: 50%;position: relative;top: 15px;left: 10px;"></view>
        <view style="margin-left: 15px;margin-top: 5px;">
          <view>原水TDS</view>
          <view>111</view>
        </view>
 
      </view>
 
    </view>
 
  </view>
  <view style="text-align: center;margin: 10px 0;color: #007CFE;">水质正常</view>
  <view style="width:60px;height:60px;margin:20px auto;text-align: center">
    <!-- <image src="/images/address.png" style="width:60px;height:60px;"  mode="" /> -->
    <text class="iconfont icon-kaiguan" style="font-size: 30px;color: #007CFE;"></text>
  </view>
</view>
 
<view class="menu">
  <view class="item" wx:for="{{menuList}}" wx:key="title" data-item="{{item}}" bind:tap="goItem">
    <image src="{{item.img}}" mode="" />
    <!-- <text class="{{item.icon}}" style="font-size: 50px;width: 50px;height: 50px;"></text> -->
    <view class="title">{{item.title}}</view>
  </view>
</view>