123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- <template>
- <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="`${productName}(${total})`" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
- <template #left>
- <view class="u-navbar__content__left__item">
- <u-icon name="arrow-left" size="20" color="#000"></u-icon>
- </view>
- </template>
- </u-navbar>
- <oa-scroll
- customClass="scroll-height"
- :pageSize="pageSize"
- :total="total"
- :isSticky="false"
- :refresherLoad="true"
- :refresherEnabled="true"
- :refresherDefaultStyle="'none'"
- :refresherThreshold="44"
- :refresherBackground="'#f5f6f7'"
- @load="load"
- @refresh="refresh"
- :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
- >
- <template #default>
- <view class="deviceDetailsList-container">
- <view class="flex bg-white p10" style="position: relative">
- <u--input
- style="width: 100%"
- v-model="deviceName"
- placeholder="请输入设备名称"
- prefixIcon="search"
- prefixIconStyle="font-size: 22px;color: #909399"
- customStyle="height:30px;background-color:#f5f6fa;"
- @confirm="dmpDeviceInfoApi()"
- clearable
- ></u--input>
- <view class="ml10" style="margin-top: auto; margin-bottom: auto; white-space: nowrap" @click="dropdownShow = !dropdownShow">筛选</view>
- </view>
- <oa-dropdown :dropdownShow="dropdownShow" :closeOnClickOverlay="true" @close="dropdownShow = false">
- <template #content>
- <u-radio-group v-model="radioValue" placement="column" iconPlacement="right" @change="radioChange">
- <u-radio v-for="ra in radioList" :key="ra" :activeColor="proxy.$settingStore.themeColor.color" :label="ra.label" :name="ra.value"></u-radio>
- </u-radio-group>
- </template>
- </oa-dropdown>
- <view class="menu-list m0">
- <view class="list-cell list-cell-arrow" v-for="(base, index) in dataList" :key="index" @click="handleToDevice(base)">
- <view class="menu-item">
- <image class="image-bg" style="width: 80rpx; height: 80rpx; margin: auto 10px auto 0" src="@/static/images/deviceManage/1.png"></image>
- <view style="width: calc(100% - 51px); display: flex; flex-flow: row wrap; padding-right: 10px">
- <view class="deviceHeader">
- <view class="deviceName text-ellipsis">设备编号:{{ base.deviceId }}</view>
- <view class="deviceStatus" v-if="base.deviceStatus == 1" style="background-color: #16bf00"> 在线 </view>
- <view class="deviceStatus" v-if="base.deviceStatus == 2" style="background-color: red"> 离线 </view>
- </view>
- <view class="deviceContent">设备名称:{{ base.deviceName }}</view>
- <view class="deviceContent">安装位置:{{ base.installAddress }}</view>
- <!-- <view class="deviceContent">激活状态:{{ base.serviceStatus == 1 ? "未激活" : base.serviceStatus == 2 ? "已激活" : "禁用" }}</view> -->
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- </oa-scroll>
- </template>
- <script setup>
- import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
- import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
- import { useStores, commonStores } from "@/store/modules/index";
- import { dmpDeviceInfo } from "@/api/business/fireIot/deviceManage.js";
- const { proxy } = getCurrentInstance();
- const commonStore = commonStores();
- const dataList = ref([]);
- const deviceName = ref("");
- const productId = ref("");
- const productName = ref("");
- const pageSize = ref(20);
- const current = ref(1);
- const total = ref(0);
- const data = reactive({
- radioList: [
- { label: "全部", value: "" },
- { label: "在线", value: "1" },
- { label: "离线", value: "2" },
- ],
- radioValue: "1",
- dropdownShow: false,
- });
- const { radioList, radioValue, dropdownShow } = toRefs(data);
- /**
- * @页面初始化
- */
- function init() {
- dmpDeviceInfoApi();
- }
- /**
- * @列表查询
- * @api接口查询
- */
- function dmpDeviceInfoApi() {
- dmpDeviceInfo({ productId: productId.value, deviceName: deviceName.value, current: current.value, size: pageSize.value, deviceStatus: radioValue.value }).then((requset) => {
- if (requset.status == "SUCCESS") {
- dataList.value = requset.data.records;
- total.value = requset.data.total;
- }
- });
- }
- /**
- * @设备详情跳转点击事件
- */
- function handleToDevice(array) {
- proxy.$tab.navigateTo(`/pages/business/fireIot/deviceManage/components/deviceDetails?productId=${array.productId}&deviceId=${array.deviceId}`);
- commonStore.deviceDetailsArray = array;
- commonStore.deviceDetailsArray.productName = productName.value;
- }
- /**
- * @单选change事件
- */
- function radioChange(e) {
- // console.log(e,'e')
- radioValue.value = e;
- dmpDeviceInfoApi();
- dropdownShow.value = false;
- }
- /**
- * @scrollView加载数据
- */
- function load() {
- pageSize.value += 10;
- init();
- }
- /**
- * @scrollView刷新数据
- */
- function refresh() {
- deviceName.value = "";
- pageSize.value = 20;
- init();
- }
- onReady(() => {});
- onShow(() => {
- //调用系统主题颜色
- proxy.$settingStore.systemThemeColor([1]);
- });
- onLoad((options) => {
- if ("productName" in options) {
- productName.value = options.productName;
- }
- if ("id" in options) {
- productId.value = parseInt(options.id);
- init();
- }
- });
- </script>
- <style lang="scss" scoped>
- .deviceDetailsList-container {
- .deviceHeader {
- min-width: 100%;
- font-size: 15px;
- display: flex;
- white-space: nowrap;
- .deviceName {
- width: 75%;
- color: #000;
- }
- .deviceStatus {
- max-width: 30%;
- margin-left: 20px;
- font-size: 12px;
- color: #ffffff;
- padding: 0 5px;
- border-radius: 20px;
- line-height: 20px;
- }
- }
- .deviceContent {
- min-width: 100%;
- margin-top: 10px;
- font-size: 14px;
- color: rgb(102, 102, 102);
- }
- }
- </style>
|