Remotecontrol.vue 15 KB

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