control.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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.isClicked) {
  248. modal.msg("请勿重复点击!");
  249. return;
  250. } else {
  251. this.isClicked = true;
  252. }
  253. doorApi()
  254. .control({
  255. domain: !getToken() ? this.form.domain : undefined, //域名
  256. userId: !getToken() ? event.userId : undefined,
  257. userName: !getToken() ? event.userName : undefined,
  258. productCode: "502_USKY",
  259. deviceUuid: !getToken() ? this.form.doorList.id : event.deviceUuid,
  260. commandCode: "door_onoff",
  261. commandValue: 1,
  262. })
  263. .then((item) => {
  264. modal.msg("开门成功");
  265. setTimeout(() => {
  266. this.isClicked = false;
  267. }, 2000);
  268. that.insertDoorRecord(event, "成功");
  269. })
  270. .catch((err) => {
  271. console.log(err);
  272. setTimeout(() => {
  273. this.isClicked = false;
  274. }, 2000);
  275. that.insertDoorRecord(event, "失败:" + err);
  276. });
  277. },
  278. /**
  279. * @新增开门记录
  280. */
  281. insertDoorRecord(event, msg) {
  282. doorApi()
  283. .RecordInsert({
  284. domain: !getToken() ? this.form.domain : undefined, //域名
  285. userName: event.userName, //用户姓名
  286. deviceUuid: !getToken() ? this.form.doorList.id : event.deviceUuid,//设备Uuid
  287. passType: 3, //通行方式(1、人脸 2、刷卡 3、手机)
  288. passTime: dayjs().format("YYYY-MM-DDTHH:mm:ss"), //通行时间
  289. passResult: msg, //通行结果
  290. })
  291. .then((item) => {
  292. console.log(msg);
  293. })
  294. .catch((err) => {
  295. console.log(err);
  296. });
  297. },
  298. /**
  299. * @人脸验证
  300. */
  301. faceVerify(imageBase) {
  302. var that = this
  303. faceApi()
  304. .faceVef({
  305. domain: that.form.domain,
  306. imageBase: imageBase,
  307. })
  308. .then((item) => {
  309. if (item.data.code === 200 || item.data.code === 201) {
  310. item.data.userName = item.data.faceName;
  311. if (that.pageFunction.includes('会议')) {
  312. that.meetingVerify(item.data);
  313. } else {
  314. that.openDoor(item.data);
  315. }
  316. }
  317. if (item.data.msg != "人脸验证接口返回异常") {
  318. modal.msg(item.data.msg);
  319. }
  320. that.handleChildren({ funcName: "人脸冷却", data: {} });
  321. })
  322. .catch((err) => {
  323. that.handleChildren({ funcName: "人脸冷却", data: {} });
  324. });
  325. },
  326. /**
  327. * @会议验证
  328. */
  329. meetingVerify(event) {
  330. var that = this
  331. if (that.meetingReservaList.thisVenueData.length > 0) {
  332. meetingApi()
  333. .Attendee({
  334. domain: this.form.domain,
  335. meetingId: this.meetingReservaList.thisVenueData[0].meetingId,
  336. userId: event.userId,
  337. userName: event.userName,
  338. })
  339. .then((item) => {
  340. if (item.data.status == "1") {
  341. that.openDoor(event);
  342. that.meetingSign(event);
  343. }
  344. modal.msg(item.data.msg);
  345. });
  346. }
  347. },
  348. /**
  349. * @会议签到
  350. */
  351. meetingSign(event) {
  352. signOnOut({
  353. domain: this.form.domain,
  354. meetingId: this.meetingReservaList.thisVenueData[0].meetingId,
  355. userId: event.userId, //参会人Id
  356. mothodType: 0, //签到签退类别(0.签到 1.签退)
  357. signType: 1, //签到签退方式(0.人工 1.人脸)
  358. }).then((item) => { });
  359. },
  360. /**
  361. * @解析父页面传回的数据
  362. */
  363. analysisData(event) {
  364. if ("funcName" in event) {
  365. if (event.funcName == "打开配置") {
  366. this.handleChildren({ funcName: "关闭摄像头", data: {} });
  367. tab.navigateTo("/pages/door/setting/index")
  368. // this.modal.show = true;
  369. } else if (event.funcName == "人脸识别") {
  370. this.faceVerify(event.data.imageBase);
  371. } else if (event.funcName == "点击开门") {
  372. this.openDoor({
  373. userId: 99,
  374. userName: "方惠圣",
  375. });
  376. }
  377. }
  378. },
  379. /**
  380. * @向子页面发送数据
  381. */
  382. handleChildren(data) {
  383. // #ifdef APP-PLUS
  384. var pages = getCurrentPages();
  385. var currentWebview = pages[pages.length - 1].$getAppWebview();
  386. var wv = currentWebview.children()[0];
  387. wv.evalJS(`receiveData(${JSON.stringify(data)})`);
  388. // #endif
  389. // #ifdef H5
  390. var iframe = document.getElementById("faceView");
  391. iframe.contentWindow.postMessage(data, "*");
  392. // #endif
  393. }
  394. },
  395. });
  396. export default controlStore;