riku
2022-10-10 437144f41c74505d362a5214a18cec3d01b3ce4b
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!--pages/m_consult/consultdetailcase/consultdetailcase.wxml-->
<view class="page">
  <view class="page__hd">
    <view class="fyui-box  fyui-box__text">
      <view class="fyui-box__hd">
        <view>{{case.ecTitle}}</view>
      </view>
      <view class="fyui-box__bd">
        <view class="q-tag" bindtap="openDialog">
          <block wx:for="{{caseTag}}" wx:key="index">
            <image src="{{item.icon}}"></image>
          </block>
        </view>
      </view>
      <view class="fyui-box__ft" style="flex-direction: column;">
        <view class="flex-h" style="justify-content: flex-start;"><image class="image-16" src="/res/icons/locate.png"></image>案发地址:{{case.ecProvinceName + case.ecCityName}}</view>
        <view class="flex-h" style="justify-content: flex-start;"><image class="image-16" src="/res/icons/time.png"></image>案发时间:{{case.ecOccurDate}}</view>
      </view>
    </view>
  </view>
  <view class="page__bd">
    <view class="fyui-panel flex-h">
      <view class="flex-h" style="justify-content: flex-start;">
        <image class="image-16" src="/res/icons/case_forfeit.png"></image>
        罚款数额
      </view>
      <view style="color: red;">{{case.ecForfeit}}万元</view>
    </view>
    <view class="fyui-panel">
      <view>案例类别:{{case.ecType}}</view>
      <view>要素类别:{{case.ecEpItemType}}</view>
      <view>要素子类:{{case.ecEpItemSubtype}}</view>
    </view>
    <view class="fyui-panel">
      <view class="case-type">案情简介</view>
      <view class="case-image-group" wx:for="{{case.ecAppendixUrl}}" wx:key="index">
        <image src="{{item}}" mode="widthFix" bindtap="previewImage" data-index="{{index}}"></image>
        <view>{{case.ecAppendixText[index]}}</view>
      </view>
      <rich-text nodes="{{case.ecSummary}}"></rich-text>
    </view>
    <view class="fyui-panel" style="background-color: #FFF8DE;">
      <view class="case-type" style="background-color: #FFEBA6;">查处情况</view>
      <rich-text nodes="{{case.ecExamined}}"></rich-text>
    </view>
    <view class="fyui-panel" style="background-color: #E6F6FC;">
      <view class="case-type" style="background-color: #AFEAFD;">案例意义</view>
      <rich-text nodes="{{case.ecMeaning}}"></rich-text>
    </view>
    <view class="fyui-panel" style="background-color: #E6FCF4;">
      <view class="case-type" style="background-color: #AAFFE0;">案件启示</view>
      <rich-text nodes="{{case.ecEnlightenment}}"></rich-text>
    </view>
    <view class="fyui-panel q-link-group">
      <view wx:if="{{case.ecIsAssociated}}" class="q-link">
        <image src="/res/icons/link_1.png"></image>
        相关条目
      </view>
    </view>
  </view>
  <view class="page__ft">
    <mp-loading duration="{{900}}" type="dot-gray" show="{{showloading}}" animated="{{true}}"></mp-loading>
  </view>
 
  <mp-actionSheet bindactiontap="btnClick" show="{{showDialog}}" actions="{{groups}}" showCancel="{{false}}">
    <view slot="{{'actionSlot' + '1'}}" class="custom-action">
      <image class="custom-action__bg" src="/res/icons/bg_star.png"></image>
      <block wx:for="{{caseTag}}" wx:key="index">
        <view class="custom-action__tag" style="{{questionTag.length == 1 ? 'flex: 1;' : ''}}">
          <image src="{{item.icon}}"></image>
          <view>{{item.name}}</view>
        </view>
      </block>
    </view>
  </mp-actionSheet>
 
  <my-gallery hide-on-click="{{true}}" show-delete="{{false}}" show="{{showPreview}}" img-urls="{{previewImageUrls}}" current="{{previewCurrent}}" remark="{{remark}}"></my-gallery>
</view>