| | |
| | | <image src="/res/icons/qmark2.png" class="mark"></image> |
| | | </view> |
| | | <view class="fyui-panel"> |
| | | <view class="fyui-panel_title">得分解读</view> |
| | | <view class="fyui-panel_title">自评解读</view> |
| | | <view class="fyui-panel_desc">{{creditText}}</view> |
| | | </view> |
| | | <!-- 得分详情 --> |
| | |
| | | <!-- 失分条目 --> |
| | | <view class="fyui-panel fyui-panel__max"> |
| | | <view class="fyui-panel_title">自评诊断</view> |
| | | <view wx:if="{{losePoints.length > 0}}"> |
| | | 本次测评主要失分类别为<text style="color: orange;font-weight: 600;font-size: 16px;" wx:for="{{losePointsItem}}" wx:key="index">{{index > 0 ? "、" : ""}}{{item}}</text> |
| | | 等共计<text style="color: orange;font-weight: 600;font-size: 18px;">{{losePoints.length}}</text>项,具体问题诊断及建议如下: |
| | | </view> |
| | | <view wx:else="">您本次自评满分,暂无诊断建议。</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 class="fyui-panel_title">{{index + 1}}. 【<text style="color: orange;">{{item.baseRule}}</text>】{{item.name}}</view> |
| | | <block wx:for="{{item.itemlist}}" wx:for-item="rule" wx:key="index"> |
| | | <view class="fyui-panel_desc"> |
| | | <view>问题:</view>{{rule.ruleName}} |
| | | </view> |
| | | <view class="fyui-panel_desc"> |
| | | <view>扣分:</view><text style="color: orange;">{{rule.score}}分</text> |
| | | </view> |
| | | <view class="fyui-panel_desc"> |
| | | <view>建议:</view>{{rule.remark}} |
| | | </view> |
| | | </block> |
| | | </view> |
| | | </block> |
| | | </view> |