52 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			52 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
| {layout name="layout"/}
 | |
| {php}
 | |
| use app\model\Category;
 | |
| use app\model\PositionModel;
 | |
| $childrenMenu = Category::getChildrenByParentId($topCategoryId);
 | |
| $joinList = PositionModel::getByCategoryId(Category::CATEGORY_JOIN_BLOCK,true,99999);
 | |
| {/php}
 | |
| 
 | |
| {include file="public/about_second" /}
 | |
| 
 | |
| <!-- 简介 -->
 | |
| <div class="pull-section pull-profile-bg wow fadeInUp">
 | |
| 	<div class="company-profile company-culture join-us flex w1360">
 | |
| 		<div class="txt">
 | |
| 			<div class="profile-title culture-title project-title">
 | |
| 				<p class="capitalize font-helvetica color-blue wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
 | |
| 					{$blocks['join']['value']}</p>
 | |
| 				<strong class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">{$blocks['join']['title']}</strong>
 | |
| 			</div>
 | |
| 			<div class="profile-info culture-info wow fadeInUp"  data-wow-duration="0.8s" data-wow-delay="0">
 | |
| 				{:nl2br($blocks['info']['value'])}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
 | |
| 			<p>
 | |
| 				<img src="{$blocks['qr_1']['value']??''}" alt="{$blocks['qr_1']['alt']}">
 | |
| 				<span class="wap-show"><ins class="pc-show">“中正物业”</ins>{$blocks['qr_1_title']['value']??''}</span>
 | |
| 			</p>
 | |
| 			<p>
 | |
| 				<img src="{$blocks['qr_2']['value']??''}" alt="{$blocks['qr_2']['alt']}">
 | |
| 				<span class="wap-show"><ins class="pc-show">“中正物业”</ins>{$blocks['qr_2_title']['value']??''}</span>
 | |
| 			</p>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| <!-- 职位列表 -->
 | |
| <div class="pull-section pull-content-bg content-bg-white join-content-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
 | |
| 	<div class="recruit-list flex w1360">
 | |
| 		{foreach $joinList as $joinItem}
 | |
| 		<a href="/position/{$joinItem.id}.html" class="recruit-item bg-col-f5 flex wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
 | |
| 			<div class="txt">
 | |
| 				<h2 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">{$joinItem.title}</h2>
 | |
| 				<ins class="bg-col-blue wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"></ins>
 | |
| 				<p class="color-66 clips1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">工作地点:{$joinItem.address}</p>
 | |
| 				<p class="color-66 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">发布时间:{:date('Y-m-d', $joinItem.create_time)}</p>
 | |
| 			</div>
 | |
| 			<div class="img bg-col-white flex"><img src="__STATIC__/web/images/icon/icon-recruit.png" alt="{$joinItem.title}"></div>
 | |
| 		</a>
 | |
| 		{/foreach}
 | |
| 	</div>
 | |
| </div> |