control.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. import { defineStore } from "pinia";
  2. import { doorApi } from "@/api/business/door.js";
  3. import { faceApi } from "@/api/business/face.js";
  4. import { meetingApi, signOnOut } from "@/api/business/meeting.js";
  5. import { getToken, setToken, removeToken } from "@/utils/auth";
  6. import dayjs from 'dayjs'
  7. import config from "@/config";
  8. import tab from "@/plugins/tab.plugins";
  9. import nfc from "@/plugins/nfc.plugins.js";
  10. import modal from "@/plugins/modal.plugins.js";
  11. import keyListen from "@/plugins/keyListen.plugins.js";
  12. import permission from "@/plugins/permission.plugins.js";
  13. const controlStore = defineStore("control", {
  14. state: () => ({
  15. pageFunction: [], //被包含的功能
  16. isClicked: false, //按钮是否被点击
  17. form: {
  18. linkUrl: "",
  19. port: "",
  20. domain: undefined,
  21. doorList: {
  22. id: undefined,
  23. name: undefined,
  24. },
  25. },
  26. modal: {
  27. show: false,
  28. },
  29. picker: {
  30. show: false,
  31. title: "",
  32. list: [[]],
  33. defaultIndex: 0,
  34. },
  35. subsection: {
  36. list: ["服务器配置", "其它配置", "系统设置"],
  37. value: 0,
  38. },
  39. doooList: [],
  40. meetingDoorList: [],
  41. meetingRoomList: [],
  42. meetingTimeList: [],
  43. meetingReservaList: {
  44. dataAll: {},
  45. thisVenueData: [],
  46. thisVenueTime: {},
  47. nextSceneData: [],
  48. nextSceneTime: {},
  49. timeList: [],
  50. },
  51. }),
  52. actions: {
  53. /**
  54. * @初始化缓存数据
  55. */
  56. initData() {
  57. var that = this
  58. var storage = uni.getStorageSync("storage_face");
  59. if (storage) {
  60. config.baseUrl = "http://" + storage.domain + "/prod-api";
  61. that.form.domain = storage.domain;
  62. that.form.linkUrl = storage.linkUrl.indexOf(":") != -1 ? storage.linkUrl.split(":")[0] : storage.linkUrl;
  63. that.form.port = storage.port ? storage.port : "";
  64. that.form.meetingId = storage.meetingId || undefined;
  65. that.form.meetingName = storage.meetingName || undefined;
  66. that.form.doorList = {
  67. id: storage.doorList.id || undefined,
  68. name: storage.doorList.name || undefined,
  69. }
  70. }
  71. },
  72. /**
  73. * @初始化摄像头
  74. */
  75. initCamera() {
  76. var that = this
  77. //#ifdef APP-PLUS
  78. permission.getPermisson("camera").then((res) => {
  79. res ? that.handleChildren({ funcName: "开启摄像头", data: {} }) : "";
  80. });
  81. //#endif
  82. },
  83. /**
  84. * @初始化NFC
  85. */
  86. initNfc() {
  87. var that = this
  88. //#ifdef APP-PLUS
  89. nfc.initNFC();
  90. nfc.readNFC().then((e) => {
  91. that.openDoor();
  92. that.initNfc();
  93. });
  94. //#endif
  95. },
  96. /**
  97. * @初始化事件
  98. */
  99. initHandle() {
  100. this.handleChildren({ funcName: "初始化事件", data: {} })
  101. },
  102. /**
  103. * @弹窗确定按钮事件
  104. */
  105. modalConfirm(rules) {
  106. if (!this.form.linkUrl) {
  107. modal.msg("请输入链接地址");
  108. return;
  109. }
  110. if (!/^[a-zA-Z0-9][a-zA-Z0-9-]{1,61}(?:\.[a-zA-Z0-9]{2,})+$/.test(this.form.linkUrl)) {
  111. modal.msg("请输入正确的链接地址");
  112. return;
  113. }
  114. if (!this.form.meetingName && this.pageFunction.includes('会议')) {
  115. modal.msg("请选择绑定会议室");
  116. return;
  117. }
  118. if (!this.form.doorList.name && this.pageFunction.includes('门禁')) {
  119. modal.msg("请选择绑定门禁");
  120. return;
  121. }
  122. uni.setStorageSync("storage_face", this.form);
  123. this.modalClose();
  124. },
  125. /**
  126. * @弹窗退出按钮事件
  127. */
  128. modalCancel() {
  129. this.modal.show = false;
  130. //#ifdef APP-PLUS
  131. keyListen.quitApp();
  132. //#endif
  133. },
  134. /**
  135. * @弹窗关闭事件
  136. */
  137. modalClose() {
  138. this.handleChildren({ funcName: "开启摄像头", data: {} });
  139. this.modal.show = false;
  140. },
  141. /**
  142. * @section回调事件
  143. */
  144. sectionChange(e) {
  145. if (e == 1) {
  146. if (!this.form.linkUrl) {
  147. modal.msg("请输入链接地址");
  148. return;
  149. }
  150. if (!/^[a-zA-Z0-9][a-zA-Z0-9-]{1,61}(?:\.[a-zA-Z0-9]{2,})+$/.test(this.form.linkUrl)) {
  151. modal.msg("请输入正确的链接地址");
  152. return;
  153. }
  154. var domain = "";
  155. if (this.form.linkUrl) {
  156. domain = this.form.linkUrl;
  157. if (this.form.port) {
  158. domain += ":" + this.form.port;
  159. }
  160. }
  161. this.form.domain = domain;
  162. config.baseUrl = "http://" + this.form.domain + "/prod-api";
  163. if (this.pageFunction.includes('会议')) {
  164. this.getMeetingRoomList();
  165. }
  166. if (this.pageFunction.includes('门禁')) {
  167. this.getdoorList();
  168. }
  169. }
  170. this.subsection.value = e;
  171. },
  172. /**
  173. * @action弹出框点击事件
  174. */
  175. handlePicker(value, index, ind) {
  176. if (value == "绑定会议室") {
  177. this.picker.title = "绑定会议室";
  178. this.picker.list = [this.meetingRoomList];
  179. this.picker.defaultIndex = 0;
  180. } else if (value == "绑定门禁") {
  181. this.picker.title = "绑定门禁";
  182. this.picker.list = [this.doooList];
  183. this.picker.defaultIndex = 0;
  184. }
  185. this.picker.show = true;
  186. },
  187. /**
  188. * @action弹出框选择事件
  189. */
  190. pickerConfirm(e) {
  191. if (this.picker.title == "绑定会议室") {
  192. this.form.meetingId = e.value[0].value;
  193. this.form.meetingName = e.value[0].name;
  194. } else if (this.picker.title == "绑定门禁") {
  195. this.form.doorList.id = e.value[0].value;
  196. this.form.doorList.name = e.value[0].name;
  197. }
  198. this.picker.show = false;
  199. },
  200. /**
  201. * @会议室下拉列表
  202. */
  203. getMeetingRoomList() {
  204. var that = this
  205. that.meetingRoomList = [];
  206. meetingApi()
  207. .GetMeetingRoomList({
  208. domain: that.form.domain,
  209. })
  210. .then((requset) => {
  211. if (requset.data.length > 0) {
  212. requset.data.forEach((e) => {
  213. that.meetingRoomList.push({
  214. value: e.roomId,
  215. name: e.roomName,
  216. });
  217. });
  218. }
  219. });
  220. },
  221. /**
  222. * @门禁下拉列表
  223. */
  224. getdoorList() {
  225. doorApi()
  226. .Select({
  227. current: 1, //页数
  228. size: 2000, //条数
  229. domain: this.form.domain, //域名
  230. })
  231. .then((requset) => {
  232. if (requset.data.records.length > 0) {
  233. requset.data.records.forEach((e) => {
  234. this.doooList.push({
  235. value: e.deviceUuid,
  236. name: e.deviceName,
  237. });
  238. });
  239. }
  240. });
  241. },
  242. /**
  243. * @门禁开门
  244. */
  245. openDoor(event) {
  246. var that = this
  247. if (!this.form.doorList.name) {
  248. modal.msg("请先绑定门禁!");
  249. return;
  250. }
  251. if (this.isClicked) {
  252. modal.msg("请勿重复点击!");
  253. return;
  254. } else {
  255. this.isClicked = true;
  256. }
  257. doorApi()
  258. .control({
  259. domain: !getToken() ? this.form.domain : undefined, //域名
  260. userId: !getToken() ? event.userId : undefined,
  261. userName: !getToken() ? event.userName : undefined,
  262. productCode: "502_USKY",
  263. deviceUuid: !getToken() ? this.form.doorList.id : event.deviceUuid,
  264. commandCode: "door_onoff",
  265. commandValue: 1,
  266. })
  267. .then((item) => {
  268. modal.msg("开门成功");
  269. setTimeout(() => {
  270. this.isClicked = false;
  271. }, 2000);
  272. that.insertDoorRecord(event, "成功");
  273. })
  274. .catch((err) => {
  275. console.log(err);
  276. setTimeout(() => {
  277. this.isClicked = false;
  278. }, 2000);
  279. that.insertDoorRecord(event, "失败:" + err);
  280. });
  281. },
  282. /**
  283. * @新增开门记录
  284. */
  285. insertDoorRecord(event, msg) {
  286. doorApi()
  287. .RecordInsert({
  288. domain: !getToken() ? this.form.domain : undefined, //域名
  289. userName: event.userName, //用户姓名
  290. deviceUuid: !getToken() ? this.form.doorList.id : event.deviceUuid,//设备Uuid
  291. passType: 3, //通行方式(1、人脸 2、刷卡 3、手机)
  292. passTime: dayjs().format("YYYY-MM-DDTHH:mm:ss"), //通行时间
  293. passResult: msg, //通行结果
  294. })
  295. .then((item) => {
  296. console.log(msg);
  297. })
  298. .catch((err) => {
  299. console.log(err);
  300. });
  301. },
  302. /**
  303. * @人脸验证
  304. */
  305. faceVerify(imageBase) {
  306. var that = this
  307. faceApi()
  308. .faceVef({
  309. domain: that.form.domain,
  310. imageBase: imageBase,
  311. })
  312. .then((item) => {
  313. if (item.data.code === 200 || item.data.code === 201) {
  314. item.data.userName = item.data.faceName;
  315. if (that.pageFunction.includes('会议')) {
  316. that.meetingVerify(item.data);
  317. } else {
  318. that.openDoor(item.data);
  319. }
  320. }
  321. if (item.data.msg != "人脸验证接口返回异常") {
  322. modal.msg(item.data.msg);
  323. }
  324. that.handleChildren({ funcName: "人脸冷却", data: {} });
  325. })
  326. .catch((err) => {
  327. that.handleChildren({ funcName: "人脸冷却", data: {} });
  328. });
  329. },
  330. /**
  331. * @会议验证
  332. */
  333. meetingVerify(event) {
  334. var that = this
  335. if (that.meetingReservaList.thisVenueData.length > 0) {
  336. meetingApi()
  337. .Attendee({
  338. domain: this.form.domain,
  339. meetingId: this.meetingReservaList.thisVenueData[0].meetingId,
  340. userId: event.userId,
  341. userName: event.userName,
  342. })
  343. .then((item) => {
  344. if (item.data.status == "1") {
  345. that.openDoor(event);
  346. that.meetingSign(event);
  347. }
  348. modal.msg(item.data.msg);
  349. });
  350. }
  351. },
  352. /**
  353. * @会议签到
  354. */
  355. meetingSign(event) {
  356. signOnOut({
  357. domain: this.form.domain,
  358. meetingId: this.meetingReservaList.thisVenueData[0].meetingId,
  359. userId: event.userId, //参会人Id
  360. mothodType: 0, //签到签退类别(0.签到 1.签退)
  361. signType: 1, //签到签退方式(0.人工 1.人脸)
  362. }).then((item) => { });
  363. },
  364. /**
  365. * @解析父页面传回的数据
  366. */
  367. analysisData(event) {
  368. if ("funcName" in event) {
  369. if (event.funcName == "打开配置") {
  370. this.handleChildren({ funcName: "关闭摄像头", data: {} });
  371. tab.navigateTo("/pages/door/setting/index")
  372. // this.modal.show = true;
  373. } else if (event.funcName == "人脸识别") {
  374. this.faceVerify(event.data.imageBase);
  375. } else if (event.funcName == "点击开门") {
  376. this.openDoor({
  377. userId: 99,
  378. userName: "方惠圣",
  379. });
  380. }
  381. }
  382. },
  383. /**
  384. * @向子页面发送数据
  385. */
  386. handleChildren(data) {
  387. // #ifdef APP-PLUS
  388. var pages = getCurrentPages();
  389. var currentWebview = pages[pages.length - 1].$getAppWebview();
  390. var wv = currentWebview.children()[0];
  391. wv.evalJS(`receiveData(${JSON.stringify(data)})`);
  392. // #endif
  393. // #ifdef H5
  394. var iframe = document.getElementById("faceView");
  395. iframe.contentWindow.postMessage(data, "*");
  396. // #endif
  397. }
  398. },
  399. });
  400. export default controlStore;