Remotecontrol.vue 25 KB

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