|
@@ -1,35 +1,46 @@
|
|
|
<template>
|
|
|
- <scroll-view class="scroll-height" :scroll-y="true" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
|
|
|
- <view class="flex padding-tb-sm bg-white">
|
|
|
- <view class="padding-lr-sm text-center" style="width: 50%">设施类型:{{ typeNum || 0 }}</view>
|
|
|
- <view class="divider-default"></view>
|
|
|
- <view class="padding-lr-sm text-center" style="width: 50%">设施总数:{{ facilityNum || 0 }}</view>
|
|
|
- </view>
|
|
|
-
|
|
|
- <view class="flex bg-white margin-lr-sm margin-top-sm padding-sm shadow-default radius" v-for="(data, index) in dataList" :key="index">
|
|
|
- <view class="margin-right-sm" style="margin-top: auto; margin-bottom: auto" @click="handleToDevice(data.id, data.typeName)">
|
|
|
- <image style="width: 40px; height: 40px" :src="data.typeImg ? data.typeImg : '/static/images/404.png'" mode="aspectFill"></image>
|
|
|
+ <oa-scroll
|
|
|
+ class="scroll-height"
|
|
|
+ :refresherLoad="false"
|
|
|
+ :refresherEnabled="true"
|
|
|
+ :refresherDefaultStyle="'none'"
|
|
|
+ :refresherThreshold="44"
|
|
|
+ :refresherBackground="'#f5f6f7'"
|
|
|
+ @refresh="refresh"
|
|
|
+ :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
+ >
|
|
|
+ <template #default>
|
|
|
+ <view class="flex padding-tb-sm bg-white">
|
|
|
+ <view class="padding-lr-sm text-center" style="width: 50%">设施类型:{{ typeNum || 0 }}</view>
|
|
|
+ <view class="divider-default"></view>
|
|
|
+ <view class="padding-lr-sm text-center" style="width: 50%">设施总数:{{ facilityNum || 0 }}</view>
|
|
|
</view>
|
|
|
|
|
|
- <view style="width: 100%" @click="handleToDevice(data.id, data.typeName)">
|
|
|
- <view class="flex margin-bottom-xl">
|
|
|
- <view class="text-dfl text-bold">{{ data.typeName }}</view>
|
|
|
- <view style="font-size: 14px; margin-top: auto; margin-right: auto">({{ data.typeFacilityNum || 0 }})</view>
|
|
|
+ <view class="flex bg-white margin-lr-sm margin-top-sm padding-sm shadow-default radius" v-for="(data, index) in dataList" :key="index">
|
|
|
+ <view class="margin-right-sm" style="margin-top: auto; margin-bottom: auto" @click="handleToDevice(data.id, data.typeName)">
|
|
|
+ <image style="width: 40px; height: 40px" :src="data.typeImg ? data.typeImg : '/static/images/404.png'" mode="aspectFill"></image>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <view class="flex">
|
|
|
- <view style="font-size: 14px; width: 33.33%">正常:{{ data.normalFacilityNum || 0 }}</view>
|
|
|
- <view style="font-size: 14px; width: 33.33%">维修:{{ data.upkeepFacilityNum || 0 }}</view>
|
|
|
- <view style="font-size: 14px; width: 33.33%">关闭:{{ data.closeFacilityNum || 0 }}</view>
|
|
|
+
|
|
|
+ <view style="width: 100%" @click="handleToDevice(data.id, data.typeName)">
|
|
|
+ <view class="flex margin-bottom-xl">
|
|
|
+ <view class="text-dfl text-bold">{{ data.typeName }}</view>
|
|
|
+ <view style="font-size: 14px; margin-top: auto; margin-right: auto">({{ data.typeFacilityNum || 0 }})</view>
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <view class="flex">
|
|
|
+ <view style="font-size: 14px; width: 33.33%">正常:{{ data.normalFacilityNum || 0 }}</view>
|
|
|
+ <view style="font-size: 14px; width: 33.33%">维修:{{ data.upkeepFacilityNum || 0 }}</view>
|
|
|
+ <view style="font-size: 14px; width: 33.33%">关闭:{{ data.closeFacilityNum || 0 }}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
|
|
|
- <view style="margin-top: auto; margin-bottom: auto" @click="handleToMap(data.id)">
|
|
|
- <view class="iconfont ucicon-app-map icon" :style="{ color: proxy.$settingStore.themeColor.color, fontSize: '22px' }"></view>
|
|
|
+ <view style="margin-top: auto; margin-bottom: auto" @click="handleToMap(data.id)">
|
|
|
+ <view class="iconfont ucicon-app-map icon" :style="{ color: proxy.$settingStore.themeColor.color, fontSize: '22px' }"></view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- </scroll-view>
|
|
|
+ </template>
|
|
|
+ </oa-scroll>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -63,6 +74,13 @@ function init() {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * @scrollView刷新数据
|
|
|
+ */
|
|
|
+function refresh() {
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* @设施详情列表跳转点击事件
|
|
|
*/
|