Remotecontrol.vue 23 KB

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