天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

447 line
19KB

  1. <!--
  2. * @Date: 2023-10-11 15:34:12
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2023-10-27 14:19:16
  5. * @FilePath: \TelpoH5FrontendWeb\src\views\gps-card-frontend\device-setting\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div classs="device-setting">
  10. <div class="tree-select">
  11. <van-tree-select :items="settingItems" :main-active-index.sync="active" :height="clientHeight" @click-nav="onCkickNav">
  12. <template #content>
  13. <div class="item" v-for="(item, index) in settingItems" :key="index" v-show="item.index === active">
  14. <div class="item-setting" v-for="(child, index) in item.data" :key="index">
  15. <customCell :title="child.name" :value="child.value" :click="child.router"/>
  16. </div>
  17. </div>
  18. <div class="power" v-show="active === 10 || active === 11 || active === 12">
  19. <van-button @click="onClick(active)">点击查看</van-button>
  20. </div>
  21. </template>
  22. </van-tree-select>
  23. </div>
  24. </div>
  25. </template>
  26. <script>
  27. import customCell from '@/components/custom-cell/index';
  28. import { isNotNull} from "@/utils/index";
  29. import APICore from "@/api/core";
  30. export default {
  31. name:'',
  32. components: { customCell },
  33. data(){
  34. return {
  35. active: 0,
  36. settingItems: [
  37. { text: '监护角色', index: 0, data: [],},
  38. { text: '场景模式', index: 1, data: []},
  39. { text: '加强省电模式', index: 2, data: []},
  40. { text: '定位监测', index: 3, data: []},
  41. { text: '危险区域监测', index: 4, data: [] },
  42. { text: '健康监测', index: 5, data: []},
  43. { text: '血压监测', index: 6, data: []},
  44. { text: '心理监测', index: 7, data: []},
  45. { text: '佩戴监测', index: 8, data: []},
  46. /* { text: '久坐提醒', index: 9, data: []}, */
  47. { text: '上报周期', index: 10, data: []},
  48. { text: '电量查看', index: 11, data: []},
  49. { text: '设备信号强度查看', index: 12, data: []},
  50. { text: '设备行为日志查看', index: 13, data: []},
  51. ],
  52. dateList: [], //时间列表
  53. clientHeight: '', //当前窗口可视页面高度
  54. }
  55. },
  56. computed: {
  57. imei() {
  58. return this.$store.getters.imei/* '861281060086216' */;
  59. },
  60. },
  61. created() {
  62. this.getAuth();
  63. this.getUrlQueryParams();
  64. },
  65. mounted() {
  66. this.$toast.loading({message: "加载中"});
  67. this.getWatchConfig();
  68. this.getIotCtlMode();
  69. this.getLocationConfig();
  70. this.getDrownConfig();
  71. this.getHealthConfig();
  72. this.getBloodConfig();
  73. this.getPsychAbilityConfig();
  74. this.getNowearConfig();
  75. this.getUploadConfig();
  76. this.clientHeight = document.documentElement.clientHeight;
  77. this.active = Number(this.$store.getters.active) || 0;
  78. this.$toast.success({message: "加载完成"});
  79. },
  80. methods: {
  81. // 获取b端接口的token
  82. getAuth() {
  83. let manufactorId = "5bf13062-a41e-4d00-ba14-1101aad12650";
  84. APICore.getAuth({ manufactorId: manufactorId }).then(res => {
  85. this.$store.commit("gatewayToken", res.data.data);
  86. });
  87. },
  88. getUrlQueryParams() {
  89. // 从url中获取参数并缓存
  90. let params = this.$route.query;
  91. if (isNotNull( params )) {
  92. // 首次进入且正确传参
  93. //this.imei = params.imei;
  94. if(params.accessToken) {this.$store.commit('accessToken', params.accessToken); }
  95. this.$store.commit('imei', params.imei);
  96. }
  97. },
  98. // 获取设备场景模式参数
  99. getWatchConfig() {
  100. APICore.getWatchConfig({imei: this.imei}).then(res => {
  101. let data = res.data.data;
  102. if(data) {
  103. const modeId = data.modeId;
  104. const roleId = data.roleId;
  105. this.modeId = data.modeId;
  106. this.roleId = roleId;
  107. this.settingItems[0].text = `监护角色(${roleId === 1 ? '学生' : '老人'})`;
  108. this.settingItems[1].text = `场景模式(${this.getModeById(modeId)})`;
  109. } else {
  110. this.settingItems[0].text = `监护角色(无数据)`;
  111. this.settingItems[1].text = `场景模式(无数据)`;
  112. /* this.modeId = 1;
  113. this.roleId = 1; */
  114. }
  115. })
  116. },
  117. // 通过模式id获取场景模式
  118. getModeById(id) {
  119. if(id === 1) {
  120. return '标准'
  121. } else if (id === 2) {
  122. return '省电'
  123. } else {
  124. return '个性'
  125. }
  126. },
  127. // 组装选项数据
  128. concatTitle(title, status, power){
  129. return `${title}(${status}) (${power})`
  130. },
  131. // 获取加强省电模式参数配置
  132. getIotCtlMode() {
  133. APICore.getIotCtlMode(this.imei).then(res => {
  134. let data = res.data.data;
  135. if(data) {
  136. this.checked = data.mode === 1;
  137. this.settingItems[2].text = this.concatTitle('加强省电模式', data.mode === 1 ? '打开' : '关闭', data.mode === 1 ? '耗电高' : '耗电低');
  138. this.settingItems[2].data = [
  139. { name: '开启状态:', value: data.enabled === 1 ? '打开': '关闭' },
  140. ];
  141. } else {
  142. this.settingItems[2].text = this.concatTitle('加强省电模式','关闭', '耗电低');
  143. }
  144. })
  145. },
  146. // 获取设备定位参数
  147. getLocationConfig() {
  148. APICore.getLocationConfig({imei: this.imei}).then(res => {
  149. let data = res.data.data;
  150. if(data) {
  151. this.settingItems[3].text = this.concatTitle('定位监测', data.enabled === 1 ? '打开': '关闭', data.enabled === 1 ? '耗电高' : '耗电低');
  152. this.settingItems[3].data = [
  153. { name: '开启状态:', value: data.enabled === 1 ? '打开': '关闭' },
  154. { name: '检测周期:', value: data.sampleinteval + '分钟' },
  155. ];
  156. } else {
  157. this.settingItems[3].text = this.concatTitle('定位监测','关闭', '耗电低');
  158. }
  159. })
  160. },
  161. // 获取免告警水域
  162. getDrownReportFilterQuery() {
  163. APICore.getDrownReportFilterQuery({imei: this.imei}).then(res => {
  164. let data = res.data.data;
  165. if(data) {
  166. let json = {};
  167. for(var i=0; i<data.length; i++){
  168. json[i] = data[i];
  169. }
  170. this.drownWhite = JSON.stringify(json);
  171. }
  172. })
  173. },
  174. // 获取设备危险区域参数
  175. getDrownConfig() {
  176. APICore.getDrownConfig({imei: this.imei}).then(res => {
  177. let data = res.data.data;
  178. if(data) {
  179. this.settingItems[4].text = this.concatTitle('危险区域监测', data.enabled === 1 ? '打开': '关闭', data.enabled === 1 ? '耗电高' : '耗电低');
  180. this.settingItems[4].data = [
  181. { name: '涉水监测:', value: data.enabled === 1 ? '打开': '关闭' },
  182. { name: '检测周期:', value: data.config.intervallvl1 + data.config.intervallvl2 + '分钟' },
  183. { name: '告警阈值:', value: data.config.warningdistance + '米' },
  184. { name: '涉水停留告警间隔:', value: (data.config.distancelvl2 / 60) + '分钟' },
  185. { name: '告警提示持续次数:', value: data.config.warningtimes + '次' },
  186. { name: '首次告警逗留设置:', value: data.config.delaytimes + '次' },
  187. { name: '时速免告警(≥):', value: data.config.ignorespeed + '公里' },
  188. { name: '免告警水域:', value: '查看', router: 'drownWhiteList' },
  189. { name: '告警方式:', value: `${data.config.vibrateenabled === 1 ? '震动' : '无'} , ${data.config.lcdenabled === 1 ? '亮屏' : '无'} , ${data.config.musicenabled === 1 ? '声音' : '无'}`},
  190. ];
  191. } else {
  192. this.settingItems[4].text = this.concatTitle('危险区域监测','关闭', '耗电低');
  193. this.settingItems[4].data = [];
  194. }
  195. })
  196. },
  197. // 格式化某些特殊参数值的时间显示方式
  198. formatInteval(value) {
  199. return value >= 360 ? (value / 60) + '小时' : value + '分钟'
  200. },
  201. // 获取设备健康参数
  202. getHealthConfig() {
  203. APICore.getHealthConfig({imei: this.imei}).then(res => {
  204. let data = res.data.data;
  205. if(data) {
  206. let healthEnablelist = [
  207. { enabled: data.config.heartrateenabled},
  208. { enabled: data.config.spo2enabled},
  209. { enabled: data.config.temperatureenabled},
  210. ];
  211. let config = data.config;
  212. // 获取健康设置打开的次数
  213. const healthSettingCount = healthEnablelist.reduce((acc, cur) => cur.enabled === 1 ? ++acc : acc, 0);
  214. this.settingItems[5].text = this.concatTitle('健康监测', healthSettingCount >= 3 ? '打开'
  215. : healthSettingCount >= 1 ? '部分'
  216. : '关闭', healthSettingCount > 2 ? '耗电高': healthSettingCount === 2 ? '耗电中': '耗电低');
  217. this.settingItems[5].data = [
  218. { name: '体温监测:', value: config.temperatureenabled === 1 ? '打开': '关闭' },
  219. { name: '检测周期:', value: this.formatInteval(config.temperatureinteval) },
  220. { name: '告警阈值-高温:', value: (config.temperaturemaxvalue / 10) + '度' },
  221. /* { name: '告警阈值-低温:', value: config.temperatureminvalue + '度' }, */
  222. { name: '告警方式:', value: `${config.temperaturevibrateenabled === 1 ? '震动' : '无'} , ${config.temperaturelcdenabled === 1 ? '亮屏' : '无'}`},
  223. { name: '心率监测:', value: config.heartrateenabled === 1 ? '打开': '关闭' },
  224. { name: '检测周期:', value: this.formatInteval(config.heartrateinteval) },
  225. { name: '告警阈值-上限:', value: config.heartratemaxvalue + '次' },
  226. { name: '告警阈值-下限:', value: config.heartrateminvalue + '次' },
  227. { name: '告警方式:', value: `${config.heartratevibrateenabled === 1 ? '震动' : '无'} , ${config.heartratelcdenabled === 1 ? '亮屏' : '无'}`},
  228. { name: '血氧监测:', value: config.spo2enabled === 1 ? '打开': '关闭' },
  229. { name: '检测周期:', value: this.formatInteval(config.spo2inteval) },
  230. { name: '告警阈值-低于:', value: config.spo2minvalue + '%' },
  231. /* { name: '告警阈值-低温:', value: config.temperatureminvalue + '度' }, */
  232. { name: '告警方式:', value: `${config.spo2vibrateenabled === 1 ? '震动' : '无'} , ${config.spo2lcdenabled === 1 ? '亮屏' : '无'}`},
  233. ]
  234. } else {
  235. this.settingItems[5].text = this.concatTitle('健康监测','关闭', '耗电低');
  236. this.settingItems[5].data = [];
  237. }
  238. })
  239. },
  240. // 获取血压监测参数设置
  241. getBloodConfig() {
  242. APICore.getBloodPressConfig({imei: this.imei}).then(res => {
  243. let data = res.data.data;
  244. if(data) {
  245. this.settingItems[6].text = this.concatTitle('血压监测', data.bloodPressenabled === 1 ? '打开': '关闭', data.bloodPressenabled === 1 ? '耗电高' : '耗电低');
  246. this.settingItems[6].data = [
  247. { name: '血压监测:', value: data.bloodPressenabled === 1 ? '打开': '关闭' },
  248. { name: '检测周期:', value: this.formatInteval(data.bloodPressinteval) },
  249. { name: '告警阈值-收缩压:', value: String(data.systolicmaxvalue)},
  250. { name: '告警方式:', value: `${data.bloodPressvibrateenabled === 1 ? '震动' : '无'} ,${data.bloodPresslcdenabled === 1 ? '亮屏' : '无'}`},
  251. ]
  252. } else {
  253. this.settingItems[6].text = this.concatTitle('血压监测','关闭', '耗电低');
  254. this.settingItems[6].data = [];
  255. }
  256. })
  257. },
  258. // 格式化等级
  259. formatReminder(value) {
  260. let text = "";
  261. if (value == 1) {
  262. text = "轻度";
  263. } else if (value == 2) {
  264. text = "中度";
  265. } else if (value == 3) {
  266. text = "重度";
  267. }
  268. return text;
  269. },
  270. // 格式化监测时段
  271. formatTimeArea(timeArr) {
  272. let timeToString = timeArr.map(item => {
  273. return `{时段: ${item.time},时长:${item.duration};}`;
  274. });
  275. return String(timeToString);
  276. },
  277. // 获取心理监测参数设置
  278. getPsychAbilityConfig() {
  279. APICore.getPsychAbilityConfig({imei: this.imei}).then(res => {
  280. let data = res.data.data;
  281. if (data) {
  282. this.settingItems[7].text = this.concatTitle('心理监测', data.enabled === 1 ? '打开': '关闭', data.enabled === 1 ? '耗电高' : '耗电低');
  283. this.settingItems[7].data = [
  284. { name: '心理监测:', value: data.enabled === 1 ? '打开': '关闭' },
  285. { name: '设备显示:', value: data.device_display === 1 ? '打开': '关闭' },
  286. { name: '监测时段:', value: this.formatTimeArea(data.time_area) },
  287. { name: '提醒设置:', value: data.reminder_setting.enable === 1 ? '打开': '关闭' },
  288. { name: '抑郁等级:', value: this.formatReminder(data.reminder_setting.setting.depressive) },
  289. { name: '压力等级:', value: this.formatReminder(data.reminder_setting.setting.pressure) },
  290. { name: '疲劳等级:', value: this.formatReminder(data.reminder_setting.setting.fatigue) },
  291. { name: '告警方式:', value: `${data.vibrating_screen === 1 ? '震动' : '无'}, ${data.brightening_screen === 1 ? '亮屏' : '无'}`},
  292. ]
  293. } else {
  294. this.settingItems[7].text = this.concatTitle('心理监测', '关闭', '耗电低');
  295. this.settingItems[7].data = [];
  296. }
  297. })
  298. },
  299. // 转换时间格式
  300. shiftTime(time, model) {
  301. if(time) {
  302. let startTime = '{' + time.slice(0,2) + ":" + time.slice(2,4);
  303. let endTime = time.slice(4,6) + ":" + time.slice(6,8) + '}';
  304. let timeObj = {
  305. startTime: startTime,
  306. endTime: endTime,
  307. };
  308. this.dateList.push(timeObj);
  309. }
  310. },
  311. // 转化时间数组 :)
  312. fomatTimeArr(arr) {
  313. let timeString = arr.map(item => {
  314. return item.startTime + '-' + item.endTime
  315. });
  316. return String(timeString);
  317. },
  318. // 获取佩戴监测参数设置
  319. getNowearConfig() {
  320. APICore.getNowearConfig({ imei: this.imei }).then(res => {
  321. let data = res.data.data;
  322. if(data) {
  323. this.dateList = [];
  324. this.shiftTime(data.timearea1, 0);
  325. this.shiftTime(data.timearea2, 1);
  326. this.shiftTime(data.timearea3, 2);
  327. this.shiftTime(data.timearea4, 3);
  328. this.shiftTime(data.timearea5, 4);
  329. this.shiftTime(data.timearea6, 5);
  330. this.shiftTime(data.timearea7, 6);
  331. this.shiftTime(data.timearea8, 7);
  332. this.shiftTime(data.timearea9, 8);
  333. this.shiftTime(data.timearea10, 9);
  334. this.settingItems[8].text = this.concatTitle('佩戴监测', data.enabled === 1 ? '打开': '关闭', data.enabled === 1 ? '耗电高' : '耗电低');
  335. this.settingItems[8].data = [
  336. { name: '佩戴监测:', value: data.enabled === 1 ? '打开': '关闭' },
  337. { name: '检测周期:', value: (data.interval / 60) + '分钟' },
  338. { name: '检测时段:', value: this.fomatTimeArr(this.dateList)},
  339. { name: '未佩戴处理方式:', value: data.mode === 1 ? '不处理': '飞行模式' },
  340. { name: '佩戴提醒:', value: data.warningtimes !== 0 ? '打开' : '关闭' },
  341. { name: '提醒时间间隔:', value: (data.warninginterval / 60) + '分钟' },
  342. { name: '提醒次数:', value: data.warningtimes + '次'},
  343. { name: '告警方式:', value: `${data.vibrateenabled === 1 ? '震动' : '无'} ,${data.lcdenabled === 1 ? '亮屏' : '无'} ,${data.soundenabled === 1 ? '声音' : '无'}`},
  344. ]
  345. } else {
  346. this.settingItems[8].text = this.concatTitle('佩戴监测', '关闭', '耗电低');
  347. this.settingItems[8].data = [];
  348. }
  349. })
  350. },
  351. // 获取设备上报参数
  352. getUploadConfig() {
  353. APICore.getUploadConfig({imei: this.imei}).then(res => {
  354. const data = res.data.data;
  355. if(data) {
  356. this.settingItems[9].text = `上报周期(${data.uploadinteval}分钟)`;
  357. } else {
  358. this.settingItems[9].text = '上报周期(关闭)';
  359. }
  360. })
  361. },
  362. // 点击左边树形图
  363. onCkickNav(value) {
  364. this.active = value;
  365. this.$store.commit('active', value);
  366. switch(value) {
  367. /* case 10:
  368. case 11:
  369. case 12:
  370. this.$router.push({
  371. name: 'devicePower',
  372. query: {
  373. title: `${value === 10 ? 'BatteryLevel' : value === 11 ? 'status': 'Offline'}`
  374. }
  375. });
  376. break; */
  377. case 0:
  378. this.getWatchConfig();
  379. break;
  380. case 1:
  381. this.getWatchConfig();
  382. break;
  383. case 2:
  384. this.getIotCtlMode();
  385. break;
  386. case 3:
  387. this.getLocationConfig();
  388. break;
  389. case 4:
  390. this.getDrownConfig();
  391. break;
  392. case 5:
  393. this.getHealthConfig();
  394. break;
  395. case 6:
  396. this.getBloodConfig();
  397. break;
  398. case 7:
  399. this.getPsychAbilityConfig();
  400. break;
  401. case 8:
  402. this.getNowearConfig();
  403. break;
  404. case 9:
  405. this.getUploadConfig();
  406. break;
  407. default: break;
  408. }
  409. },
  410. // 点击页面查看按钮
  411. onClick(value) {
  412. if(value) {
  413. this.$router.push({
  414. name: 'devicePower',
  415. query: {
  416. title: `${value === 10 ? 'BatteryLevel' : value === 11 ? 'status': 'Offline'}`
  417. }
  418. })
  419. }
  420. }
  421. }
  422. }
  423. </script>
  424. <style lang="scss">
  425. .van-tree-select__nav-item {
  426. padding: 15px 5px !important;
  427. }
  428. .van-tree-select__content {
  429. padding: 5px;
  430. }
  431. .van-tree-select__nav{
  432. flex: 1 !important;
  433. }
  434. .van-tree-select__content {
  435. @include center();
  436. }
  437. </style>
  438. <style scoped lang="scss">
  439. @import "./index.scss";
  440. </style>