category.html 1.14 KB
<ion-view view-title="{{category_name}}">
	<ion-content>
		<!-- <div class="list">
			<label class="item item-input item-stacked-label">
				<span class="input-label">企业名称</span>
				<input type="text" placeholder="企业名称全拼">
			</label>
			<label class="item item-input item-stacked-label">
				<span class="input-label">联系电话</span>
				<input type="text" placeholder="手机号/座机号">
			</label>
			<label class="item item-input item-stacked-label">
				<span class="input-label">检测内容</span>
				<textarea name="" placeholder="描述一下需要检测的产品和检测的项目" rows="10"></textarea>
			</label>
		</div>
		<div class="padding">
			<button class="button button-block button-positive">提交</button>
		</div> -->
		<div class="post-detail padding" ng-bind-html="post.detail" ng-if="posts.length == 1"></div>
		<ion-list ng-if="posts.length > 1">
			<a class="item item-thumbnail-left" ng-repeat="post in posts" href="#/app/{{channel}}/{{category}}/{{post.flag}}">
				<img ng-src="{{post.img}}">
				<h2>{{post.title}}</h2>
				<p>{{post.sub_detail}}</p>
			</a>
		</ion-list>
	</ion-content>
</ion-view>