riku
2022-08-09 87f6bb4bcb2446b9c9065b58391ae400cd358b77
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
<!--pages/gradedetail/gradedetail.wxml-->
<view class="page">
  <view class="banner-bg"></view>
  <view class="page__bd">
    <!-- 雷达图 -->
    <view class="radar-panel">
      <ec-canvas id="mychart-dom-radar" canvas-id="mychart-radar" ec="{{ ec }}"></ec-canvas>
    </view>
    <!-- 得分解读 -->
    <view class="marks">
      <image src="/res/icons/qmark1.png" class="mark"></image>
      <image src="/res/icons/qmark2.png" class="mark"></image>
    </view>
    <view class="fyui-panel">
      <view class="fyui-panel_title">得分解读</view>
      <view class="fyui-panel_desc">{{creditText}}</view>
    </view>
    <!-- 得分详情 -->
    <view class="fyui-panel gradient">
      <view class="fyui-panel_title">得分详情</view>
      <block wx:for="{{gradeDetails}}" wx:key="index">
        <view class="flex-h">
          <view>{{item.name}}</view>
          <view>{{item.detail}}</view>
        </view>
      </block>
    </view>
    <!-- 失分条目 -->
    <view class="fyui-panel fyui-panel__max">
      <view class="fyui-panel_title">自评诊断</view>
      <block wx:for="{{losePoints}}" wx:key="index">
        <view class="{{index !=0 ? 'first' : ''}}">
          <view class="fyui-panel_title">{{index + 1}}. {{item.ruleName}}</view>
          <view class="fyui-panel_desc">细则:<text style="color: orange;">{{item.score}}分</text></view>
          <view class="fyui-panel_desc">{{item.remark}}</view>
        </view>
      </block>
    </view>
  </view>
  <view class="page__ft">
 
  </view>
</view>