123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- <template>
- <oa-scroll
- customClass="deviceDetails-container scroll-height"
- :isSticky="false"
- :refresherLoad="false"
- :refresherEnabled="false"
- :refresherEnabledTitle="false"
- :refresherDefaultStyle="'none'"
- :refresherThreshold="44"
- :refresherBackground="'#f5f6f7'"
- :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
- >
- <template #default>
- <view class="flex bg-white p15 mb15">
- <image style="width: 40px; height: 40px; margin: auto 15px auto 0" :src="'/static/images/404.png'" mode="aspectFill"></image>
- <view style="margin: auto auto auto 0">
- <view style="font-size: 15px"> {{ commonStore.deviceDetailsArray.deviceName }} </view>
- </view>
- <view style="margin: auto 0 auto 0">
- <view :style="{ fontSize: '15px', color: commonStore.deviceDetailsArray.deviceStatus == 1 ? '#16bf00' : 'red' }">
- {{ commonStore.deviceDetailsArray.deviceStatus == 1 ? "在线" : "离线" }}
- </view>
- </view>
- </view>
- <view class="bg-white p15 mb15">
- <uni-section class="block mb10" title="基本信息" type="line"></uni-section>
- <view class="tableType3 p0">
- <u-empty v-if="dataList.length <= 0" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
- <u-row v-for="po in dataList" :key="po">
- <u-col span="4">
- <view style="text-align: right; padding: 0px 5px 0px 5px">{{ po.title }}</view>
- </u-col>
- <u-col span="8">
- <view style="text-align: left; padding: 0px 5px 0px 5px">{{ po.value }}</view>
- </u-col>
- </u-row>
- </view>
- </view>
- <view class="bg-white p15 mb15">
- <!-- 分段器组件 -->
- <view class="app-subsection">
- <u-subsection :list="list" :current="tabPosition" inactiveColor="#303133" :activeColor="proxy.$settingStore.themeColor.color" @change="tabPositionChange" style="width: 100%"></u-subsection>
- </view>
- <view v-if="tabPosition == 1">
- <view class="flex" :style="{ color: proxy.$settingStore.themeColor.color }">
- <view class="ml10" style="margin-left: auto" @click="open">选择时间</view>
- <view class="ml10" @click="modalShow = true">筛选</view>
- </view>
- <chart :currentDateList="currentDateList"></chart>
- <!-- <view class="tableType1">
- <u-row>
- <u-col span="12">
- <view>指数</view>
- </u-col>
- </u-row>
- <u-row v-for="(co, index) in content4" :key="index">
- <u-col span="12">
- <view>{{ co.name1 }}</view>
- </u-col>
- </u-row>
- </view> -->
- </view>
- <!-- -->
- <view v-if="tabPosition == 0">
- <view class="flex" style="flex-wrap: wrap; line-height: 36px">
- <view style="width: 50%" v-for="realTime in realTimeDataList" :key="realTime">
- {{ realTime.attributeName + ":" }}
- {{ realTime.value }}
- {{ realTime.attributeUnit ? realTime.attributeUnit : "" }}
- </view>
- </view>
- </view>
- <view v-if="tabPosition == 2">
- <br/>
- <u-row
- gutter="10"
- >
- <u-col span="3" v-for="(item, index) in deviceCotrolList" :key="index">
- <view class="demo-layout" @click="goAction(item)">{{ item.commandName }}</view>
- </u-col>
-
- </u-row>
- <br/>
- <br/>
- <br/>
- </view>
- </view>
- <u-modal :show="modalShow" @confirm="modalShow = false" @close="modalShow = false" :closeOnClickOverlay="true">
- <view class="slot-content">
- <u-checkbox-group
- v-model="checkboxValueList"
- @change="
- (val) => {
- checkboxChange(val);
- }
- "
- :size="14"
- :activeColor="proxy.$settingStore.themeColor.color"
- >
- <u-checkbox class="mb10" v-for="option in checkboxDataList" :key="option" :label="option.attributeName" :name="option.attributeCode"> </u-checkbox>
- </u-checkbox-group>
- </view>
- </u-modal>
- <uni-calendar ref="calendar" class="uni-calendar--hook" :clearDate="false" :insert="false" :lunar="false" :range="true" @confirm="calendarConfirm" />
- </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,watch } from "vue";
- /*----------------------------------接口引入-----------------------------------*/
- import { dmpDeviceInfo,dmpProductAttribute, historyMetrics, last,getList } from "@/api/business/fireIot/deviceManage.js";
- /*----------------------------------组件引入-----------------------------------*/
- import chart from "./chart.vue";
- /*----------------------------------store引入-----------------------------------*/
- import { useStores, commonStores } from "@/store/modules/index";
- /*----------------------------------公共方法引入-----------------------------------*/
- /*----------------------------------公共变量-----------------------------------*/
- const { proxy } = getCurrentInstance();
- const commonStore = commonStores();
- /*----------------------------------变量声明-----------------------------------*/
- const dataList = ref([
- {
- title: "设备类型",
- value: commonStore.deviceDetailsArray.productName,
- },
- {
- title: "设备编号",
- value: commonStore.deviceDetailsArray.deviceId,
- },
- {
- title: "物联网卡号",
- value: commonStore.deviceDetailsArray.simCode,
- },
- {
- title: "安装位置",
- value: commonStore.deviceDetailsArray.installAddress,
- },
- {
- title: "添加时间",
- value: commonStore.deviceDetailsArray.createdTime ? commonStore.deviceDetailsArray.createdTime.replace("T", " ") : "",
- },
- ]);
- const checkboxDataList = ref([]); //复选框渲染数据存储
- const checkboxValueList = ref([]); //复选框值数据存储
- const realTimeDataList = ref([]); //实时数据存储
- const tableDataList = ref([]); //表格数据存储
- const currentDateList = ref([]); //图表数据存储
- const modalShow = ref(false); //模态框显示隐藏
- const calendar = ref(null);
- const calendarStartTime = ref(""); //日历开始时间
- const calendarEndTime = ref(""); //日历结束时间
- const productId = ref(0); //产品id
- const deviceId = ref(0); //设备id
- const productCode = ref(""); //产品code
- const deviceCotrolList = ref([]) //设备调试数据存储
- function open() {
- calendar.value.open();
- }
- /**
- * @初始化
- */
- /**
- * @详情查询
- * @api接口查询
- */
- function dmpDeviceInfoApi() {
- dmpDeviceInfo({ productId: productId.value, deviceId:deviceId.value,current: 1, size: 10 }).then((requset) => {
- if (requset.status === "SUCCESS") {
- dataList.value[0].value = requset.data.records[0].deviceName;
- dataList.value[1].value = requset.data.records[0].deviceId;
- dataList.value[2].value = requset.data.records[0].simCode ;
- dataList.value[3].value = requset.data.records[0].installAddress
- dataList.value[4].value = requset.data.records[0].createdTime ? requset.data.records[0].createdTime.replace("T", " ") : requset.data.records[0].createdTime;
- productCode.value = requset.data.records[0].productCode;
- }
- });
- }
- function init() {
- dmpDeviceInfoApi();
- dmpProductAttribute({
- current: 1,
- size: 100,
- attributeName: "",
- productId: productId.value,
- deviceId:deviceId.value,
- }).then((requset) => {
- if (requset.status === "SUCCESS") {
- checkboxDataList.value = requset.data.records;
- realTimeDataList.value = requset.data.records;
- var array = [];
- requset.data.records.forEach((el) => {
- array.push(el.attributeCode);
- });
- last({
- deviceId: commonStore.deviceDetailsArray.deviceId,
- metrics: array,
- }).then((requsets) => {
- if (requsets.status === "SUCCESS") {
- realTimeDataList.value.forEach((el) => {
- el.value = 0;
- requsets.data.forEach((e) => {
- if (el.attributeCode === e.metric) {
- el.value = e.value;
- }
- });
- });
- }
- });
- }
- });
- }
- function deviceControlData(){
- getList({
- current: 1,
- size: 10,
- productCode:productCode.value,
- }).then((response) => {
- deviceCotrolList.value=response.data.records
- // console.log(response.data.records)
- // dataList.value = response.data.records;
- // state.total = response.data.total;
- // state.loading = false;
- });
- }
- /**
- * @tabs切换change事件
- */
- const list = ref(["实时数据", "历史数据","设备调试"]);
- const tabPosition = ref(0);
- function tabPositionChange(index) {
- tabPosition.value = index;
- }
- /**
- * @checkbox选中change事件
- */
- function checkboxChange(value) {
- checkboxValueList.value = value;
- historyMetricsApi();
- }
- /**
- * @日历确认事件
- */
- function calendarConfirm(e) {
- calendarStartTime.value = e.range.before;
- calendarEndTime.value = e.range.after ? e.range.after : e.range.before;
- historyMetricsApi();
- }
- /**
- * @设备多属性历史数据请求
- * @api接口请求
- */
- function historyMetricsApi() {
- historyMetrics({
- startTime: calendarStartTime.value,
- endTime: calendarEndTime.value,
- deviceId: commonStore.deviceDetailsArray.deviceId,
- deviceType: commonStore.deviceDetailsArray.deviceType,
- metrics: checkboxValueList.value,
- }).then((requset) => {
- if (requset.status === "SUCCESS") {
- currentDateList.value = requset.data;
- checkboxDataList.value.forEach((el) => {
- currentDateList.value.forEach((e) => {
- if (el.attributeCode == e.metric) {
- e.attributeName = el.attributeName;
- }
- });
- });
- currentDateList.value.forEach((el) => {
- if (el.metricItems.length > 0) {
- el.data = [];
- el.metricItems.forEach((e) => {
- el.data.push([e.timestamp, e.value]);
- });
- } else {
- el.data = [];
- }
- });
- }
- });
- }
- function goAction(row) {
- proxy.$tab.navigateTo(`/pages/business/fireIot/deviceManage/components/goAction?productCode=${row.productCode}&commandCode=${row.commandCode}&deviceId=${deviceId.value}`);
- }
- onReady(() => {});
- onShow(() => {
- //调用系统主题颜色
- proxy.$settingStore.systemThemeColor([1]);
- });
- onLoad((options) => {
- if ("deviceId" in options) {
- deviceId.value = options.deviceId;
- }
- if ("productId" in options) {
- productId.value = parseInt(options.productId);
- init();
- }
- });
- watch(
- () => tabPosition.value,
- (val) => {
- if(val==2){
- deviceControlData()
- }
-
- }
- );
- </script>
- <style lang="scss" scoped>
- .app-subsection {
- display: flex;
- margin-bottom: 10px;
- padding: 0px 5rem;
- }
- .demo-layout{
- border:1px solid #e0e0e0;
- padding:15px;
- box-shadow:0px 0px 12px rgba(0, 0, 0, 0.12);
- }
- </style>
|