39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
<!--pages/s-task/s-task.wxml-->
|
|
<view class="container">
|
|
<view class="task-list">
|
|
<view style="margin-top: 10px;">
|
|
<t-input prefixIcon="search" bindchange="getName" placeholder="请输入站点名称" />
|
|
</view>
|
|
<view class="task-item" wx:for="{{siteData}}" bindtap="details" data-id="{{item.id}}" data-code="{{item.code}}" data-code="{{item.code}}">
|
|
<view class="task-head">
|
|
<image src="../../assets/task_icon01.png" />
|
|
<view class="r-task-head">
|
|
<text>{{item.name}}</text>
|
|
<view class="demo__card" wx:for="{{icons}}" wx:for-item="val" wx:key="index">
|
|
<t-icon name="{{val}}" size="40rpx" data-name="{{val}}" bind:click="onIconTap" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="t-task-content">
|
|
<view class="t-task-base">
|
|
<text>{{item.technology == null ? '' : item.technology}} 丨 {{item.specifications == null ? '' : item.specifications}}</text>
|
|
<t-tag variant="light" wx:if="{{item.status == '1'}}" theme="success">在线</t-tag>
|
|
<t-tag variant="light" wx:if="{{item.status == '0'}}" theme="warning">离线</t-tag>
|
|
</view>
|
|
<view class="t-task-base">
|
|
<text>地址:{{item.latitude == null ? '' : item.latitude}} , {{item.longitude == null ? '' : item.longitude}}</text>
|
|
<t-button
|
|
theme="primary"
|
|
icon="location"
|
|
size="small"
|
|
bindtap="navigation"
|
|
data-longitude="{{item.longitude}}"
|
|
data-latitude="{{item.latitude}}"
|
|
data-name="{{item.name}}"
|
|
>导航</t-button>
|
|
</view>
|
|
<text class="site">{{item.townName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |