1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/babel-loader/86ffe7543e9cc99dabd2e78acff...

1 line
36 KiB
JSON
Raw Normal View History

2023-12-18 13:12:25 +08:00
{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\equipmentManage\\access.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\equipmentManage\\access.vue","mtime":1614735254000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport mixinViewModule from '@/mixins/view-module';\nimport { treeDataTranslate, getDictLabel, getDictDataList } from '@/utils';\nimport addOrUpdate from \"./access-add-or-update\";\nimport viewAccess from \"./access-view\";\nimport personList from \"./access-person-list\";\nimport sendFace from \"./access-send-face\";\nimport accessConfig from \"./access-config\";\nimport AccessUpdatePassword from \"./access-update-password\";\nexport default {\n mixins: [mixinViewModule],\n components: {\n addOrUpdate: addOrUpdate,\n viewAccess: viewAccess,\n personList: personList,\n sendFace: sendFace,\n accessConfig: accessConfig,\n AccessUpdatePassword: AccessUpdatePassword\n },\n data: function data() {\n return {\n loading: false,\n mixinViewModuleOptions: {\n getDataListURL: '/system/scaidooreight/page',\n deleteURL: '/system/scaidooreight',\n getDataListIsPage: true\n },\n addressList: [],\n // 安装位置\n dfFloorid: [],\n // 选中id数组\n equipStatusList: getDictDataList('equipment_status'),\n limit: 10,\n dataForm: {\n aeClientip: \"\",\n state: '',\n devicename: '',\n floorid: '',\n // 安装位置的id\n username: '',\n userno: ''\n },\n checkList: [],\n dataList: [],\n accessUpdatePasswordVisible: false\n };\n },\n created: function created() {\n this.getAddressList();\n },\n watch: {\n 'dfFloorid': {\n handler: function handler(val) {\n if (val.length === 0) {\n this.dataForm.floorid = \"\";\n } else {\n this.dataForm.floorid = val[val.length - 1];\n }\n }\n }\n },\n computed: {\n aeIds: function aeIds() {\n return this.checkList.map(function (item) {\n return item.aeId;\n });\n }\n },\n // watch:{\n // // 监听是否需要刷新数据 执行定时任务\n // isNeedRefresh(state){\n // // 需要刷新 且 定时器未启动 则启动定时器\n // if(state&&!this.timer){\n // this.timer=setInterval(() => {\n // this.query();\n // }, 1000*30);\n // this.$once(\"hook:beforeDestroy\",()=>{\n // clearInterval(this.timer);\n // this.timer=null;\n // })\n // this.$once(\"hook:deactivated\",()=>{\n // clearInterval(this.t