市北人才赋能平台 --小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.5 KiB

<!--pages/resource/detail/index.wxml-->
<import src="../../../components/wxParse/wxParse.wxml" />
<view class="title">
<view class="left">
<view class="articleImg">
<image src="{{detail.titlePic ? detail.titlePic : titlePic}}" bindtap="previewImage" mode="widthFix"
style="width:100%;"></image>
</view>
<view class="content">
<view class="tit">{{detail.title}}</view>
<view class="r_type">{{detail.typeName}}</view>
</view>
</view>
<view class="right">
<image class="artice_collect" src="{{isCollect ? star : unStar}}" bindtap="onClickCollect"></image>
</view>
</view>
<view class="text">
<!-- <rich-text nodes="{{detail.content}}"></rich-text> -->
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
</view>
<!-- <web-view src="https://m.qdjqt.com/#/?xihaian=&VNK=e92927fe&source=productList"></web-view> -->
<!--机构活动-->
<block wx:if="{{activityList.length>0}}">
<view class="section_line"></view>
<view class="resource-activity-lists">
<view class="list-title">机构活动</view>
<block wx:for="{{activityList}}" wx:key="{{index}}">
<cell activityId="{{item.activityId}}" title="{{item.title}}" activityImg="{{item.activityImg}}"
time="{{item.time}}" commentNum="{{item.commentNum}}" bind:clickListItem="clickListItem"
dataIndex="{{item.dataIndex}}" />
</block>
</view>
</block>
<block wx:if="{{show}}">
<view class="publish" bindtap="onTap">
4 years ago
<text>报需求</text>
<!-- <text>我要</text>
<text>赋能</text> -->
</view>
</block>