<!--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>
|