Remotecontrol.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. <template>
  2. <view>
  3. <view class="header"></view>
  4. <view class="position">
  5. <picker mode= "multiSelector" @columnchange="bindMultiPickerColumnChange" @change="(val)=>confirmHandle(val,'position')"
  6. :range="positionList" style="width:100%;height: 100%;" range-key="orgName">
  7. <u-icon name="map-fill" color="#fff" class="inline"></u-icon>
  8. <view class="uni-input inline positionName">{{name}}</view>
  9. <u-icon name="arrow-rightward" class="inline" color="#fff"></u-icon>
  10. </picker>
  11. </view>
  12. <view class="form">
  13. <view class="drawdownMenu">
  14. <picker @change="(val)=>confirmHandle(val,'deviceType')" :value="deviceTypeIndex"
  15. :range="deviceTypeList" style="width:100%;height: 100%;" range-key="dictLabel">
  16. <view class="uni-input">{{deviceTypeList[deviceTypeIndex].dictLabel}}</view>
  17. <u-icon name="arrow-down-fill" color="#666" size="16" class="inline"></u-icon>
  18. </picker>
  19. </view>
  20. <view class="drawdownMenu">
  21. <picker @change="(val)=>confirmHandle(val,'deviceStatus')" :value="deviceStatusIndex"
  22. :range="deviceStatusList" style="width:100%;height: 100%;" range-key="text">
  23. <view class="uni-input">{{deviceStatusList[deviceStatusIndex].text}}</view>
  24. <u-icon name="arrow-down-fill" color="#666" size="16" class="inline"></u-icon>
  25. </picker>
  26. </view>
  27. </view>
  28. <view class="total">
  29. 共有<text style="color: #f44;">{{total}}</text>条记录
  30. </view>
  31. <!-- 列表 -->
  32. <view class="list">
  33. <view class="each" v-for="(item,index) in dataList">
  34. <template v-if="deviceType == 'AirConditioner'">
  35. <view class="l1">{{item.airConditionerName}}</view>
  36. <view class="l2">空间信息:{{ item.installSite }}{{ item.roomNumbers }}</view>
  37. <view class="l2" v-if="item.attributeList">室温:{{ item.attributeList[4].value }}℃</view>
  38. <view class="operation" v-if="item.attributeList">
  39. <picker @change="(val)=>confirmHandle(val,'modeType',item.deviceId)"
  40. :value="item.attributeList[2].value|findInd(modeTypeList)" :range="modeTypeList"
  41. style="width:100%;height: 100%;" range-key="dictLabel">
  42. <view class="uni-input">{{findInd2(item.attributeList[2].value,modeTypeList)}}</view>
  43. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  44. </picker>
  45. <picker @change="(val)=>confirmHandle(val,'temp',item.deviceId)" :value="item.attributeList[5].value|findInd(temperatureList)" :range="temperatureList"
  46. style="width:100%;height: 100%;">
  47. <view class="uni-input">{{item.attributeList[5].value}}</view>
  48. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  49. </picker>
  50. {{item.attributeList[0].value|findInd(speedTypeList)}}
  51. <picker @change="(val)=>confirmHandle(val,'speedType',item.deviceId)" :value="item.attributeList[0].value|findInd(speedTypeList)"
  52. :range="speedTypeList" style="width:100%;height: 100%;" range-key="dictLabel">
  53. <view class="uni-input">{{findInd2(item.attributeList[0].value,speedTypeList)}}</view>
  54. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  55. </picker>
  56. </view>
  57. <switch :checked="item.attributeList[3].value==1?true:false" @change="(val)=>changeSwitch('AirConditioner', val, item.deviceId, index)"
  58. style="transform:scale(0.7)" class="switch" />
  59. </template>
  60. <template v-if="deviceType == 'Relay'">
  61. <view class="l1">{{item.controlName}}</view>
  62. <view class="l2">空间信息:{{ item.installSite }}</view>
  63. <switch :checked="item.status==1?true:false" @change="(val)=>changeSwitch('Relay', val, item.deviceId, index)"
  64. style="transform:scale(0.7)" class="switch" />
  65. </template>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. </template>
  72. <script>
  73. import {
  74. isEmpty,
  75. getDictDataList,
  76. getUrlKey
  77. } from "@/utils/index";
  78. import Api from "./@/http/Api.js";
  79. export default {
  80. data() {
  81. return {
  82. modeTypeList: [],
  83. modeTypeIndex: 0,
  84. temperatureList: [],
  85. tempIndex: 0,
  86. speedTypeList: [],
  87. speedTypeIndex: 0,
  88. dataForm: {
  89. page: 1,
  90. limit: 10,
  91. buildingId: "",
  92. storeyId: "",
  93. status: "",
  94. controlCategory: "CommonLighting",
  95. },
  96. total: 0,
  97. refreshing: false,
  98. finished: false,
  99. deviceTypeIndex: 0,
  100. deviceStatusIndex: 0,
  101. name: '跨境电商',
  102. projectName: '',
  103. p1:0,
  104. p2:0,
  105. positionList: [[],[]],
  106. deviceType: "AirConditioner",
  107. deviceStatus: '',
  108. deviceTypeList: [],
  109. dataList: [],
  110. deviceStatusList: [{
  111. text: "全部",
  112. value: ""
  113. },
  114. {
  115. text: "开启",
  116. value: 1
  117. },
  118. {
  119. text: "关闭",
  120. value: 0
  121. },
  122. ],
  123. }
  124. },
  125. onReachBottom() {
  126. if (!this.finished) {
  127. this.dataForm.page++;
  128. this.getDataList();
  129. }
  130. },
  131. onLoad() {
  132. this.getModeTypeList();
  133. this.getBuildList();
  134. this.getDeviceTypeList();
  135. this.getSpeedTypeList();
  136. this.setTemperatureList();
  137. this.getDataList()
  138. },
  139. watch: {
  140. "dataForm.buildingId"(newval, oldval) {
  141. if (newval != oldval) {
  142. this.onRefresh();
  143. }
  144. },
  145. "dataForm.storeyId"(newval, oldval) {
  146. if (newval != oldval) {
  147. this.onRefresh();
  148. }
  149. },
  150. },
  151. filters: {
  152. findInd(val, list) {
  153. if (isEmpty(val)) {
  154. return 0;
  155. }
  156. if(list.length>5){
  157. return list.findIndex((item) =>item== val);
  158. }else{
  159. return list.findIndex((item) => parseFloat(item.dictValue) == val);
  160. }
  161. }
  162. },
  163. methods: {
  164. findInd2(val,list){
  165. if (isEmpty(val)) {
  166. return 0;
  167. }
  168. if(list.find((item) => parseFloat(item.dictValue) == val)){
  169. return list.find((item) => parseFloat(item.dictValue) == val).dictLabel;
  170. }else{
  171. return list[0].dictLabel
  172. }
  173. },
  174. //获取楼栋
  175. getBuildList() {
  176. Api.getBuildInfo().then((res) => {
  177. if (res.data.code == 0) {
  178. this.name = this.projectName = res.data.data[0].orgName;
  179. this.positionList[0]=[];
  180. let positionList = res.data.data[0].childrenList;
  181. if (positionList) {
  182. let json = {
  183. category: "s",
  184. childrenList: null,
  185. orgId: "",
  186. orgName: "全部",
  187. };
  188. for (let i = 0; i <positionList.length; i++) {
  189. positionList[i].childrenList.unshift(json);
  190. this.positionList[0].push(positionList[i]);
  191. }
  192. this.positionList[0].unshift(json);
  193. this.positionList[1]=this.positionList[0][0].childrenList;
  194. }
  195. }
  196. });
  197. },
  198. bindMultiPickerColumnChange(e){
  199. this.positionList[1]=this.positionList[1]=this.positionList[0][e.detail.value].childrenList;
  200. },
  201. getModeTypeList() {
  202. this.modeTypeList = getDictDataList("ModeType");
  203. console.log(this.modeTypeList)
  204. },
  205. getSpeedTypeList() {
  206. this.speedTypeList = getDictDataList("SpeedType");
  207. console.log(this.speedTypeList)
  208. },
  209. setTemperatureList() {
  210. this.temperatureList = [];
  211. for (let i = 16; i < 33; i++) {
  212. this.temperatureList.push(i);
  213. }
  214. },
  215. confirmHandle(e, type,deviceId) {
  216. console.log(e)
  217. this.dataForm.page = 1;
  218. if(type=='position'){
  219. this.p1= e.detail.value[0];
  220. this.p2= e.detail.value[1];
  221. console.log(this.positionList[0])
  222. this.dataForm.buildingId =this.p1==0?'':this.positionList[0][this.p1].orgId;
  223. this.dataForm.storeyId =this.p2==0?"":this.positionList[1][this.p2].orgId;
  224. let buildName = this.p1 ==0? "" :'-'+this.positionList[0][this.p1].orgName;
  225. let storeyName = this.p2 ==0? "" :'-'+this.positionList[1][this.p2].orgName;
  226. this.name = this.projectName+ buildName+storeyName;
  227. }else{
  228. let index = type + "Index";
  229. this[index] = e.detail.value;
  230. if (type == "deviceType") {
  231. this.deviceType = this.deviceTypeList[e.detail.value].value;
  232. this.onRefresh();
  233. }
  234. if (type == "deviceStatus") {
  235. this.deviceStatus = this.deviceStatusList[e.detail.value].value;
  236. this.dataForm.status=this.deviceStatus;
  237. this.onRefresh();
  238. }
  239. if (type == "modeType") {
  240. let data = this.modeTypeList[e.detail.value].dictValue;
  241. this.onConfirmMode(data,'modeTypeList',deviceId);
  242. }
  243. if (type == "speedType") {
  244. let data = this.speedTypeList[e.detail.value].dictValue;
  245. this.onConfirmMode(data,'speedTypeList',deviceId);
  246. }
  247. if (type == "temp") {
  248. let data = this.temperatureList[e.detail.value];
  249. this.onConfirmMode(data,'temperatureList',deviceId);
  250. }
  251. }
  252. },
  253. //刷新
  254. onRefresh() {
  255. this.finished = false;
  256. // 重新加载数据
  257. this.dataList = [];
  258. // 将 loading 设置为 true,表示处于加载状态
  259. this.total = 0;
  260. this.loading = true;
  261. this.dataForm.page = 1; // 分页数赋值为1
  262. this.loadData();
  263. },
  264. //加载数据
  265. loadData() {
  266. setTimeout(async () => {
  267. if (this.refreshing) {
  268. this.dataList = [];
  269. this.refreshing = false;
  270. }
  271. await this.getDataList();
  272. //this.dataForm.page++; // 分页数加一
  273. }, 100);
  274. },
  275. getDataList() {
  276. if (this.deviceType == "AirConditioner") {
  277. this.getAircond();
  278. }
  279. if (this.deviceType == "Relay") {
  280. this.getElec();
  281. }
  282. },
  283. getDeviceTypeList() {
  284. this.deviceTypeList = JSON.parse(
  285. JSON.stringify(getDictDataList("DeviceCategory"))
  286. );
  287. this.deviceTypeList.forEach((item) => {
  288. item.text = item.dictLabel;
  289. item.value = item.dictValue;
  290. });
  291. this.deviceTypeList = this.deviceTypeList.filter(
  292. (item) => item.value != "WaterMeter" && item.value != "Ammeter"
  293. );
  294. },
  295. getAircond() {
  296. this.dataForm.status="";
  297. Api.airconditioner(this.dataForm).then((res) => {
  298. if (res.data.code == 0) {
  299. if (res.data.data) {
  300. if (res.data.data.list.length == 0) {
  301. // 判断获取数据条数若等于0
  302. this.dataList = []; // 清空数组
  303. this.finished = true; // 停止加载
  304. }
  305. // 若数据条数不等于0
  306. this.dataList.push(...res.data.data.list); // 将数据放入list中
  307. this.loading = false; // 加载状态结束
  308. this.total = res.data.data.total;
  309. // 如果list长度大于等于总数据条数,数据全部加载完成
  310. if (this.dataList.length >= res.data.data.total) {
  311. this.finished = true; // 结束加载状态
  312. }
  313. } else {
  314. // 判断获取数据条数若等于0
  315. this.dataList = []; // 清空数组
  316. this.finished = true; // 停止加载
  317. }
  318. } else {
  319. this.loading = false; // 加载状态结束
  320. this.finished = true; // 停止加载
  321. }
  322. });
  323. },
  324. getElec() {
  325. Api.getElec(this.dataForm).then((res) => {
  326. if (res.data.code == 0) {
  327. if (res.data.data) {
  328. if (res.data.data.list.length == 0) {
  329. // 判断获取数据条数若等于0
  330. this.dataList = []; // 清空数组
  331. this.finished = true; // 停止加载
  332. }
  333. // 若数据条数不等于0
  334. this.dataList.push(...res.data.data.list); // 将数据放入list中
  335. this.loading = false; // 加载状态结束
  336. this.total = res.data.data.total;
  337. // 如果list长度大于等于总数据条数,数据全部加载完成
  338. if (this.dataList.length >= res.data.data.total) {
  339. this.finished = true; // 结束加载状态
  340. }
  341. } else {
  342. // 判断获取数据条数若等于0
  343. this.dataList = []; // 清空数组
  344. this.finished = true; // 停止加载
  345. }
  346. } else {
  347. this.loading = false; // 加载状态结束
  348. this.finished = true; // 停止加载
  349. }
  350. });
  351. },
  352. //下发指令开关
  353. changeSwitch(type, val, deviceId, index) {
  354. console.log(val)
  355. let msg = "";
  356. if (val.detail.value) {
  357. msg = "开启";
  358. } else {
  359. msg = "关闭";
  360. }
  361. uni.showModal({
  362. title: '提示',
  363. content: `请确认是否【${msg}】此设备`,
  364. success: function(res) {
  365. if (res.confirm) {
  366. if (type == "AirConditioner") {
  367. Api.setControl({
  368. keyword: "setPower",
  369. param: val.detail.value ? 1 : 0,
  370. deviceId: deviceId,
  371. }).then((res) => {
  372. if (res.data.code == 0) {
  373. this.dataList[index].attributeList[3].value = val;
  374. uni.showToast({
  375. title: '操作成功',
  376. duration: 2000
  377. });
  378. } else {
  379. uni.showToast({
  380. title: '操作失败',
  381. duration: 2000
  382. });
  383. }
  384. });
  385. }
  386. if (type == "Relay") {
  387. Api.setControlElec({
  388. keyword: "setRelay",
  389. param: val.detail.value ? 1 : 0,
  390. deviceId: deviceId,
  391. }).then((res) => {
  392. if (res.data.code == 0) {
  393. this.dataList[index].status = val;
  394. uni.showToast({
  395. title: '操作成功',
  396. duration: 2000
  397. });
  398. } else {
  399. uni.showToast({
  400. title: '操作失败',
  401. duration: 2000
  402. });
  403. }
  404. });
  405. }
  406. } else if (res.cancel) {
  407. console.log('用户点击取消');
  408. }
  409. }
  410. });
  411. },
  412. onConfirmMode(data,module,deviceId) {
  413. let deviceCommandDTO = {};
  414. switch (module) {
  415. case "modeTypeList":
  416. deviceCommandDTO = {
  417. keyword: "setMode",
  418. param: data,
  419. deviceId:deviceId,
  420. };
  421. break;
  422. case "temperatureList":
  423. deviceCommandDTO = {
  424. keyword: "setTemp",
  425. param: data,
  426. deviceId: deviceId,
  427. };
  428. break;
  429. case "speedTypeList":
  430. deviceCommandDTO = {
  431. keyword: "setFan",
  432. param: data,
  433. deviceId:deviceId,
  434. };
  435. break;
  436. }
  437. Api.setControl(deviceCommandDTO).then((res) => {
  438. this.$toast.clear();
  439. if (res.data.code == 0) {
  440. uni.showToast({
  441. title: '操作成功',
  442. duration: 2000
  443. });
  444. }
  445. });
  446. },
  447. }
  448. }
  449. </script>
  450. <style lang="scss" scoped>
  451. .uni-input {
  452. margin-right: 4px;
  453. }
  454. .uni-input,
  455. .inline {
  456. display: inline-block;
  457. }
  458. .form {
  459. display: flex;
  460. height: 48px;
  461. align-items: center;
  462. background-color: #fff;
  463. .drawdownMenu {
  464. display: flex;
  465. text-align: center;
  466. width: 50%;
  467. }
  468. }
  469. .header {
  470. background-color: #5c8fff;
  471. height: 25px;
  472. }
  473. .position {
  474. font-size: 16px;
  475. color: #fff;
  476. padding: 10px 16px;
  477. background: #5c8fff;
  478. .positionName {
  479. margin: 0 5px;
  480. }
  481. }
  482. .total {
  483. padding: 0 16px;
  484. margin: 8px 0;
  485. line-height: 15px;
  486. display: flex;
  487. text-align: left;
  488. text {
  489. font-size: 15px;
  490. vertical-align: middle;
  491. }
  492. }
  493. .list {
  494. padding: 0 16px;
  495. .each {
  496. background: #ffffff;
  497. box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.15);
  498. border-radius: 4px;
  499. margin-bottom: 12px;
  500. padding: 12px 16px;
  501. display: flex;
  502. flex-direction: column;
  503. align-items: flex-start;
  504. position: relative;
  505. .l1 {
  506. height: 22px;
  507. font-size: 16px;
  508. color: #0c1935;
  509. line-height: 22px;
  510. margin-bottom: 8px;
  511. }
  512. .l2,
  513. .operation {
  514. height: 18px;
  515. font-size: 14px;
  516. color: #999999;
  517. line-height: 18px;
  518. margin-bottom: 4px;
  519. }
  520. .operation {
  521. display: flex;
  522. width: 100%;
  523. position: relative;
  524. font-size: 13px;
  525. margin-top: 10px;
  526. text-align: center;
  527. }
  528. .switch {
  529. position: absolute;
  530. right: 10px;
  531. font-size: 18px;
  532. top: auto;
  533. z-index: 1;
  534. }
  535. }
  536. }
  537. </style>