riku
2026-01-22 f14ea940fb32105de8b592992e3f53c62f31d84d
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
<!--pages/mConsult/consultdetailitem/consultdetailitem.wxml-->
<view class="page">
  <!-- <view class="page__hd">
      <view class="f-tag">发布时间:{{content.mfReleaseDate}}</view>
  </view> -->
  <view class="page__bd">
    <view class="fyui-panel">
      <rich-text class="f-title" nodes="{{content.miItemContent}}"></rich-text>
 
      <!-- <view>简称:{{content.mfShortName}}</view> -->
 
    </view>
 
    <view class="fyui-panel">
      <view>关键词:{{content.miKeyword}}</view>
    </view>
 
    <view class="fyui-panel">
      <view>来源:《{{content.mfName}}》</view>
      <view>章节:{{content.miChapterName}}</view>
      <view>条目:{{content.miItemName}}</view>
    </view>
  </view>
  <view class="page__ft">
    <block wx:for="{{result}}" wx:key="i1" wx:for-item="catagory" wx:for-index="i1">
      <view class="page__hd">
        <view>相关条目 ></view>
      </view>
      <view class="page__bd">
        <view class="fyui-panel">
          <block wx:if="{{catagory.typeId === 2}}">
            <view wx:for="{{catagory.contents}}" wx:key="i2" wx:for-index="i2" data-index="{{i1}},{{i2}}" bindtap="gotoDetail">
              <view class="fyui-box  fyui-box__text">
                <view class="fyui-box__hd">
                  <rich-text nodes="{{item.des}}" class="fyui-box__content des subtitle"></rich-text>
                </view>
                <view class="fyui-box__bd">
                  <!-- <view class="fyui-box__content tag">相关行业 -> {{item.fileIndustry}}</view> -->
                  <text class="tag2">来源:《{{item.fileName}}》 {{item.chapterName}}{{item.name ? ' ' + item.name : ''}}</text>
                </view>
                <view class="fyui-box__ft">
                  <text class="keyword">关键词:</text>
                  <view class="keyword-item"><text wx:for="{{item.keywords}}" wx:for-index="i" wx:for-item="word" wx:key="i">{{word}}</text></view>
                </view>
              </view>
            </view>
          </block>
        </view>
      </view>
    </block>
  </view>
</view>