<!--pages/module_consult/consultresultmore/consultresultmore.wxml-->
|
<view class="page">
|
<block wx:for="{{result}}" wx:key="i1" wx:for-item="catagory" wx:for-index="i1">
|
<view class="page__hd">
|
<view><text style="color: #57E4CB;">{{keyword}}</text>的{{catagory.typeName}} ></view>
|
</view>
|
<view class="page__bd">
|
<view class="fyui-panel">
|
<block wx:if="{{catagory.typeId === 1}}">
|
<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">
|
{{item.name}}
|
</view>
|
<view class="fyui-box__bd">
|
<view class="fyui-box__content tag">相关行业 -> {{item.fileIndustry}}</view>
|
<view class="fyui-box__content des">{{item.des}}</view>
|
</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>
|
<block wx:else="{{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 class="page__ft"></view>
|
</view>
|