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.
32 lines
1.4 KiB
32 lines
1.4 KiB
<!--pages/topics/attract/oceanDetail/index.wxml-->
|
|
<import src="../../../../components/wxParse/wxParse.wxml" />
|
|
<view class="container">
|
|
<view class="page_hd">
|
|
<view class="artice_title">{{title}}</view>
|
|
<view class="artice_info">
|
|
<text class="artice_origin">{{origin || ''}}</text>
|
|
<text class="artice_time">{{date || ''}}</text>
|
|
<image class="artice_collect" src="{{isStar ? star : unStar}}" bindtap="onClickCollect" ></image>
|
|
</view>
|
|
<view class="artice_image" wx:if="{{image.length > 0}}">
|
|
<image class="title_image" src="{{image}}" mode="widthFix"></image>
|
|
</view>
|
|
</view>
|
|
<!-- 打算赋能中心用这个,不过下面要删掉,用block试试?-->
|
|
<view class="page_bd {{showBtn ? 'page_bd_short':''}}">
|
|
<!-- <rich-text nodes="{{nodes}}"></rich-text> -->
|
|
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
|
|
<view class="read_collectNum">
|
|
<view class="read_num">阅读:{{readNum}}</view>
|
|
<view class="collect_num">收藏:{{collectNum}}</view>
|
|
</view>
|
|
</view>
|
|
<!--关联链接 //1 报需求 2 来活动-->
|
|
<block wx:if="{{associationType}}">
|
|
<view class="link-title">点击“关联链接”填报需求</view>
|
|
<view class="link-bottom" bindtap="goLinkPage" data-association="{{associationType}}">
|
|
<image src="/images/common/link.png" class="icon-link"></image>
|
|
<view>关联链接</view>
|
|
</view>
|
|
</block>
|
|
</view>
|