deviceDetails.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <oa-scroll
  3. customClass="deviceDetails-container scroll-height"
  4. :isSticky="false"
  5. :refresherLoad="false"
  6. :refresherEnabled="false"
  7. :refresherEnabledTitle="false"
  8. :refresherDefaultStyle="'none'"
  9. :refresherThreshold="44"
  10. :refresherBackground="'#f5f6f7'"
  11. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  12. >
  13. <template #default>
  14. <view class="flex bg-white p15 mb15">
  15. <image style="width: 40px; height: 40px; margin: auto 15px auto 0" :src="'/static/images/404.png'" mode="aspectFill"></image>
  16. <view style="margin: auto auto auto 0">
  17. <view style="font-size: 15px"> {{ commonStore.deviceDetailsArray.deviceName }} </view>
  18. </view>
  19. <view style="margin: auto 0 auto 0">
  20. <view :style="{ fontSize: '15px', color: commonStore.deviceDetailsArray.deviceStatus == 1 ? '#16bf00' : 'red' }">
  21. {{ commonStore.deviceDetailsArray.deviceStatus == 1 ? "在线" : "离线" }}
  22. </view>
  23. </view>
  24. </view>
  25. <view class="bg-white p15 mb15">
  26. <uni-section class="block mb10" title="基本信息" type="line"></uni-section>
  27. <view class="tableType3 p0">
  28. <u-empty v-if="dataList.length <= 0" text="暂无数据" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png"> </u-empty>
  29. <u-row v-for="po in dataList" :key="po">
  30. <u-col span="4">
  31. <view style="text-align: right; padding: 0px 5px 0px 5px">{{ po.title }}</view>
  32. </u-col>
  33. <u-col span="8">
  34. <view style="text-align: left; padding: 0px 5px 0px 5px">{{ po.value }}</view>
  35. </u-col>
  36. </u-row>
  37. </view>
  38. </view>
  39. <view class="bg-white p15 mb15">
  40. <!-- 分段器组件 -->
  41. <view class="app-subsection">
  42. <u-subsection :list="list" :current="tabPosition" inactiveColor="#303133" :activeColor="proxy.$settingStore.themeColor.color" @change="tabPositionChange" style="width: 100%"></u-subsection>
  43. </view>
  44. <view v-if="tabPosition == 1">
  45. <view class="flex" :style="{ color: proxy.$settingStore.themeColor.color }">
  46. <view class="ml10" style="margin-left: auto" @click="open">选择时间</view>
  47. <view class="ml10" @click="modalShow = true">筛选</view>
  48. </view>
  49. <chart :currentDateList="currentDateList"></chart>
  50. <!-- <view class="tableType1">
  51. <u-row>
  52. <u-col span="12">
  53. <view>指数</view>
  54. </u-col>
  55. </u-row>
  56. <u-row v-for="(co, index) in content4" :key="index">
  57. <u-col span="12">
  58. <view>{{ co.name1 }}</view>
  59. </u-col>
  60. </u-row>
  61. </view> -->
  62. </view>
  63. <!-- -->
  64. <view v-if="tabPosition == 0">
  65. <view class="flex" style="flex-wrap: wrap; line-height: 36px">
  66. <view style="width: 50%" v-for="realTime in realTimeDataList" :key="realTime">
  67. {{ realTime.attributeName + ":" }}
  68. {{ realTime.value }}
  69. {{ realTime.attributeUnit ? realTime.attributeUnit : "" }}
  70. </view>
  71. </view>
  72. </view>
  73. <view v-if="tabPosition == 2">
  74. <br/>
  75. <u-row
  76. gutter="10"
  77. >
  78. <u-col span="3" v-for="(item, index) in deviceCotrolList" :key="index">
  79. <view class="demo-layout" @click="goAction(item)">{{ item.commandName }}</view>
  80. </u-col>
  81. </u-row>
  82. <br/>
  83. <br/>
  84. <br/>
  85. </view>
  86. </view>
  87. <u-modal :show="modalShow" @confirm="modalShow = false" @close="modalShow = false" :closeOnClickOverlay="true">
  88. <view class="slot-content">
  89. <u-checkbox-group
  90. v-model="checkboxValueList"
  91. @change="
  92. (val) => {
  93. checkboxChange(val);
  94. }
  95. "
  96. :size="14"
  97. :activeColor="proxy.$settingStore.themeColor.color"
  98. >
  99. <u-checkbox class="mb10" v-for="option in checkboxDataList" :key="option" :label="option.attributeName" :name="option.attributeCode"> </u-checkbox>
  100. </u-checkbox-group>
  101. </view>
  102. </u-modal>
  103. <uni-calendar ref="calendar" class="uni-calendar--hook" :clearDate="false" :insert="false" :lunar="false" :range="true" @confirm="calendarConfirm" />
  104. </template>
  105. </oa-scroll>
  106. </template>
  107. <script setup>
  108. /*----------------------------------依赖引入-----------------------------------*/
  109. import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  110. import { ref, reactive, computed, getCurrentInstance, toRefs, inject,watch } from "vue";
  111. /*----------------------------------接口引入-----------------------------------*/
  112. import { dmpDeviceInfo,dmpProductAttribute, historyMetrics, last,getList } from "@/api/business/fireIot/deviceManage.js";
  113. /*----------------------------------组件引入-----------------------------------*/
  114. import chart from "./chart.vue";
  115. /*----------------------------------store引入-----------------------------------*/
  116. import { useStores, commonStores } from "@/store/modules/index";
  117. /*----------------------------------公共方法引入-----------------------------------*/
  118. /*----------------------------------公共变量-----------------------------------*/
  119. const { proxy } = getCurrentInstance();
  120. const commonStore = commonStores();
  121. /*----------------------------------变量声明-----------------------------------*/
  122. const dataList = ref([
  123. {
  124. title: "设备类型",
  125. value: commonStore.deviceDetailsArray.productName,
  126. },
  127. {
  128. title: "设备编号",
  129. value: commonStore.deviceDetailsArray.deviceId,
  130. },
  131. {
  132. title: "物联网卡号",
  133. value: commonStore.deviceDetailsArray.simCode,
  134. },
  135. {
  136. title: "安装位置",
  137. value: commonStore.deviceDetailsArray.installAddress,
  138. },
  139. {
  140. title: "添加时间",
  141. value: commonStore.deviceDetailsArray.createdTime ? commonStore.deviceDetailsArray.createdTime.replace("T", " ") : "",
  142. },
  143. ]);
  144. const checkboxDataList = ref([]); //复选框渲染数据存储
  145. const checkboxValueList = ref([]); //复选框值数据存储
  146. const realTimeDataList = ref([]); //实时数据存储
  147. const tableDataList = ref([]); //表格数据存储
  148. const currentDateList = ref([]); //图表数据存储
  149. const modalShow = ref(false); //模态框显示隐藏
  150. const calendar = ref(null);
  151. const calendarStartTime = ref(""); //日历开始时间
  152. const calendarEndTime = ref(""); //日历结束时间
  153. const productId = ref(0); //产品id
  154. const deviceId = ref(0); //设备id
  155. const productCode = ref(""); //产品code
  156. const deviceCotrolList = ref([]) //设备调试数据存储
  157. function open() {
  158. calendar.value.open();
  159. }
  160. /**
  161. * @初始化
  162. */
  163. /**
  164. * @详情查询
  165. * @api接口查询
  166. */
  167. function dmpDeviceInfoApi() {
  168. dmpDeviceInfo({ productId: productId.value, deviceId:deviceId.value,current: 1, size: 10 }).then((requset) => {
  169. if (requset.status === "SUCCESS") {
  170. dataList.value[0].value = requset.data.records[0].deviceName;
  171. dataList.value[1].value = requset.data.records[0].deviceId;
  172. dataList.value[2].value = requset.data.records[0].simCode ;
  173. dataList.value[3].value = requset.data.records[0].installAddress
  174. dataList.value[4].value = requset.data.records[0].createdTime ? requset.data.records[0].createdTime.replace("T", " ") : requset.data.records[0].createdTime;
  175. productCode.value = requset.data.records[0].productCode;
  176. }
  177. });
  178. }
  179. function init() {
  180. dmpDeviceInfoApi();
  181. dmpProductAttribute({
  182. current: 1,
  183. size: 100,
  184. attributeName: "",
  185. productId: productId.value,
  186. deviceId:deviceId.value,
  187. }).then((requset) => {
  188. if (requset.status === "SUCCESS") {
  189. checkboxDataList.value = requset.data.records;
  190. realTimeDataList.value = requset.data.records;
  191. var array = [];
  192. requset.data.records.forEach((el) => {
  193. array.push(el.attributeCode);
  194. });
  195. last({
  196. deviceId: commonStore.deviceDetailsArray.deviceId,
  197. metrics: array,
  198. }).then((requsets) => {
  199. if (requsets.status === "SUCCESS") {
  200. realTimeDataList.value.forEach((el) => {
  201. el.value = 0;
  202. requsets.data.forEach((e) => {
  203. if (el.attributeCode === e.metric) {
  204. el.value = e.value;
  205. }
  206. });
  207. });
  208. }
  209. });
  210. }
  211. });
  212. }
  213. function deviceControlData(){
  214. getList({
  215. current: 1,
  216. size: 10,
  217. productCode:productCode.value,
  218. }).then((response) => {
  219. deviceCotrolList.value=response.data.records
  220. // console.log(response.data.records)
  221. // dataList.value = response.data.records;
  222. // state.total = response.data.total;
  223. // state.loading = false;
  224. });
  225. }
  226. /**
  227. * @tabs切换change事件
  228. */
  229. const list = ref(["实时数据", "历史数据","设备调试"]);
  230. const tabPosition = ref(0);
  231. function tabPositionChange(index) {
  232. tabPosition.value = index;
  233. }
  234. /**
  235. * @checkbox选中change事件
  236. */
  237. function checkboxChange(value) {
  238. checkboxValueList.value = value;
  239. historyMetricsApi();
  240. }
  241. /**
  242. * @日历确认事件
  243. */
  244. function calendarConfirm(e) {
  245. calendarStartTime.value = e.range.before;
  246. calendarEndTime.value = e.range.after ? e.range.after : e.range.before;
  247. historyMetricsApi();
  248. }
  249. /**
  250. * @设备多属性历史数据请求
  251. * @api接口请求
  252. */
  253. function historyMetricsApi() {
  254. historyMetrics({
  255. startTime: calendarStartTime.value,
  256. endTime: calendarEndTime.value,
  257. deviceId: commonStore.deviceDetailsArray.deviceId,
  258. deviceType: commonStore.deviceDetailsArray.deviceType,
  259. metrics: checkboxValueList.value,
  260. }).then((requset) => {
  261. if (requset.status === "SUCCESS") {
  262. currentDateList.value = requset.data;
  263. checkboxDataList.value.forEach((el) => {
  264. currentDateList.value.forEach((e) => {
  265. if (el.attributeCode == e.metric) {
  266. e.attributeName = el.attributeName;
  267. }
  268. });
  269. });
  270. currentDateList.value.forEach((el) => {
  271. if (el.metricItems.length > 0) {
  272. el.data = [];
  273. el.metricItems.forEach((e) => {
  274. el.data.push([e.timestamp, e.value]);
  275. });
  276. } else {
  277. el.data = [];
  278. }
  279. });
  280. }
  281. });
  282. }
  283. function goAction(row) {
  284. proxy.$tab.navigateTo(`/pages/business/fireIot/deviceManage/components/goAction?productCode=${row.productCode}&commandCode=${row.commandCode}&deviceId=${deviceId.value}`);
  285. }
  286. onReady(() => {});
  287. onShow(() => {
  288. //调用系统主题颜色
  289. proxy.$settingStore.systemThemeColor([1]);
  290. });
  291. onLoad((options) => {
  292. if ("deviceId" in options) {
  293. deviceId.value = options.deviceId;
  294. }
  295. if ("productId" in options) {
  296. productId.value = parseInt(options.productId);
  297. init();
  298. }
  299. });
  300. watch(
  301. () => tabPosition.value,
  302. (val) => {
  303. if(val==2){
  304. deviceControlData()
  305. }
  306. }
  307. );
  308. </script>
  309. <style lang="scss" scoped>
  310. .app-subsection {
  311. display: flex;
  312. margin-bottom: 10px;
  313. padding: 0px 5rem;
  314. }
  315. .demo-layout{
  316. border:1px solid #e0e0e0;
  317. padding:15px;
  318. box-shadow:0px 0px 12px rgba(0, 0, 0, 0.12);
  319. }
  320. </style>