Remotecontrol.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940
  1. <template>
  2. <view>
  3. <!-- <view class="position">
  4. <picker mode="multiSelector" @columnchange="bindMultiPickerColumnChange"
  5. @change="(val)=>confirmHandle(val,'position')" :range="positionList" style="width:100%;height: 100%;"
  6. 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. <u-cell-group class="toptemplate">
  13. <u-cell :title="mytitle" @click="floorchange">
  14. <u-icon slot="icon" size="40" color="#fff" name="map"></u-icon>
  15. <u-icon slot="right-icon" size="40" color="#fff" name="search"></u-icon>
  16. </u-cell>
  17. </u-cell-group>
  18. <view class="form">
  19. <view class="drawdownMenu">
  20. <picker @change="(val)=>confirmHandle(val,'deviceType')" :value="deviceTypeIndex"
  21. :range="deviceTypeList" style="width:100%;height: 100%;" range-key="dictLabel">
  22. <view class="uni-input">{{deviceTypeList[deviceTypeIndex].dictLabel}}</view>
  23. <u-icon name="arrow-down-fill" color="#666" size="16" class="inline"></u-icon>
  24. </picker>
  25. </view>
  26. <view class="drawdownMenu" v-if="deviceType=='Relay'">
  27. <picker @change="(val)=>confirmHandle(val,'deviceStatus')" :value="deviceStatusIndex"
  28. :range="deviceStatusList" style="width:100%;height: 100%;" range-key="text">
  29. <view class="uni-input">{{deviceStatusList[deviceStatusIndex].text}}</view>
  30. <u-icon name="arrow-down-fill" color="#666" size="16" class="inline"></u-icon>
  31. </picker>
  32. </view>
  33. </view>
  34. <view class="total">
  35. 共有<text style="color: #f44;">{{total}}</text>条记录
  36. </view>
  37. <!-- 列表 -->
  38. <view class="list">
  39. <template v-if="deviceType == 'AirConditioner'">
  40. <view class="each c" v-for="(item,index) in dataList" :class="'bg'+(item.attributeList.length==0?'':item.attributeList[2].value)">
  41. <div class="top1">
  42. <template v-if="item.attributeList.length!=0">
  43. <image v-if="item.attributeList[2].value == '1'"
  44. src="../../../static/management/taiyang.png"></image>
  45. <image v-if="item.attributeList[2].value == '2'||item.attributeList[2].value == '0'"
  46. src="../../../static/management/zl.png"></image>
  47. <image v-if="item.attributeList[2].value == '4'"
  48. src="../../../static/management/auto.png"</image>
  49. <image v-if="item.attributeList[2].value == '8'"
  50. src="../../../static/management/cs.png"</image>
  51. </template>
  52. <view class="l1">{{item.airConditionerName}}</view>
  53. <view class="l2">{{ item.installSite }}{{ item.roomNumbers }}</view>
  54. <view class="l3">{{item.attributeList.length==0?'--':item.attributeList[5].value}}℃</view>
  55. <view class="l4">室温:{{ item.attributeList.length==0?'--':item.attributeList[4].value }}℃</view>
  56. </div>
  57. </div>
  58. <view class="operation" v-if="item.attributeList&&item.attributeList.length!=0">
  59. <picker
  60. @change="(val)=>confirmHandle(val,'modeType',item.deviceId,item.attributeList[2].sensorAddress)"
  61. :value="item.attributeList[2].value|findInd(modeTypeList)" :range="modeTypeList"
  62. style="width:100%;height: 100%;" range-key="dictLabel">
  63. <view class="uni-input">{{findInd2(item.attributeList[2].value,modeTypeList)}}</view>
  64. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  65. </picker>
  66. <picker
  67. @change="(val)=>confirmHandle(val,'temp',item.deviceId,item.attributeList[5].sensorAddress)"
  68. :value="item.attributeList[5].value|findInd(temperatureList)" :range="temperatureList"
  69. style="width:100%;height: 100%;">
  70. <view class="uni-input">{{item.attributeList[5].value}}</view>
  71. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  72. </picker>
  73. <picker
  74. @change="(val)=>confirmHandle(val,'speedType',item.deviceId,item.attributeList[0].sensorAddress)"
  75. :value="item.attributeList[0].value|findInd(speedTypeList)" :range="speedTypeList"
  76. style="width:100%;height: 100%;" range-key="dictLabel">
  77. <view class="uni-input">{{findInd2(item.attributeList[0].value,speedTypeList)}}</view>
  78. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  79. </picker>
  80. </view>
  81. <view class="operation" v-else>
  82. <picker style="width:100%;height: 100%;">
  83. <view class="uni-input">--</view>
  84. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  85. </picker>
  86. <picker style="width:100%;height: 100%;">
  87. <view class="uni-input">--</view>
  88. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  89. </picker>
  90. <picker style="width:100%;height: 100%;">
  91. <view class="uni-input">--</view>
  92. <u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
  93. </picker>
  94. </view>
  95. <switch :checked="item.attributeList[3].value==1?true:false" v-if="item.attributeList.length!=0"
  96. @change="(val)=>changeSwitch('AirConditioner', val, item.deviceId, index,item.attributeList[3].sensorAddress)"
  97. style="transform:scale(0.7)" class="switch" />
  98. </view>
  99. </template>
  100. <template v-if="deviceType == 'Relay'">
  101. <view :class="item.status==0?'each':'each on2'" v-for="(item,index) in dataList">
  102. <div class="top">
  103. <view class="l1">{{item.controlName}}</view>
  104. <view class="l2">空间信息:{{ item.installSite }}</view>
  105. <div class="open">
  106. <image src="../../../static/management/kg.png" @click="control(item.deviceId, item.status)">
  107. </image>
  108. <p>{{ item | delStatus }}</p>
  109. </div>
  110. </div>
  111. <div class="operation2" v-if="item.attributeList && item.attributeList.length > 0">
  112. <div v-for="(ope, index2) in item.relayNames" :key="index2" class="s">
  113. <p>{{ ope.name }}</p>
  114. <u-switch :value="item.attributeList[index2].value | delTimestamp" active-value="a"
  115. inactive-value="b" @change="handleChange(
  116. 'switch',
  117. $event,
  118. index,
  119. item.attributeList[index2].sensorAddress
  120. )
  121. " style="margin: 0 auto;height: 16px;"></u-switch>
  122. </div>
  123. </div>
  124. </view>
  125. </template>
  126. </view>
  127. <u-picker :show="showfloor" ref="uPicker" @confirm="confirmfloor" @cancel='cancelfloor' :columns="columns"
  128. keyName="orgName" @change="changeHandler" visibleItemCount="7" itemHeight="70"></u-picker>
  129. </view>
  130. </template>
  131. <script>
  132. import {
  133. isEmpty,
  134. getDictDataList,
  135. getUrlKey
  136. } from "@/utils/index";
  137. import Api from "./@/http/Api.js";
  138. export default {
  139. data() {
  140. return {
  141. showfloor: false,
  142. showtype: false,
  143. modeTypeList: [],
  144. modeTypeIndex: 0,
  145. temperatureList: [],
  146. tempIndex: 0,
  147. columns: [],
  148. speedTypeList: [],
  149. speedTypeIndex: 0,
  150. dataForm: {
  151. page: 1,
  152. limit: 10,
  153. buildingId: "",
  154. storeyId: "",
  155. status: "",
  156. controlCategory: "CommonLighting",
  157. },
  158. airIcon:{
  159. 2:'',
  160. 4:'',
  161. 8:''
  162. },
  163. mytitle: '',
  164. total: 0,
  165. refreshing: false,
  166. finished: false,
  167. deviceTypeIndex: 0,
  168. deviceStatusIndex: 0,
  169. name: '跨境电商',
  170. projectName: '',
  171. p1: 0,
  172. p2: 0,
  173. positionList: [
  174. [],
  175. []
  176. ],
  177. columnData: [],
  178. deviceType: "AirConditioner",
  179. deviceStatus: '',
  180. deviceTypeList: [],
  181. dataList: [],
  182. deviceStatusList: [{
  183. text: "全部",
  184. value: ""
  185. },
  186. {
  187. text: "开启",
  188. value: 1
  189. },
  190. {
  191. text: "关闭",
  192. value: 0
  193. },
  194. ],
  195. }
  196. },
  197. onReachBottom() {
  198. if (!this.finished) {
  199. this.dataForm.page++;
  200. this.getDataList();
  201. }
  202. },
  203. onLoad() {
  204. let getDictDataList = uni.getStorageSync('getDictDataList');
  205. for (let i = 0; i < getDictDataList.length; i++) {
  206. if (getDictDataList[i].dictType == 'ModeType') {
  207. this.modeTypeList = getDictDataList[i].dataList
  208. this.modeTypeList.push({dictLabel: "制冷",dictTypeId: "1610183082852225025",dictValue: "0"})
  209. }
  210. if (getDictDataList[i].dictType == 'SpeedType') {
  211. this.speedTypeList = getDictDataList[i].dataList
  212. }
  213. if (getDictDataList[i].dictType == 'DeviceCategory') {
  214. this.deviceTypeList = getDictDataList[i].dataList;
  215. this.deviceTypeList.forEach((item) => {
  216. item.text = item.dictLabel;
  217. item.value = item.dictValue;
  218. });
  219. this.deviceTypeList = this.deviceTypeList.filter(
  220. (item) => item.value != "WaterMeter" && item.value != "Ammeter"
  221. );
  222. }
  223. }
  224. this.getBuildList();
  225. // this.getDeviceTypeList();
  226. this.setTemperatureList();
  227. this.getDataList()
  228. },
  229. watch: {
  230. "dataForm.buildingId"(newval, oldval) {
  231. if (newval != oldval) {
  232. this.onRefresh();
  233. }
  234. },
  235. "dataForm.storeyId"(newval, oldval) {
  236. if (newval != oldval) {
  237. this.onRefresh();
  238. }
  239. },
  240. },
  241. filters: {
  242. delTimestamp(val) {
  243. if (!val) return "b";
  244. if (val.indexOf("n") > -1) {
  245. return 'a'; //开a
  246. } else {
  247. return 'b'; //关b
  248. }
  249. },
  250. delStatus(item) {
  251. let status = 0;
  252. if (item.attributeList && item.attributeList.length > 0) {
  253. for (let i = 0; i < item.relayNames.length; i++) {
  254. if (
  255. item.attributeList[i].value &&
  256. item.attributeList[i].value.indexOf("n") > -1
  257. ) {
  258. status++;
  259. } else {
  260. status--;
  261. }
  262. }
  263. if (status == item.relayNames.length) {
  264. item.status = 1;
  265. return "全关";
  266. }
  267. if (status == 0 - item.relayNames.length) {
  268. item.status = 0;
  269. return "全开";
  270. }
  271. return "全关";
  272. } else {
  273. return "全关";
  274. }
  275. },
  276. findInd(val, list) {
  277. if (isEmpty(val)) {
  278. return 0;
  279. }
  280. if (list.length > 5) {
  281. return list.findIndex((item) => item == val);
  282. } else {
  283. return list.findIndex((item) => parseFloat(item.dictValue) == val);
  284. }
  285. }
  286. },
  287. methods: {
  288. handleChange(type, val, index, identifier) {
  289. let that = this;
  290. if (type == "switch") {
  291. let msg = "";
  292. let deviceId = this.dataList[index].deviceId;
  293. let params = {
  294. // keyword: "setRelay",
  295. value: val,
  296. deviceId: deviceId,
  297. identifier: identifier,
  298. action: 0,
  299. };
  300. if (val == "a") {
  301. msg = "开启";
  302. }
  303. if (val == "b") {
  304. msg = "关闭";
  305. }
  306. uni.showModal({
  307. title: '提示',
  308. content: `确定执行${msg}操作`,
  309. success(res) {
  310. if (res.confirm) {
  311. that.switchLighting(type, params, index, msg, identifier);
  312. } else {
  313. uni.showToast({
  314. icon: 'none',
  315. title: '已取消'
  316. })
  317. }
  318. },
  319. })
  320. }
  321. },
  322. switchLighting(type, val, index, msg, identifier) {
  323. uni.showLoading({
  324. title: `正在${msg},请稍后`
  325. });
  326. if (type == "switch") {
  327. Api.setControlElec(val).then((res) => {
  328. uni.hideLoading()
  329. if (res.data.code == 0) {
  330. this.getDataList();
  331. uni.showToast({
  332. title: '操作成功'
  333. })
  334. }
  335. });
  336. }
  337. },
  338. findInd2(val, list) {
  339. if (isEmpty(val)) {
  340. return 0;
  341. }
  342. if (list.find((item) => parseFloat(item.dictValue) == val)) {
  343. return list.find((item) => parseFloat(item.dictValue) == val).dictLabel;
  344. } else {
  345. return list[0].dictLabel
  346. }
  347. },
  348. floorchange() {
  349. this.showfloor = true;
  350. },
  351. confirmfloor(e) {
  352. let a="";let b="";
  353. if(e.value[0]){
  354. a=e.value[0].orgName=='全部'?'跨境电商':e.value[0].orgName;
  355. this.dataForm.buildingId = e.value[0].orgId;
  356. }
  357. if(e.value[1]){
  358. b=e.value[1].orgName=='全部'?'':e.value[1].orgName;
  359. this.dataForm.storeyId = e.value[1].orgId?e.value[1].orgId:'';
  360. }
  361. this.mytitle = a+b;
  362. this.showfloor = false;
  363. this.dataList = []; // 清空数组
  364. this.dataForm.page = 1;
  365. this.getDataList()
  366. },
  367. cancelfloor() {
  368. this.showfloor = false;
  369. },
  370. changeHandler(e) {
  371. const {
  372. columnIndex,
  373. index,
  374. // 微信小程序无法将picker实例传出来,只能通过ref操作
  375. picker = this.$refs.uPicker
  376. } = e
  377. if (columnIndex === 0) {
  378. this.loading = true
  379. picker.setColumnValues(1, this.columnData[index])
  380. this.loading = false
  381. }
  382. // this.dataList = []; // 清空数组
  383. // this.dataForm.page = 1;
  384. // this.getDataList()
  385. },
  386. //获取楼栋
  387. getBuildList() {
  388. this.$api.get('/control/getOrgStructureTree/', {})
  389. .then(res => {
  390. if (res.data.code == 0) {
  391. let json = [{
  392. category: "s",
  393. childrenList: null,
  394. orgId: "",
  395. orgName: "全部",
  396. }];
  397. this.dataForm.projectId = res.data.data[0].orgId;
  398. this.mytitle = res.data.data[0].orgName;
  399. this.alldata = res.data.data[0].childrenList;
  400. this.columns = [
  401. json.concat(res.data.data[0].childrenList),
  402. []
  403. ]
  404. let allfloor = [[]];
  405. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  406. allfloor.push(json.concat(res.data.data[0].childrenList[i].childrenList));
  407. }
  408. this.columnData = allfloor;
  409. this.dataList = []; // 清空数组
  410. this.dataForm.page = 1;
  411. this.getDataList()
  412. } else {
  413. this.showdct = true
  414. }
  415. })
  416. },
  417. control(deviceId, status) {
  418. let msg = status == 0 ? '全开' : '全关';
  419. let that = this;
  420. uni.showModal({
  421. title: '提示',
  422. content: `确定执行${msg}操作`,
  423. success(res) {
  424. if (res.confirm) {
  425. uni.showLoading({
  426. title: "正在操作,请稍后。。。",
  427. })
  428. Api.setControlElec({
  429. action: 0,
  430. identifier: "",
  431. deviceId: deviceId,
  432. value: status == 0 ? "qk" : "qg",
  433. }).then((res) => {
  434. uni.hideLoading()
  435. if (res.data.code == 0) {
  436. that.getDataList();
  437. uni.showLoading({
  438. title: "操作成功",
  439. })
  440. }
  441. });
  442. } else {
  443. uni.showToast({
  444. icon: 'none',
  445. title: '已取消'
  446. })
  447. }
  448. },
  449. })
  450. },
  451. setTemperatureList() {
  452. this.temperatureList = [];
  453. for (let i = 16; i < 33; i++) {
  454. this.temperatureList.push(i);
  455. }
  456. },
  457. confirmHandle(e, type, deviceId, identifier) {
  458. this.dataForm.page = 1;
  459. if (type == 'position') {
  460. // this.p1 = e.detail.value[0];
  461. // this.p2 = e.detail.value[1];
  462. // this.dataForm.buildingId = this.p1 == 0 ? '' : this.positionList[0][this.p1].orgId;
  463. // this.dataForm.storeyId = this.p2 == 0 ? "" : this.positionList[1][this.p2].orgId;
  464. // let buildName = this.p1 == 0 ? "" : '-' + this.positionList[0][this.p1].orgName;
  465. // let storeyName = this.p2 == 0 ? "" : '-' + this.positionList[1][this.p2].orgName;
  466. // this.name = this.projectName + buildName + storeyName;
  467. } else {
  468. let index = type + "Index";
  469. this[index] = e.detail.value;
  470. if (type == "deviceType") {
  471. this.deviceType = this.deviceTypeList[e.detail.value].value;
  472. this.onRefresh();
  473. }
  474. if (type == "deviceStatus") {
  475. this.deviceStatus = this.deviceStatusList[e.detail.value].value;
  476. this.dataForm.status = this.deviceStatus;
  477. this.onRefresh();
  478. }
  479. if (type == "modeType" || type == "speedType" || type == "temp") {
  480. let data="";
  481. if(type=='modeType'){
  482. data = this.modeTypeList[e.detail.value].dictValue;
  483. }
  484. if(type=='speedType'){
  485. data =this.speedTypeList[e.detail.value].dictValue;
  486. }
  487. if(type=='temp'){
  488. data = this.temperatureList[e.detail.value];
  489. }
  490. this.onConfirmMode(data, deviceId, identifier);
  491. }
  492. }
  493. },
  494. //刷新
  495. onRefresh() {
  496. this.finished = false;
  497. // 重新加载数据
  498. this.dataList = [];
  499. // 将 loading 设置为 true,表示处于加载状态
  500. this.total = 0;
  501. this.loading = true;
  502. this.dataForm.page = 1; // 分页数赋值为1
  503. this.loadData();
  504. },
  505. //加载数据
  506. loadData() {
  507. setTimeout(async () => {
  508. if (this.refreshing) {
  509. this.dataList = [];
  510. this.refreshing = false;
  511. }
  512. await this.getDataList();
  513. //this.dataForm.page++; // 分页数加一
  514. }, 100);
  515. },
  516. getDataList() {
  517. if (this.deviceType == "AirConditioner") {
  518. this.getAircond();
  519. }
  520. if (this.deviceType == "Relay") {
  521. this.getElec();
  522. }
  523. },
  524. // getDeviceTypeList() {
  525. // this.deviceTypeList = JSON.parse(
  526. // JSON.stringify(getDictDataList("DeviceCategory"))
  527. // );
  528. // this.deviceTypeList.forEach((item) => {
  529. // item.text = item.dictLabel;
  530. // item.value = item.dictValue;
  531. // });
  532. // this.deviceTypeList = this.deviceTypeList.filter(
  533. // (item) => item.value != "WaterMeter" && item.value != "Ammeter"
  534. // );
  535. // },
  536. getAircond() {
  537. this.dataForm.status = "";
  538. Api.airconditioner(this.dataForm).then((res) => {
  539. if (res.data.code == 0) {
  540. if (res.data.data) {
  541. if (res.data.data.list.length == 0) {
  542. // 判断获取数据条数若等于0
  543. this.dataList = []; // 清空数组
  544. this.finished = true; // 停止加载
  545. }
  546. // 若数据条数不等于0
  547. if (this.dataForm.page == 1) {
  548. this.dataList = res.data.data.list;
  549. } else {
  550. this.dataList.push(...res.data.data.list); // 将数据放入list中
  551. }
  552. this.loading = false; // 加载状态结束
  553. this.total = res.data.data.total;
  554. // 如果list长度大于等于总数据条数,数据全部加载完成
  555. if (this.dataList.length >= res.data.data.total) {
  556. this.finished = true; // 结束加载状态
  557. }
  558. } else {
  559. // 判断获取数据条数若等于0
  560. this.dataList = []; // 清空数组
  561. this.finished = true; // 停止加载
  562. }
  563. } else {
  564. this.loading = false; // 加载状态结束
  565. this.finished = true; // 停止加载
  566. }
  567. });
  568. },
  569. getElec() {
  570. Api.getElec(this.dataForm).then((res) => {
  571. if (res.data.code == 0) {
  572. if (res.data.data) {
  573. if (res.data.data.list.length == 0) {
  574. // 判断获取数据条数若等于0
  575. this.dataList = []; // 清空数组
  576. this.finished = true; // 停止加载
  577. }
  578. // 若数据条数不等于0
  579. if (this.dataForm.page == 1) {
  580. this.dataList = res.data.data.list;
  581. } else {
  582. this.dataList.push(...res.data.data.list); // 将数据放入list中
  583. }
  584. this.loading = false; // 加载状态结束
  585. this.total = res.data.data.total;
  586. // 如果list长度大于等于总数据条数,数据全部加载完成
  587. if (this.dataList.length >= res.data.data.total) {
  588. this.finished = true; // 结束加载状态
  589. }
  590. } else {
  591. // 判断获取数据条数若等于0
  592. this.dataList = []; // 清空数组
  593. this.finished = true; // 停止加载
  594. }
  595. } else {
  596. this.loading = false; // 加载状态结束
  597. this.finished = true; // 停止加载
  598. }
  599. });
  600. },
  601. //下发指令开关
  602. changeSwitch(type, val, deviceId, index, identifier) {
  603. let msg = "";
  604. if (val.detail.value) {
  605. msg = "开启";
  606. } else {
  607. msg = "关闭";
  608. }
  609. uni.showModal({
  610. title: '提示',
  611. content: `请确认是否【${msg}】此设备`,
  612. success: function(res) {
  613. if (res.confirm) {
  614. if (type == "AirConditioner") {
  615. Api.setControl({
  616. identifier: identifier,
  617. action: 0,
  618. value: val.detail.value ? 1 : 0,
  619. deviceId: deviceId,
  620. }).then((res) => {
  621. if (res.data.code == 0) {
  622. this.dataList[index].attributeList[3].value = val;
  623. uni.showToast({
  624. title: '操作成功',
  625. duration: 2000
  626. });
  627. } else {
  628. uni.showToast({
  629. title: '操作失败',
  630. duration: 2000
  631. });
  632. }
  633. });
  634. }
  635. if (type == "Relay") {
  636. Api.setControlElec({
  637. identifier: identifier,
  638. action: 0,
  639. value: val.detail.value ? 1 : 0,
  640. deviceId: deviceId,
  641. }).then((res) => {
  642. if (res.data.code == 0) {
  643. this.dataList[index].status = val;
  644. uni.showToast({
  645. title: '操作成功',
  646. duration: 2000
  647. });
  648. } else {
  649. uni.showToast({
  650. title: '操作失败',
  651. duration: 2000
  652. });
  653. }
  654. });
  655. }
  656. } else if (res.cancel) {
  657. console.log('用户点击取消');
  658. }
  659. }
  660. });
  661. },
  662. onConfirmMode(data, deviceId, identifier) {
  663. let deviceCommandDTO = {
  664. action: 0,
  665. identifier: identifier,
  666. value: data,
  667. deviceId: deviceId,
  668. };
  669. // switch (module) {
  670. // case "modeTypeList":
  671. // deviceCommandDTO = {
  672. // action: 0,
  673. // identifier:identifier,
  674. // value: data,
  675. // deviceId: deviceId,
  676. // };
  677. // break;
  678. // case "temperatureList":
  679. // deviceCommandDTO = {
  680. // keyword: "setTemp",
  681. // param: data,
  682. // deviceId: deviceId,
  683. // };
  684. // break;
  685. // case "speedTypeList":
  686. // deviceCommandDTO = {
  687. // keyword: "setFan",
  688. // param: data,
  689. // deviceId: deviceId,
  690. // };
  691. // break;
  692. // }
  693. Api.setControl(deviceCommandDTO).then((res) => {
  694. //this.$toast.clear();
  695. if (res.data.code == 0) {
  696. uni.showToast({
  697. title: '操作成功',
  698. duration: 2000
  699. });
  700. this.onRefresh();
  701. }
  702. });
  703. },
  704. }
  705. }
  706. </script>
  707. <style lang="scss" scoped>
  708. .uni-input {
  709. margin-right: 4px;
  710. }
  711. .uni-input,
  712. .inline {
  713. display: inline-block;
  714. }
  715. .form {
  716. display: flex;
  717. height: 48px;
  718. align-items: center;
  719. background-color: #fff;
  720. .drawdownMenu {
  721. display: flex;
  722. text-align: center;
  723. min-width: 50%;
  724. flex:1;
  725. }
  726. }
  727. .header {
  728. background-color: #5c8fff;
  729. height: 25px;
  730. }
  731. .position {
  732. font-size: 16px;
  733. color: #fff;
  734. padding: 10px 16px;
  735. background: #5c8fff;
  736. .positionName {
  737. margin: 0 5px;
  738. }
  739. }
  740. .total {
  741. padding: 0 16px;
  742. margin: 8px 0;
  743. line-height: 15px;
  744. display: flex;
  745. text-align: left;
  746. text {
  747. font-size: 15px;
  748. vertical-align: middle;
  749. }
  750. }
  751. .list {
  752. padding: 0 16px;
  753. .each {
  754. background: #ffffff;
  755. box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.15);
  756. border-radius: 4px;
  757. margin-bottom: 12px;
  758. position: relative;
  759. box-shadow: 0px 0px 2px 4px rgba(87, 134, 238, 0.03);
  760. &.on2 {
  761. background: linear-gradient(to bottom,
  762. rgba(255, 155, 37, 0.25),
  763. rgba(255, 234, 200, 0.13),
  764. rgba(255, 255, 255, 0.04));
  765. }
  766. &.c {
  767. display: flex;
  768. flex-direction: column;
  769. .top1 {
  770. padding: 16px 20px;
  771. border-bottom: 1px solid #E6E7EA;
  772. image{
  773. width: 54px;
  774. height: 56px;
  775. position: absolute;
  776. left: 0;
  777. top: 0;
  778. z-index: 1;
  779. }
  780. }
  781. }
  782. &.bg0,&.bg2{
  783. background: linear-gradient(to bottom,#D2F0FF,#FFFFFF)
  784. }
  785. &.bg1{
  786. background: linear-gradient(to bottom,#FFE2DF,#FFFFFF)
  787. }
  788. &.bg4{
  789. background: linear-gradient(to bottom,#DDF8DC,#FFFFFF)
  790. }
  791. &.bg8{
  792. background: linear-gradient(to bottom,#DEE4FE,#FFFFFF)
  793. }
  794. .top {
  795. padding: 16px 20px;
  796. border-bottom: 1px solid #ddd;
  797. position: relative;
  798. .open {
  799. position: absolute;
  800. right: 0;
  801. top: 0;
  802. height: 100%;
  803. width: 60px;
  804. display: flex;
  805. flex-direction: column;
  806. justify-content: space-between;
  807. align-items: center;
  808. color: #2e69eb;
  809. font-size: 14px;
  810. padding: 12px 0;
  811. border-left: 1px solid #e6e7ea;
  812. box-sizing: border-box;
  813. image {
  814. width: 28px;
  815. height: 26px;
  816. cursor: pointer;
  817. }
  818. }
  819. }
  820. .l1 {
  821. height: 22px;
  822. font-size: 16px;
  823. color: #0c1935;
  824. line-height: 22px;
  825. margin-bottom: 2px;
  826. }
  827. .l2 {
  828. font-size: 12px;
  829. color: #697081;
  830. }
  831. .l3 {
  832. text-align: center;
  833. font-size: 32px;
  834. }
  835. .l4 {
  836. text-align: right;
  837. font-size: 14px;
  838. color: #0C1935;
  839. }
  840. .operation {
  841. display: flex;
  842. width: 100%;
  843. position: relative;
  844. font-size: 14px;
  845. padding: 18px;
  846. text-align: center;
  847. box-sizing:border-box;
  848. .uni-input{
  849. color: #2e69eb;
  850. }
  851. }
  852. .switch {
  853. position: absolute;
  854. right: 10px;
  855. font-size: 18px;
  856. top: auto;
  857. z-index: 1;
  858. }
  859. .operation2 {
  860. width: 100%;
  861. display: flex;
  862. align-items: center;
  863. justify-content: center;
  864. box-sizing: border-box;
  865. .s {
  866. flex: 1;
  867. width: 200px;
  868. text-align: center;
  869. line-height: 26px;
  870. padding: 10px 0;
  871. font-size: 14px;
  872. color: #697081;
  873. border-right: 1px solid #ddd;
  874. &:last-child {
  875. border-right: none;
  876. }
  877. }
  878. }
  879. }
  880. }
  881. </style>