unknown
2022-03-16 5c4732c1d40ea63ed246be568c88d5fcf3b25f26
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
<!--pages/home/home.wxml-->
<view class="page">
  <cp-notice msg="提高测评得分小技巧来了,快点学习哦" />
  <view class="page__hd">
    <view class="page__title">xxxxxxxxxxxxxxxx公司</view>
    <view class="page__desc">下次测评时间2022年1月1日</view>
    <view class="top-card">
      <view class="top-card__time">测评周期2022年7月</view>
      <view class="top-card__score">91分 ></view>
      <view class="top-card__items">
        <view class="top-card__item">
          <view>守法排名</view>
          <text>89</text>
        </view>
        <view class="top-card__item">
          <view>守法指数</view>
          <text>低</text>
        </view>
        <view class="top-card__item">
          <view>违法指数</view>
          <text>高</text>
        </view>
      </view>
    </view>
  </view>
  <view class="page__bd">
    <view class="fyui-panel">
      <view class="fyui-cell fyui-cell_select title">
        <view class="fyui-cell__hd">
          <image src="/res/icons/tab_1_select.png" class="icon" />
        </view>
        <view class="fyui-cell__bd">智能工作提醒</view>
        <view class="fyui-cell__ft">查看更多</view>
      </view>
      <view wx:for="{{notices}}" wx:key="index" data-index="index" wx:item="item">
        <view class="fyui-cell">
          <view class="fyui-cell__hd">
            <image src="/res/icons/tab_1_select.png" class="icon" />
          </view>
          <view class="fyui-cell__bd notice">{{item.notice}}</view>
          <view class="fyui-cell__ft">{{item.time}}</view>
        </view>
      </view>
    </view>
  </view>
  <view class="page__ft">
 
  </view>
 
</view>