Newer
Older
smart_construction / miniprogram / pages / applog / applog.wxml
zhout on 16 Jun 2020 1 KB 初版提交
<van-row>
	<van-search value="{{ value }}" shape="round" background="#EEB422" placeholder="请输入搜索关键词" bind:focus="onSearch" />
</van-row>
<van-row-group class="log-list" wx:for="{{deviceloglist}}" wx:key="index">

	<van-row>
		<van-col span="4">
			<view wx:if="{{item.welltype==1}}">
				<image class='log-image' src="/images/ys.png"></image>
			</view>
			<view wx:elif="{{item.welltype==2}}">
				<image class='log-image' src="/images/ws.png"></image>
			</view>
			<view wx:elif="{{item.welltype==3}}">
				<image class='log-image' src="/images/rq.png"></image>
			</view>
			<view wx:elif="{{item.welltype==4}}">
				<image class='log-image' src="/images/rl.png"></image>
			</view>
			<view wx:elif="{{item.welltype==5}}">
				<image class='log-image' src="/images/dl.png"></image>
			</view>
			<view wx:elif="{{item.welltype==6}}">
				<image class='log-image' src="/images/js.png"></image>
			</view>
			<view wx:else>
				<image class='log-image' src="/images/bm.png"></image>
			</view>
		</van-col>
		<van-col class="log-info" span="17">
		
				<span class="title">{{item.devcode}} {{item.devicetype}}
				</span>
		
				<span class="subtitle">
					{{item.project}} {{item.installtime}}- {{item.installperson}}
				</span>
	
		</van-col>
		<van-col span="3">
			<image bindtap="add" data-devcode="{{item.devcode}}" class='point-image' src="/images/jia.png"></image>
		</van-col>
	</van-row>
</van-row-group>