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.
		
		
		
		
		
			
		
			
				
					
					
						
							26 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							1.1 KiB
						
					
					
				| <!--pages/article/index.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}}"></image> | |
|     </view> | |
|   </view> | |
|   <!-- 打算赋能中心用这个,不过下面要删掉,用block试试?--> | |
|   <view class="page_bd {{showBtn ? 'page_bd_short':''}}"> | |
|     <rich-text nodes="{{nodes}}"></rich-text> | |
|     <view class="read_collectNum"> | |
|       <view class="read_num">阅读:{{readNum}}</view> | |
|       <view class="collect_num">收藏:{{collectNum}}</view> | |
|     </view> | |
|   </view> | |
|   <view class="page_footer" wx:if="{{showBtn}}"> | |
|     <e-ibutton title="{{disable ? '已报名' : '在线报名'}}" bind:onTap="onlineSubmit" disable="{{disable}}"/> | |
|   </view> | |
|    | |
| </view>
 | |
| 
 |