|
|
- webpackJsonp([20,51],{
-
- /***/ "05Il":
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/core-js/json/stringify.js
- var stringify = __webpack_require__("mvHQ");
- var stringify_default = /*#__PURE__*/__webpack_require__.n(stringify);
-
- // EXTERNAL MODULE: ./src/api/index.js + 5 modules
- var api = __webpack_require__("gyMJ");
-
- // EXTERNAL MODULE: ./src/utils/index.js
- var utils = __webpack_require__("0xDb");
-
- // EXTERNAL MODULE: ./node_modules/moment/moment.js
- var moment = __webpack_require__("PJh5");
- var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
-
- // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/views/log/smartButtonLog.vue
-
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
-
-
-
-
- /* harmony default export */ var smartButtonLog = ({
- name: "warningLog",
- data: function data() {
- return {
- query: {
- operType: "",
- operateName: "",
- operModul: ""
- },
- query1: {
- operType: "",
- operateName: "",
- operModul: ""
- },
- activeName: "first",
- tableData: [],
- tableData1: [],
- multipleSelection: [],
- delList: [],
- editVisible: false,
- pageTotal: 0,
- pageTotal1: 0,
- form: {},
- idx: -1,
- id: -1,
- AboutDevice: [],
- userInfo: {
- type: ''
- },
- alertTypeList: []
- };
- },
-
- props: ['deviceNum'],
- beforeCreate: function beforeCreate() {},
- created: function created() {
- this.alertTypeList = this.$MANUFACTURER.alertType.smartButtonLog;
- this.userInfo = JSON.parse(localStorage.getItem('info'));
- this.getAboutDevice();
- },
- mounted: function mounted() {},
-
- methods: {
- selectTenantId: function selectTenantId(e) {
- localStorage.setItem('tenantId', e);
- this.reload();
- },
- restFun: function restFun() {
- var _this = this;
-
- this.query = {
- operType: "",
- operateName: "",
- operModul: ""
- };
- var q = {};
- if (this.deviceNum != '') {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.deviceNum,
- deviceType: 7
- };
- } else {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.query.deviceName,
- deviceType: 7
- };
- }
-
- var data = {
- pageNum: 1,
- pageSize: 10,
- q: this.searchParaProcess(q),
- orderBy: "alert_time desc"
- };
- Object(api["d" /* httpGet */])(data, this.$api.getLockAlert).then(function (res) {
- var AboutDevice = _this.AboutDevice;
- res.data.list.map(function (li) {
- li.createAt = _this.time(+new Date(li.createAt));
- li.alertTime = moment_default()(li.alertTime * 1000).format("YYYY-MM-DD HH:mm:ss");
- var resultArr = AboutDevice.filter(function (_item) {
- return _item.deviceNum == li.deviceNum;
- })[0];
- if (resultArr) {
- li.roomId = resultArr.id;
- li.roomName = resultArr.roomName;
- }
- li['alertTypeDesc'] = '';
- var alertTypeDesc = _this.alertTypeList.filter(function (item) {
- return item.code == li.alertType;
- })[0];
- if (alertTypeDesc) {
- li['alertTypeDesc'] = alertTypeDesc.desc;
- }
- });
- _this.$store.commit('increment', 1);
- _this.tableData = res.data.list;
- _this.pageTotal = res.data.total;
- });
- },
-
- // 查询和房间相关的设备
- getAboutDevice: function getAboutDevice() {
- var _this2 = this;
-
- var data = {
- pageNum: 0,
- pageSize: 0,
- q: stringify_default()({
- lockType: 7
- })
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- _this2.AboutDevice = res.data.list;
- _this2.getOperates();
- });
- },
- time: function time() {
- var time = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : +new Date();
-
- var date = new Date(time + 8 * 3600 * 1000); // 增加8小时
- return date.toJSON().substr(0, 19).replace("T", " ");
- },
-
- // 获取操作日志
- getOperates: function getOperates() {
- var _this3 = this;
-
- var q = {};
- if (this.deviceNum != '') {
- q = {
- deviceNum: this.deviceNum,
- deviceType: 7
- };
- } else {
- q = {
- deviceNum: this.query.deviceName,
- deviceType: 7
- };
- }
-
- var data = {
- pageNum: 1,
- pageSize: 10,
- orderBy: "alert_time desc",
- q: stringify_default()(q)
- // orderType:"desc"
- };
- Object(api["d" /* httpGet */])(data, this.$api.getLockAlert).then(function (res) {
- var AboutDevice = _this3.AboutDevice;
- res.data.list.map(function (li) {
- li.createAt = _this3.time(+new Date(li.createAt));
- li.alertTime = moment_default()(li.alertTime * 1000).format("YYYY-MM-DD HH:mm:ss");
- var resultArr = AboutDevice.filter(function (_item) {
- return _item.deviceNum == li.deviceNum;
- })[0];
- if (resultArr) {
- li.roomId = resultArr.id;
- li.roomName = resultArr.roomName;
- }
- li['alertTypeDesc'] = '';
- var alertTypeDesc = _this3.alertTypeList.filter(function (item) {
- return item.code == li.alertType;
- })[0];
- if (alertTypeDesc) {
- li['alertTypeDesc'] = alertTypeDesc.desc;
- }
- });
- _this3.tableData = res.data.list;
- _this3.pageTotal = res.data.total;
- });
- },
-
- //门锁报警同步刷新
- getlockAlert: function getlockAlert() {
- Object(api["d" /* httpGet */])("", this.$api.getLockAlert1).then(function (res) {});
- },
- searchParaProcess: function searchParaProcess(obj) {
- var myObj;
- if (obj.alertType == "" || obj.alertType == "0") {
- if (obj.deviceNum == "") {
- myObj = {
- deviceType: obj.deviceType
- };
- } else {
- myObj = {
- deviceNum: obj.deviceNum,
- deviceType: obj.deviceType
- };
- }
- } else {
- if (obj.deviceNum == "") {
- myObj = {
- alertType: obj.alertType,
- deviceType: obj.deviceType
- };
- } else {
- myObj = {
- alertType: obj.alertType,
- deviceNum: obj.deviceNum,
- deviceType: obj.deviceType
- };
- }
- }
- return stringify_default()(myObj);
- },
-
-
- // 触发搜索按钮
- handleSearch: function handleSearch() {
- var _this4 = this;
-
- this.getlockAlert();
- var q = {};
- if (this.deviceNum != '') {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.deviceNum,
- deviceType: 7
- };
- } else {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.query.deviceName,
- deviceType: 7
- };
- }
-
- var data = {
- pageNum: 1,
- pageSize: 10,
- q: this.searchParaProcess(q),
- orderBy: "alert_time desc"
- };
- Object(api["d" /* httpGet */])(data, this.$api.getLockAlert).then(function (res) {
- var AboutDevice = _this4.AboutDevice;
- res.data.list.map(function (li) {
- li.createAt = _this4.time(+new Date(li.createAt));
- li.alertTime = moment_default()(li.alertTime * 1000).format("YYYY-MM-DD HH:mm:ss");
- var resultArr = AboutDevice.filter(function (_item) {
- return _item.deviceNum == li.deviceNum;
- })[0];
- if (resultArr) {
- li.roomId = resultArr.id;
- li.roomName = resultArr.roomName;
- }
- li['alertTypeDesc'] = '';
- var alertTypeDesc = _this4.alertTypeList.filter(function (item) {
- return item.code == li.alertType;
- })[0];
- if (alertTypeDesc) {
- li['alertTypeDesc'] = alertTypeDesc.desc;
- }
- });
- _this4.$store.commit('increment', 1);
- _this4.tableData = res.data.list;
- _this4.pageTotal = res.data.total;
- });
- // this.$set(this.query, "pageIndex", 1);
- },
-
- // 分页导航
- handlePageChange: function handlePageChange(val) {
- var _this5 = this;
-
- this.$store.commit('increment', val);
- var q = {};
- if (this.deviceNum != '') {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.deviceNum,
- deviceType: 7
- };
- } else {
- q = {
- alertType: this.query.alertType,
- deviceNum: this.query.deviceName,
- deviceType: 7
- };
- }
-
- var data = {
- pageNum: val,
- pageSize: 10,
- q: this.searchParaProcess(q),
- orderBy: "alert_time desc"
- };
- Object(api["d" /* httpGet */])(data, this.$api.getLockAlert).then(function (res) {
- var AboutDevice = _this5.AboutDevice;
- res.data.list.map(function (li) {
- li.createAt = _this5.time(+new Date(li.createAt));
- li.alertTime = moment_default()(li.alertTime * 1000).format("YYYY-MM-DD HH:mm:ss");
- var resultArr = AboutDevice.filter(function (_item) {
- return _item.deviceNum == li.deviceNum;
- })[0];
- if (resultArr) {
- li.roomId = resultArr.id;
- li.roomName = resultArr.roomName;
- }
- li['alertTypeDesc'] = '';
- var alertTypeDesc = _this5.alertTypeList.filter(function (item) {
- return item.code == li.alertType;
- })[0];
- if (alertTypeDesc) {
- li['alertTypeDesc'] = alertTypeDesc.desc;
- }
- });
- _this5.tableData = res.data.list;
- _this5.pageTotal = res.data.total;
- });
- }
- }
- });
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/template-compiler?{"id":"data-v-7ef5145d","hasScoped":true,"transformToRequire":{"video":["src","poster"],"source":"src","img":"src","image":"xlink:href"},"buble":{"transforms":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/log/smartButtonLog.vue
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('div',{staticClass:"container"},[_c('div',{staticClass:"handle-box"},[_c('selectoption'),_vm._v(" "),_c('el-input',{staticClass:"handle-input mr10",attrs:{"size":"small","placeholder":"设备号","clearable":true},model:{value:(_vm.query.deviceName),callback:function ($$v) {_vm.$set(_vm.query, "deviceName", $$v)},expression:"query.deviceName"}}),_vm._v(" "),_c('el-select',{staticClass:"handle-select mr10",attrs:{"size":"small","clearable":true,"placeholder":"报警类型"},model:{value:(_vm.query.alertType),callback:function ($$v) {_vm.$set(_vm.query, "alertType", $$v)},expression:"query.alertType"}},_vm._l((_vm.alertTypeList),function(item){return _c('el-option',{key:item.code,attrs:{"label":item.desc,"value":item.code}})}),1),_vm._v(" "),_c('el-button',{attrs:{"type":"primary","size":"small","icon":"el-icon-search"},on:{"click":_vm.handleSearch}},[_vm._v("搜索")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary","size":"small","icon":"el-icon-search"},on:{"click":_vm.restFun}},[_vm._v("重置")])],1),_vm._v(" "),_c('el-table',{ref:"multipleTable",staticClass:"table",attrs:{"data":_vm.tableData,"border":"","header-cell-class-name":"table-header"}},[_c('el-table-column',{attrs:{"prop":"id","label":"ID"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"deviceNum","label":"设备号"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"roomName","label":"房间名称"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"alertTime","label":"报警时间"}}),_vm._v(" "),_c('el-table-column',{attrs:{"label":"报警类型"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [_c('span',[_vm._v(_vm._s(scope.row.alertTypeDesc))])]}}])})],1),_vm._v(" "),_c('div',{staticClass:"pagination"},[_c('el-pagination',{attrs:{"background":"","layout":"total, prev, pager, next","current-page":_vm.$store.state.currentPage,"page-size":10,"total":_vm.pageTotal},on:{"current-change":_vm.handlePageChange}})],1)],1)])}
- var staticRenderFns = []
- var esExports = { render: render, staticRenderFns: staticRenderFns }
- /* harmony default export */ var log_smartButtonLog = (esExports);
- // CONCATENATED MODULE: ./src/views/log/smartButtonLog.vue
- function injectStyle (ssrContext) {
- __webpack_require__("y5u5")
- }
- var normalizeComponent = __webpack_require__("VU/8")
- /* script */
-
-
- /* template */
-
- /* template functional */
- var __vue_template_functional__ = false
- /* styles */
- var __vue_styles__ = injectStyle
- /* scopeId */
- var __vue_scopeId__ = "data-v-7ef5145d"
- /* moduleIdentifier (server only) */
- var __vue_module_identifier__ = null
- var Component = normalizeComponent(
- smartButtonLog,
- log_smartButtonLog,
- __vue_template_functional__,
- __vue_styles__,
- __vue_scopeId__,
- __vue_module_identifier__
- )
-
- /* harmony default export */ var views_log_smartButtonLog = __webpack_exports__["default"] = (Component.exports);
-
-
- /***/ }),
-
- /***/ "IBHL":
- /***/ (function(module, exports) {
-
- module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAABuCAYAAACp6nrWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDcuMS1jMDAwIDc5LmIwZjhiZTkwLCAyMDIxLzEyLzE1LTIxOjI1OjE1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5NkMwMEY1REYxREExMUVDQUQ1NTk4RDQxMDQ0RDk2QyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5NkMwMEY1Q0YxREExMUVDQUQ1NTk4RDQxMDQ0RDk2QyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjMuMiAoV2luZG93cykiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowQkUyQUY5NkVERTkxMUVDQjI3RUNDOTgzRUFDNEE0QiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowQkUyQUY5N0VERTkxMUVDQjI3RUNDOTgzRUFDNEE0QiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgY/Jw8AAAhqSURBVHja7Fpd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
-
- /***/ }),
-
- /***/ "SYr+":
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
-
- "use strict";
- Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/helpers/defineProperty.js
- var defineProperty = __webpack_require__("bOdI");
- var defineProperty_default = /*#__PURE__*/__webpack_require__.n(defineProperty);
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/core-js/promise.js
- var promise = __webpack_require__("//Fk");
- var promise_default = /*#__PURE__*/__webpack_require__.n(promise);
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/regenerator/index.js
- var regenerator = __webpack_require__("Xxa5");
- var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator);
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/helpers/asyncToGenerator.js
- var asyncToGenerator = __webpack_require__("exGp");
- var asyncToGenerator_default = /*#__PURE__*/__webpack_require__.n(asyncToGenerator);
-
- // EXTERNAL MODULE: ./node_modules/babel-runtime/core-js/json/stringify.js
- var stringify = __webpack_require__("mvHQ");
- var stringify_default = /*#__PURE__*/__webpack_require__.n(stringify);
-
- // EXTERNAL MODULE: ./src/api/index.js + 5 modules
- var api = __webpack_require__("gyMJ");
-
- // EXTERNAL MODULE: ./src/components/zTree1.vue + 2 modules
- var zTree1 = __webpack_require__("6Ljo");
-
- // EXTERNAL MODULE: ./src/components/deviceLi.vue + 2 modules
- var deviceLi = __webpack_require__("4qFG");
-
- // EXTERNAL MODULE: ./src/components/UnlockRecord.vue + 2 modules
- var UnlockRecord = __webpack_require__("YBqH");
-
- // EXTERNAL MODULE: ./src/components/DeviceFeedbackLog.vue + 2 modules
- var DeviceFeedbackLog = __webpack_require__("5skf");
-
- // EXTERNAL MODULE: ./src/views/log/smartButtonLog.vue + 2 modules
- var smartButtonLog = __webpack_require__("05Il");
-
- // EXTERNAL MODULE: ./src/utils/index.js
- var utils = __webpack_require__("0xDb");
-
- // EXTERNAL MODULE: ./node_modules/xlsx/xlsx.js
- var xlsx = __webpack_require__("uXZL");
- var xlsx_default = /*#__PURE__*/__webpack_require__.n(xlsx);
-
- // EXTERNAL MODULE: ./src/utils/util.js
- var util = __webpack_require__("oFuF");
-
- // EXTERNAL MODULE: ./src/utils/equipment.js
- var equipment = __webpack_require__("ObZk");
-
- // EXTERNAL MODULE: ./node_modules/moment/moment.js
- var moment = __webpack_require__("PJh5");
- var moment_default = /*#__PURE__*/__webpack_require__.n(moment);
-
- // EXTERNAL MODULE: ./src/api/allFun.js
- var allFun = __webpack_require__("mprh");
-
- // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/views/device/smartButtonDevice.vue
-
-
-
-
-
-
- var _methods;
-
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
- //
-
-
-
-
-
-
-
-
-
-
-
-
-
- /* harmony default export */ var smartButtonDevice = ({
- inject: ['reload'],
- name: "doorLock",
- data: function data() {
- return {
- searchRoom: '',
- deviceImg: __webpack_require__("IBHL"),
- selectoption: [],
- selectoptionValue: '',
- senddeviceNum: '',
- sendroomId: '',
- commpontentStatus: true,
- Emergence: {
- EmerPhone: '',
- password: '',
- device: '',
- name: ''
- },
- defaultProps: {
- children: "children",
- label: "name"
- },
- options: [],
- drawer: false,
- value1: false,
- value2: 0,
- marks: {
- 0: "关",
- 50: "中",
- 100: "高"
- },
- switchtext: "关",
- activeName: "0",
- formInline: {},
- platlist: [{
- label: "电信",
- value: 1
- }, {
- label: "移动",
- value: 2
- }, {
- label: "联通",
- value: 3
- }],
- manufacturerList: [],
- setting: {
- edit: {
- enable: true,
- drag: {
- isMove: true
- },
- showRemoveBtn: false,
- showRenameBtn: false
- },
- check: {
- enable: false
- },
- data: {
- simpleData: {
- enable: true,
- pIdKey: "pid"
- }
- },
- view: {
- showIcon: true,
- addHoverDom: this.addHoverDom,
- removeHoverDom: this.removeHoverDom
- }
- },
- zNodes: [],
- bromm: {},
- query: {
- address: "",
- name: "",
- pageIndex: 1,
- pageSize: 20,
- options: []
- },
- search: {
- name: "",
- deviceNum: "",
- roomname: '',
- imei: "",
- isOnline: "",
- startBattery: '0',
- endBattery: '100'
- },
- tableData: [],
- multipleSelection: [],
- delList: [],
- editVisible: false,
- roomVisible: false,
- pageTotal: 0,
- sumpageTotal: 0,
- currentPage4: 1,
- form: {
- manufacturer: "",
- validateCode: ''
- },
- idx: -1,
- id: -1,
- abnormal: 0,
- online: 0,
- treedata: [],
- unonline: 0,
- Unlocking: false,
- Unlockingrow: {},
- lockingform: {
- password: ""
- },
- activeiconfont: true,
- info: [],
- uploadkj: false,
- userlist1statu: true,
- userlist2: [],
- multipleSelection1: [],
- batchAccess: "",
- getEmergenceStatus: false,
- getEmergenceNum: '',
- checkNodeId: '',
- pageSize: 10,
- pageNum: 1,
- sendStatus: true,
- userInfo: {
- type: ''
- },
- checkNodeId1: '',
- gatewayDeviceList: [],
- accessPlatform: {}
- };
- },
-
- components: {
- zTree: zTree1["a" /* default */],
- deviceLi: deviceLi["a" /* default */],
- UnlockRecord: UnlockRecord["a" /* default */],
- warningLog: smartButtonLog["default"],
- DeviceFeedbackLog: DeviceFeedbackLog["a" /* default */]
- },
- beforeCreate: function beforeCreate() {},
- created: function created() {
- this.manufacturerList = this.$MANUFACTURER.MANUFACTURER.smartButton;
- this.accessPlatform = this.$MANUFACTURER.accessPlatform;
- this.userInfo = JSON.parse(localStorage.getItem('info'));
- this.getdevice();
- this.getalllist();
- this.info = JSON.parse(localStorage.getItem("info"));
- this.$store.commit("increment", 1);
- this.getcard();
- this.getallTree();
- this.getGatewayDeviceList();
- },
-
- methods: (_methods = {
- // 获取网关设备
- getGatewayDeviceList: function getGatewayDeviceList() {
- var _this2 = this;
-
- var data = {
- q: stringify_default()({
- lockType: 99
- }),
- pageNum: 0,
- pageSize: 0
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- if (res.success) {
- _this2.gatewayDeviceList = res.data.list;
- } else {
- _this2.$message.error(res.message);
- }
- });
- },
- InputFun: function InputFun(e, name) {
- if (name == 'startBattery' || name == 'endBattery') {
- if (Number(e) < 0) {
- e = 0;
- }
- if (Number(e) > 100) {
- e = 100;
- }
- }
- this.search[name] = e;
- },
- selectTenantId: function selectTenantId(e) {
- localStorage.setItem('tenantId', e);
- this.reload();
- },
-
- // 重置初始化
- resetInitialization: function resetInitialization(row, callback) {
- var _this3 = this;
-
- if (row.manufactureId == 201) {
- var data3 = {
- code: "zg/deleteAllUsers",
- data: {
- lockerId: row.deviceNum,
- imei: row.imei,
- order: 6501
- }
- };
- Object(api["g" /* httpPost */])(data3, this.$api.sendCommand).then(function (res) {
- if (res.success) {
- _this3.$message.success("重置成功");
- callback(true);
- } else {
- callback(false);
- }
- });
- } else if (row.manufactureId == 101) {
- var data2 = {
- code: "isp/restoreSetting",
- data: {
- order: 6501,
- imei: row.imei,
- deviceNum: row.deviceNum,
- managerTelephone: "18270949468",
- managerPassword: "202108"
- }
- };
- Object(api["g" /* httpPost */])(data2, this.$api.sendCommand).then(function (res2) {
- if (res2.success) {
- _this3.$message.success("重置成功");
- var str = {
- deviceNum: row.deviceNum,
- imei: row.imei,
- order: 6101
- };
- Object(api["g" /* httpPost */])(str, _this3.$api.getDeviceRegisterManager).then(function (res1) {
- var str1 = {
- imei: row.imei, //row.imsi,
- deviceNum: row.deviceNum, //row.deviceNum,
- operateMode: 7,
- is: true,
- order: 6207,
- passwordStartTime: "20210813010101",
- passwordEndTime: "20680813010101"
- };
- Object(api["g" /* httpPost */])(str1, _this3.$api.getDeviceOperateUserInfo).then(function (res2) {});
- var str2 = {
- imei: row.imei, //row.imsi,
- deviceNum: row.deviceNum, //row.deviceNum,
- operateMode: 4,
- is: true,
- order: 6204,
- passwordStartTime: "20210813010101",
- passwordEndTime: "20680813010101"
- };
- Object(api["g" /* httpPost */])(str2, _this3.$api.getDeviceOperateUserInfo).then(function (res3) {
- if (res3.success) {
- _this3.$message.success("初始化成功");
- callback(true);
- }
- });
- });
- } else {
- _this3.$message.error(res2.msg);
- callback(false);
- }
- });
- }
- },
- getPersonCallback: function getPersonCallback(person, alllist, callback) {
- var personlist = [];
- person.map(function (li) {
- var obj = {
- person: li,
- data: alllist.filter(function (item) {
- if (item.deviceNum && item.cardId == li.card) {
- return item;
- }
- })
- };
- personlist.push(obj);
- });
- callback(personlist);
- },
-
- // 数据同步
- dataSynchronization: function dataSynchronization(index, row) {
- var _this4 = this;
-
- this.$confirm("是否确认数据同步?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function () {
- _this4.orderDeviceData(row);
- });
- },
-
- // 获取指定锁所有非703凭证数据
- orderDeviceData: function orderDeviceData(row) {
- var _this5 = this;
-
- var _this = this;
- if (row.roomId) {
- var data1 = {
- pageNum: 0,
- pageSize: 0,
- q: {
- id: row.roomId
- }
- };
- Object(api["d" /* httpGet */])(data1, this.$api.getSiteTenant).then(function (res) {
- if (res.success) {
- var person = res.data.list;
- var data = {
- imei: row.imei
- };
- Object(api["d" /* httpGet */])(data, _this5.$api.orderDeviceData).then(function (res1) {
- if (res1.success) {
- var alllist = res1.data;
- _this5.getPersonCallback(person, alllist, function (callback) {
- var personlist = callback;
- _this.resetInitialization(row, function (callback) {
- if (row.manufactureId == 101) {
- personlist.map(function (lt) {
- var endTime = new Date(lt.person.endTime).getTime();
- var startTime = new Date(lt.person.startTime).getTime();
- var passwordEndTime = moment_default()(endTime).format("YYYYMMDDHHmmss");
- var passwordStartTime = moment_default()(startTime).format("YYYYMMDDHHmmss");
- var userTelephone = JSON.parse(lt.person.info).userTelephone;
- var userPassword = JSON.parse(lt.person.info).userPassword;
- var data = {
- deviceNum: row.deviceNum,
- imei: row.imei,
- userTelephone: userTelephone,
- userPassword: userPassword,
- password: userPassword,
- operateMode: 26,
- order: 6226,
- passwordStartTime: passwordStartTime,
- passwordEndTime: passwordEndTime,
- cardName: lt.person.name,
- roomName: row.roomName
- };
- equipment["a" /* default */].LDAddUser(data.deviceNum, data.imei, data.userTelephone, data.userPassword, data.password, passwordStartTime, passwordEndTime, data.operateMode, data.order, data.cardName, data.roomName, false, function (callback) {
- lt.data.map(function (ll) {
- util["a" /* default */].putCarfidAdd(row, ll);
- });
- });
- });
- } else if (row.manufactureId == 201) {
- personlist.map(function (lt) {
- var endTime = new Date(lt.person.endTime).getTime();
- var startTime = new Date(lt.person.startTime).getTime();
- var passwordEndTime = moment_default()(endTime).format("YYYYMMDDHHmmss");
- var passwordStartTime = moment_default()(startTime).format("YYYYMMDDHHmmss");
- var userTelephone = JSON.parse(lt.person.info).userTelephone;
- var userPassword = JSON.parse(lt.person.info).userPassword;
- var data = {
- lockerId: row.deviceNum,
- imei: row.imei,
- lockerUserId: userPassword,
- keyId: userPassword,
- role: 0,
- action: 1,
- order: 6226,
- cardName: lt.person.name,
- roomName: row.roomName
- };
- equipment["a" /* default */].addUserToLock(data.lockerId, data.imei, data.lockerUserId, data.role, data.action, data.order, data.cardName, data.roomName, function (callback) {
- if (callback.success) {
- lt.data.map(function (ll) {
- util["a" /* default */].putCarfidzgAdd(row, ll);
- });
- }
- });
- });
- }
- });
- });
- } else {
- _this5.$message.error(res1.msg);
- }
- });
- } else {
- _this5.$message.error(res.msg);
- }
- });
- } else {
- this.$message.error("暂无数据");
- }
- },
-
- // 从paas同步能对应得上的有效凭证
- syncCommands: function syncCommands() {
- Object(api["d" /* httpGet */])('', this.$api.syncCommands).then(function (res) {});
- },
-
- // 同步刷新
- refreshFun: function refreshFun() {
- Object(api["d" /* httpGet */])("", this.$api.lockDeviceInfoList).then(function (res) {});
- },
-
- // 选择房源
- checkNode: function checkNode(e) {
- this.checkNodeId = e;
- var options = this.options;
- var arr = this.getId(options, e[e.length - 1]);
- var listarr = [arr[0]];
- var obj = this.getNodeId(listarr);
- this.checkNodeId = obj;
- },
- checkNodeOne: function checkNodeOne(e) {
- this.checkNodeId1 = e[e.length - 1];
- this.checkRoomDevice(e[e.length - 1]);
- },
- checkRoomDevice: function checkRoomDevice(id) {
- var _this6 = this;
-
- var q = {
- roomIds: [id],
- lockType: 7
- };
- var data = {
- q: stringify_default()(q),
- pageNum: 1,
- pageSize: this.pageSize
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- if (res.data.list.length > 0) {
- _this6.$message.error("该房间已绑定锁,请重新选择");
- _this6.checkNodeId1 = '';
- }
- });
- },
- getParentId: function getParentId(list, id) {
- for (var i in list) {
- if (list[i].id == id) {
- return [list[i]];
- }
- if (list[i].children) {
- var node = this.getParentId(list[i].children, id);
- if (node !== undefined) {
- return node.concat(list[i]);
- }
- }
- }
- },
- getId: function getId(list, id) {
- for (var i in list) {
- if (list[i].id == id) {
- return [list[i]];
- }
- if (list[i].children) {
- var node = this.getParentId(list[i].children, id);
- if (node !== undefined) {
- return node;
- }
- }
- }
- },
- getNodeId: function getNodeId(list) {
- var newNodeId = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
-
- for (var i in list) {
- newNodeId.push(list[i].id);
- if (list[i].children) {
- this.getNodeId(list[i].children, newNodeId);
- }
- }
- return newNodeId;
- },
- getallTree: function getallTree() {
- var _this7 = this;
-
- var data = {};
- Object(api["d" /* httpGet */])(data, this.$api.getTree).then(function (res) {
- var userlist = [];
- var temp = {},
- arr = [];
- res.data.forEach(function (item, index) {
- if (!temp[item.id]) {
- arr.push(item);
- temp[item.id] = true;
- }
- });
- arr.map(function (li) {
- if (li.expand) {
- if (JSON.parse(li.expand).type == "0") {
- userlist.push(li);
- }
- }
- });
- var arrdata = Object(utils["o" /* uniqueArray1 */])(res.data, "id");
- _this7.options = Object(utils["p" /* ztreeToElementTree */])(arrdata, {});
- });
- },
-
- // 获取门卡概况
- getcard: function getcard() {
- var _this8 = this;
-
- allFun["a" /* default */].getAnalysis("", 7, function (callback) {
- _this8.sumpageTotal = callback.total;
- _this8.online = callback.onlineTotal;
- _this8.unonline = callback.offlineTotal;
- _this8.abnormal = callback.abnormalTotal;
- });
- },
-
- // 发送离线密码
- sendEmergence: function sendEmergence() {
- var _this9 = this;
-
- var re = /^1\d{10}$/;
- if (re.test(this.Emergence.EmerPhone)) {
- var data = {
- code: this.Emergence.password,
- phone: this.Emergence.EmerPhone,
- device: this.Emergence.device,
- name: this.Emergence.name
- };
- Object(api["g" /* httpPost */])(data, this.$api.sendEmergence).then(function (res) {
- if (res.success) {
- _this9.$message.success('发送成功');
- } else {
- _this9.$message.error('发送失败');
- }
- });
- this.getEmergenceStatus = false;
- } else {
- this.$message.error('请填写正确手机号');
- }
- },
- handleCheckChange: function handleCheckChange(data, checked, node) {
- if (checked) {
- this.treedata = data;
- } else {
- if (this.checkedId == data.id) {
- this.$refs.tree.setCheckedKeys([data.id]);
- }
- }
- },
-
- // 临时密码
- getEmergence: function getEmergence(index, row) {
- var _this10 = this;
-
- var data = {
- code: "zg/getEmergence",
- data: {
- lockerId: row.deviceNum
- }
- };
- Object(api["g" /* httpPost */])(data, this.$api.sendCommand).then(function (res) {
- if (res.success) {
- _this10.$message.success("获取成功");
- _this10.Emergence.password = res.data.data;
- _this10.Emergence.device = row.deviceNum;
- _this10.Emergence.name = row.roomName;
- _this10.getEmergenceStatus = true;
- } else {
- _this10.$message.error("获取失败");
- }
- });
- },
-
- // input视图刷新
- changesr: function changesr(e) {
- this.$forceUpdate();
- },
- handleSelectionChange1: function handleSelectionChange1(val) {
- this.multipleSelection1 = val;
- },
- BatchAdd: function BatchAdd() {
- this.uploadkj = true;
- },
-
- //批量添加确认
- batchUploadfun: function batchUploadfun() {
- var _this11 = this;
-
- return asyncToGenerator_default()( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
- return regenerator_default.a.wrap(function _callee$(_context) {
- while (1) {
- switch (_context.prev = _context.next) {
- case 0:
- if (!(_this11.batchAccess == "")) {
- _context.next = 4;
- break;
- }
-
- _this11.$message.error("请选择运营商");
- _context.next = 10;
- break;
-
- case 4:
- if (!(_this11.multipleSelection1.length == 0)) {
- _context.next = 8;
- break;
- }
-
- _this11.$message.error("请勾选要批量添加的设备");
- _context.next = 10;
- break;
-
- case 8:
- _context.next = 10;
- return _this11.multipleSelection1.map(function (li, index) {
- var str = {
- deviceNum: li.deviceNum,
- imei: li.imei,
- imsi: li.imei, //row.imsi,
- order: 5101,
- platformId: _this11.batchAccess
- };
- Object(api["g" /* httpPost */])(str, _this11.$api.DeviceRegisterDevice).then(function (res) {
- if (res.data.success) {
- // this.$message.success(res.data.msg);
- // this.editVisible = false;
- // this.getdevice();
- _this11.AddAdministrator(index, li);
- }
- });
- }).then(function (res) {
- _this11.$message.success("添加成功");
- _this11.editVisible = false;
- _this11.getdevice();
- });
-
- case 10:
- case "end":
- return _context.stop();
- }
- }
- }, _callee, _this11);
- }))();
- },
-
- //音量设置
- stepFun: function stepFun(val) {
- var _this12 = this;
-
- var operate = "00";
- if (val == 0) {
- operate = "00";
- } else if (val == 50) {
- operate = "01";
- } else if (val == 100) {
- operate = "02";
- }
- var data = {
- code: "isp/volumnSetting",
- data: {
- imei: this.formInline.imei,
- operate: operate
- }
- };
- Object(api["g" /* httpPost */])(data, this.$api.sendCommand).then(function (res2) {
- if (res2.data.success) {
- _this12.$message.success("设置成功");
- } else {
- _this12.$message.error(res.msg);
- }
- });
- },
-
- // 常开设置
- switchFun: function switchFun(e) {
- var _this13 = this;
-
- var data = {};
- if (e) {
- this.switchtext = "开";
- data = {
- code: "isp/alwaysOpenSetting",
- data: {
- imei: this.formInline.imei,
- operate: 1
- }
- };
- } else {
- this.switchtext = "关";
- data = {
- code: "isp/alwaysOpenSetting",
- data: {
- imei: this.formInline.imei,
- operate: 0
- }
- };
- }
- Object(api["g" /* httpPost */])(data, this.$api.sendCommand).then(function (res2) {
- if (res2.data.success) {
- _this13.$message.success("设置成功");
- } else {
- _this13.$message.error(res.msg);
- }
- });
- },
-
- // 关闭侧边栏
- handleClose: function handleClose() {
- this.drawer = false;
- },
-
- // tabs标签页切换
- handleClick: function handleClick(tab, event) {
- this.commpontentStatus = true;
- }
- }, defineProperty_default()(_methods, "handleClose", function handleClose(done) {
- done();
- }), defineProperty_default()(_methods, "detailsFun", function detailsFun(index, row) {
- this.drawer = true;
- this.formInline = row;
- this.sendStatus = false;
- this.$nextTick(function () {
- this.sendroomId = row.deviceNum;
- this.senddeviceNum = row.deviceNum;
- this.sendStatus = true;
- });
- }), defineProperty_default()(_methods, "Reset1", function Reset1(index, row) {
- var data2 = {
- code: "isp/restoreSetting",
- data: {
- order: 6501,
- imei: row.imei,
- deviceNum: row.deviceNum,
- managerTelephone: "18270949468",
- managerPassword: "202108"
- }
- };
- Object(api["g" /* httpPost */])(data2, this.$api.sendCommand).then(function (res2) {
- // if (res2.data.success) {
- // this.$message.success("重置成功");
- // } else {
- // this.$message.error(res.msg);
- // }
- });
- }), defineProperty_default()(_methods, "Reset", function Reset(index, row) {
- var _this14 = this;
-
- this.$confirm("是否确认重置门锁?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(function () {
- if (row.manufactureId == 201) {
- var data3 = {
- code: "zg/deleteAllUsers",
- data: {
- lockerId: row.deviceNum,
- imei: row.imei,
- order: 6501,
- cardName: _this14.info.username,
- roomName: row.roomName
- }
- };
- Object(api["g" /* httpPost */])(data3, _this14.$api.sendCommand).then(function (res) {
- if (res.success) {
- _this14.$message.success("重置成功");
- var q = {
- id: row.roomId
- };
- var tenant = {
- q: stringify_default()(q)
- };
- Object(api["d" /* httpGet */])(tenant, _this14.$api.getSiteTenant).then(function (res) {
- promise_default.a.all(res.data.list.map(function (element) {
- return new promise_default.a(function (resolve, reject) {
- resolve(element.card);
- });
- })).then(function (allId) {
- allId.map(function (li) {
- var str = [{
- siteId: row.roomId,
- cardId: li
- }];
- Object(api["g" /* httpPost */])(str, _this14.$api.unbindCard).then(function (res) {});
- });
- });
- });
- } else {
- _this14.$message.success(res.msg);
- }
- });
- } else if (row.manufactureId == 101) {
- var data2 = {
- code: "isp/restoreSetting",
- data: {
- order: 6501,
- imei: row.imei,
- deviceNum: row.deviceNum,
- managerTelephone: "18270949468",
- managerPassword: "202108",
- cardName: _this14.info.username,
- roomName: row.roomName
- }
- };
- Object(api["g" /* httpPost */])(data2, _this14.$api.sendCommand).then(function (res2) {
- if (res2.success) {
- _this14.$message.success("重置成功");
- var q = {
- id: row.roomId
- };
- var tenant = {
- q: stringify_default()(q)
- };
- Object(api["d" /* httpGet */])(tenant, _this14.$api.getSiteTenant).then(function (res) {
- promise_default.a.all(res.data.list.map(function (element) {
- return new promise_default.a(function (resolve, reject) {
- resolve(element.card);
- });
- })).then(function (allId) {
- allId.map(function (li) {
- var str = [{
- siteId: row.roomId,
- cardId: li
- }];
- Object(api["g" /* httpPost */])(str, _this14.$api.unbindCard).then(function (res) {});
- });
- });
- });
- } else {
- _this14.$message.error(res2.msg);
- }
- });
- }
- });
- }), defineProperty_default()(_methods, "activeiconfun", function activeiconfun(t) {
- this.activeiconfont = t;
- }), defineProperty_default()(_methods, "getresult", function getresult() {
- var data = {};
- }), defineProperty_default()(_methods, "Unlockingsave", function Unlockingsave() {}), defineProperty_default()(_methods, "RemoteUnlocking", function RemoteUnlocking(index, row) {
- var _this15 = this;
-
- var str2 = {
- imei: row.imei,
- roomId: row.roomId,
- openLockType: 2,
- is: true
- };
- Object(api["g" /* httpPost */])(str2, this.$api.openLock).then(function (res3) {
- if (res3.success) {
- _this15.$message.success("开锁成功!");
- _this15.Unlocking = false;
- } else {
- _this15.$message.error("开锁失败!");
- }
- });
- }), defineProperty_default()(_methods, "AddAdministrator", function AddAdministrator(index, row) {
- var _this16 = this;
-
- var str = {
- deviceNum: row.deviceNum,
- imei: row.imei,
- order: 6101
- };
- Object(api["g" /* httpPost */])(str, this.$api.getDeviceRegisterManager).then(function (res1) {
- var str1 = {
- imei: row.imei, //row.imsi,
- deviceNum: row.deviceNum, //row.deviceNum,
- operateMode: 7,
- is: true,
- order: 6207,
- passwordStartTime: "20210813010101",
- passwordEndTime: "20680813010101"
- };
- Object(api["g" /* httpPost */])(str1, _this16.$api.getDeviceOperateUserInfo).then(function (res2) {});
- var str2 = {
- imei: row.imei, //row.imsi,
- deviceNum: row.deviceNum, //row.deviceNum,
- operateMode: 4,
- is: true,
- order: 6204,
- passwordStartTime: "20210813010101",
- passwordEndTime: "20680813010101"
- };
- Object(api["g" /* httpPost */])(str2, _this16.$api.getDeviceOperateUserInfo).then(function (res3) {
- if (res3.success) {
- _this16.$message.success("初始化成功");
- }
- });
- });
- }), defineProperty_default()(_methods, "initialization", function initialization() {
- var _this17 = this;
-
- if (this.checkNodeId1 == '') {
- this.$message.error("请选择房间");
- } else {
- if (this.form.manufacturer == 1007) {
- if (this.form.deviceNum == "" || this.form.v == "" || this.form.platformId == "") {
- this.$message.error("请填写完整信息");
- } else {
- var data = {};
- var data = {
- deviceNum: this.form.deviceNum,
- imei: this.form.imei,
- imsi: this.form.imei, //row.imsi,
- order: 5101,
- enterpriseId: this.userInfo.enterpriseId,
- platformId: this.form.platformId,
- manufactureId: this.form.manufacturer
- };
- allFun["a" /* default */].RegisterDevice(data, function (callback) {
- if (callback.success) {
- var data = [{
- siteId: _this17.checkNodeId1,
- deviceId: callback.data.id
- }];
- Object(api["g" /* httpPost */])(data, _this17.$api.bindDeviceSite).then(function (res) {
- if (res.success) {
- _this17.editVisible = false;
- _this17.$message.success("绑定成功");
- }
- }).catch(function (error) {
- _this17.$message.error("\u7ED1\u5B9A\u5931\u8D25");
- });
- _this17.editVisible = false;
- _this17.getdevice();
- } else {
- _this17.$message.error(callback.message);
- }
- });
- }
- } else if (this.form.manufacturer == 707) {
- if (this.form.deviceNum === '' || this.form.gatewayDevice === '' || this.form.manufacturer === '') {
- this.$message.error("请填写完整信息");
- } else {
- var data = {
- deviceNum: this.form.deviceNum,
- gatewayDevice: this.form.gatewayDevice,
- manufactureId: this.form.manufacturer,
- enterpriseId: this.userInfo.enterpriseId
- };
- allFun["a" /* default */].gatewayBindsChildDevic(data, function (callback) {
- if (callback.success) {
- var data = [{
- siteId: _this17.checkNodeId1,
- deviceId: callback.data.id
- }];
- Object(api["g" /* httpPost */])(data, _this17.$api.bindDeviceSite).then(function (res) {
- if (res.success) {
- _this17.editVisible = false;
- _this17.$message.success("绑定成功");
- }
- }).catch(function (error) {
- _this17.$message.error("\u7ED1\u5B9A\u5931\u8D25");
- });
- _this17.$message.success(callback.data.msg);
- _this17.editVisible = false;
- _this17.getdevice();
- } else {
- _this17.$message.error(callback.message);
- }
- });
- }
- }
- }
- }), defineProperty_default()(_methods, "onClick", function onClick(evt, treeId, treeNode) {
- // 点击事件
- this.treedata = treeNode;
- }), defineProperty_default()(_methods, "getalllist", function getalllist() {
- var _this18 = this;
-
- var data = {};
- Object(api["d" /* httpGet */])(data, this.$api.getTree).then(function (res) {
- var array = Object(utils["n" /* uniqueArray */])(res.data, "id");
- _this18.zNodes = Object(utils["p" /* ztreeToElementTree */])(array, {});
- });
- }), defineProperty_default()(_methods, "getdevice", function getdevice() {
- var _this19 = this;
-
- var data = {
- pageNum: this.$store.state.currentPage,
- pageSize: 10,
- q: stringify_default()({
- lockType: 7
- })
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- var online = 0,
- unonline = 0,
- devIds = "";
- if (res.data.list.length > 0) {
- res.data.list.map(function (li) {
- var accessPlatform = _this19.accessPlatform.show.filter(function (item) {
- return item.code == li.accessPlatform;
- })[0];
- if (accessPlatform) {
- li['accessPlatformText'] = accessPlatform.desc;
- } else {
- li['accessPlatformText'] = '';
- }
- if (li.isOnline == 1) {
- online++;
- } else if (li.isOnline == 0) {
- unonline++;
- }
- li.createAt = _this19.timestampToTime(li.createAt);
- if (li.lastReportAt) {
- li.lastReportAt = moment_default()(li.lastReportAt).format("YYYY-MM-DD HH:mm:ss");
- } else {
- li.lastReportAt = '';
- }
- devIds += li.deviceNum + ",";
- });
- var newArr = Object(utils["n" /* uniqueArray */])(res.data.list, "id");
- _this19.tableData = newArr;
- } else {
- _this19.tableData = [];
- }
- _this19.currentPage4 = 1;
- _this19.pageTotal = res.data.total;
- });
- }), defineProperty_default()(_methods, "timestampToTime", function timestampToTime(cjsj) {
- var date = new Date(cjsj); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
- var Y = date.getFullYear() + "-";
- var M = (date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1) + "-";
- var D = date.getDate() + " ";
- var h = date.getHours() + ":";
- var m = date.getMinutes() + ":";
- var s = date.getSeconds();
- return Y + M + D + h + m + s;
- }), defineProperty_default()(_methods, "handleChange", function handleChange(value) {
- console.log(value);
- }), defineProperty_default()(_methods, "restSearch", function restSearch() {
- this.search = {
- name: "",
- deviceNum: "",
- roomname: '',
- imei: "",
- isOnline: "",
- unBind: '',
- startBattery: '',
- endBattery: ''
- };
- this.checkNodeId = '';
- this.searchRoom = '';
- this.handleSearch();
- }), defineProperty_default()(_methods, "handleSearch", function handleSearch() {
- var _this20 = this;
-
- var deviceNum = this.search.deviceNum.replace(/\s*/g, "");
- var imei = this.search.imei.replace(/\s*/g, "");
- var q = {
- deviceNum: deviceNum,
- imei: imei,
- isOnline: this.search.isOnline,
- roomName: this.search.roomname,
- roomIds: this.checkNodeId,
- startBattery: this.search.startBattery,
- endBattery: this.search.endBattery,
- lockType: 7,
- unBind: this.search.unBind
- };
- var data = {
- q: stringify_default()(q),
- pageNum: 1,
- pageSize: this.pageSize
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- if (res.data.list.length > 0) {
- res.data.list.map(function (li) {
- var accessPlatform = _this20.accessPlatform.show.filter(function (item) {
- return item.code == li.accessPlatform;
- })[0];
- if (accessPlatform) {
- li['accessPlatformText'] = accessPlatform.desc;
- } else {
- li['accessPlatformText'] = '';
- }
- li.createAt = _this20.timestampToTime(li.createAt);
- if (li.lastReportAt) {
- li.lastReportAt = moment_default()(li.lastReportAt).format("YYYY-MM-DD HH:mm:ss");
- } else {
- li.lastReportAt = '';
- }
- });
- var newArr = Object(utils["n" /* uniqueArray */])(res.data.list, "id");
- _this20.pageTotal = res.data.total;
- _this20.tableData = newArr;
- } else {
- _this20.tableData = [];
- _this20.pageTotal = 0;
- }
- _this20.currentPage4 = 1;
- _this20.$store.commit("increment", 1);
- });
- // this.$set(this.query, "pageIndex", 1);
- }), defineProperty_default()(_methods, "handleDelete", function handleDelete(index) {
- var _this21 = this;
-
- // 二次确认删除
- this.$confirm("确定要删除吗?", "提示", {
- type: "warning"
- }).then(function () {
- _this21.$message.success("删除成功");
- _this21.tableData.splice(index, 1);
- }).catch(function () {});
- }), defineProperty_default()(_methods, "handleSelectionChange", function handleSelectionChange(val) {
- this.multipleSelection = val;
- }), defineProperty_default()(_methods, "delAllSelection", function delAllSelection() {
- var length = this.multipleSelection.length;
- var str = "";
- this.delList = this.delList.concat(this.multipleSelection);
- for (var i = 0; i < length; i++) {
- str += this.multipleSelection[i].name + " ";
- }
- this.$message.error("\u5220\u9664\u4E86" + str);
- this.multipleSelection = [];
- }), defineProperty_default()(_methods, "deleteLock", function deleteLock(index, row) {
- var _this22 = this;
-
- this.$confirm("确定要删除吗?", "提示", {
- type: "warning"
- }).then(function () {
- // if (row.manufactureId == 101) {
- if (row.roomId) {
- var data = [{
- siteId: row.roomId,
- deviceId: row.id
- }];
- Object(api["g" /* httpPost */])(data, _this22.$api.unbindDeviceSite).then(function (res) {
- if (res.success) {
- var data = {
- device: row.deviceNum,
- imei: row.imei,
- order: 5102,
- gatewayDevice: row.bluetoothMac || ''
- };
- allFun["a" /* default */].DeleteDevic(data, row.manufactureId, function (callback) {
- if (callback.success) {
- if (row.manufactureId == 707) {
- var str = {
- code: "ys/deleteDevice",
- data: {
- deviceNum: row.deviceNum
- }
- };
- Object(api["g" /* httpPost */])(str, _this22.$api.sendCommand).then(function (res3) {
- if (res3.success) {
- _this22.getdevice();
- _this22.$message.success('删除成功');
- } else {
- _this22.$message.error('删除失败');
- }
- });
- _this22.$message.success('解绑成功');
- } else {
- _this22.getdevice();
- _this22.$message.success('删除成功');
- }
- } else {
- _this22.$message.error(callback.msg);
- }
- });
- }
- }).catch(function (error) {
- _this22.$message.error("\u89E3\u7ED1\u5931\u8D25");
- });
- } else {
- var data = {
- deviceNum: row.deviceNum,
- imei: row.imei,
- order: 5102,
- gatewayDevice: row.bluetoothMac || ''
- };
- allFun["a" /* default */].DeleteDevic(data, row.manufactureId, function (callback) {
- if (callback.success) {
- if (row.manufactureId == 707) {
- var str = {
- code: "ys/deleteDevice",
- data: {
- deviceNum: row.deviceNum
- }
- };
- Object(api["g" /* httpPost */])(str, _this22.$api.sendCommand).then(function (res3) {
- if (res3.success) {
- _this22.getdevice();
- _this22.$message.success('删除成功');
- } else {
- _this22.$message.error('删除失败');
- }
- });
- _this22.$message.success('解绑成功');
- } else {
- _this22.getdevice();
- _this22.$message.success('删除成功');
- }
- } else {
- _this22.$message.error("删除失败");
- }
- });
- }
- }).catch(function () {});
- }), defineProperty_default()(_methods, "bindRoom", function bindRoom(index, row) {
- this.bromm = row;
- this.roomVisible = true;
- this.$refs.tree.setCheckedKeys([]);
- }), defineProperty_default()(_methods, "bindsave", function bindsave() {
- var _this23 = this;
-
- var treedata = this.treedata;
- this.roomVisible = false;
- var data = [{
- siteId: treedata.id,
- deviceId: this.bromm.id
- }];
- Object(api["g" /* httpPost */])(data, this.$api.bindDeviceSite).then(function (res) {
- if (res.success) {
- _this23.$message.success("绑定成功");
- _this23.getdevice();
- }
- }).catch(function (error) {
- _this23.$message.error("\u7ED1\u5B9A\u5931\u8D25");
- });
- }), defineProperty_default()(_methods, "unbindsave", function unbindsave(index, row) {
- var _this24 = this;
-
- var data = [{
- siteId: row.roomId,
- deviceId: row.id
- }];
- var q = {
- id: row.roomId
- };
- var tenant = {
- q: stringify_default()(q)
- };
- // 二次确认解绑
- this.$confirm("确定要解绑吗?", "提示", {
- type: "warning"
- }).then(function () {
- // this.Reset(index, row)
- Object(api["d" /* httpGet */])(tenant, _this24.$api.getSiteTenant).then(function (res) {
- promise_default.a.all(res.data.list.map(function (element) {
- return new promise_default.a(function (resolve, reject) {
- resolve(element.card);
- });
- })).then(function (allId) {
- allId.map(function (li) {
- var str = [{
- siteId: row.roomId,
- cardId: li
- }];
- Object(api["g" /* httpPost */])(str, _this24.$api.unbindCard).then(function (res) {});
- });
- Object(api["g" /* httpPost */])(data, _this24.$api.unbindDeviceSite).then(function (res) {
- if (res.success) {
- _this24.$message.success("解绑成功");
- _this24.getdevice();
- } else {
- _this24.$message.error("\u89E3\u7ED1\u5931\u8D25");
- }
- });
- });
- });
- }).catch(function () {});
- }), defineProperty_default()(_methods, "addequipment", function addequipment() {
- this.editVisible = true;
- this.form.customerCode = this.$store.state.customerCode;
- }), defineProperty_default()(_methods, "handleEdit", function handleEdit(index, row) {
- this.idx = index;
- this.form = row;
- this.editVisible = true;
- }), defineProperty_default()(_methods, "saveEdit", function saveEdit() {
- this.editVisible = false;
- this.$message.success("\u4FEE\u6539\u7B2C " + (this.idx + 1) + " \u884C\u6210\u529F");
- this.$set(this.tableData, this.idx, this.form);
- }), defineProperty_default()(_methods, "handleSizeChange", function handleSizeChange(val) {
- console.log("\u6BCF\u9875 " + val + " \u6761");
- this.$router.replace({
- path: this.$route.path,
- query: {
- page: this.$route.query.page ? this.$route.query.page : 1,
- pageSize: val
- }
- });
- this.pageSize = val;
- this.getlistNum(0, val);
- }), defineProperty_default()(_methods, "getlistNum", function getlistNum(val, size) {
- var _this25 = this;
-
- var deviceNum = this.search.deviceNum.replace(/\s*/g, "");
- var imei = this.search.imei.replace(/\s*/g, "");
- var q = {
- deviceNum: deviceNum,
- imei: imei,
- isOnline: this.search.isOnline,
- roomName: this.search.roomname,
- roomIds: this.checkNodeId,
- startBattery: this.search.startBattery,
- endBattery: this.search.endBattery,
- lockType: 7,
- unBind: this.search.unBind
- };
- var data = {
- q: stringify_default()(q),
- pageNum: val,
- pageSize: size
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- res.data.list.map(function (li) {
- var accessPlatform = _this25.accessPlatform.show.filter(function (item) {
- return item.code == li.accessPlatform;
- })[0];
- if (accessPlatform) {
- li['accessPlatformText'] = accessPlatform.desc;
- } else {
- li['accessPlatformText'] = '';
- }
- li.createAt = _this25.timestampToTime(li.createAt);
- if (li.lastReportAt) {
- li.lastReportAt = moment_default()(li.lastReportAt).format("YYYY-MM-DD HH:mm:ss");
- } else {
- li.lastReportAt = '';
- }
- });
- var newArr = Object(utils["n" /* uniqueArray */])(res.data.list, "id");
- _this25.tableData = newArr;
- _this25.pageTotal = res.data.total;
- });
- }), defineProperty_default()(_methods, "handlePageChange", function handlePageChange(val) {
- var _this26 = this;
-
- // this.$router.replace({
- // path: this.$route.path,
- // query: {
- // page: this.$route.query.page ? this.$route.query.page : 1,
- // pageSize: val,
- // },
- // });
- this.pageNum = val;
- this.$store.commit("increment", val);
- var q = {
- deviceNum: this.search.deviceNum,
- imei: this.search.imei,
- isOnline: this.search.isOnline,
- roomName: this.search.roomname,
- roomIds: this.checkNodeId,
- startBattery: this.search.startBattery,
- endBattery: this.search.endBattery,
- lockType: 7,
- unBind: this.search.unBind
- };
- var data = {
- q: stringify_default()(q),
- pageNum: val,
- pageSize: this.pageSize
- };
- Object(api["g" /* httpPost */])(data, this.$api.getDeviceItems).then(function (res) {
- res.data.list.map(function (li) {
- var accessPlatform = _this26.accessPlatform.show.filter(function (item) {
- return item.code == li.accessPlatform;
- })[0];
- if (accessPlatform) {
- li['accessPlatformText'] = accessPlatform.desc;
- } else {
- li['accessPlatformText'] = '';
- }
- li.createAt = _this26.timestampToTime(li.createAt);
- if (li.lastReportAt) {
- li.lastReportAt = moment_default()(li.lastReportAt).format("YYYY-MM-DD HH:mm:ss");
- } else {
- li.lastReportAt = '';
- }
- });
- var newArr = Object(utils["n" /* uniqueArray */])(res.data.list, "id");
- _this26.tableData = newArr;
- _this26.pageTotal = res.data.total;
- });
- }), defineProperty_default()(_methods, "btnClick", function btnClick() {
- document.querySelector(".input-file").click();
- }), defineProperty_default()(_methods, "exportData", function exportData(event) {
- if (!event.currentTarget.files.length) {
- return;
- }
- var that = this;
- // 拿取文件对象
- var f = event.currentTarget.files[0];
- // 用FileReader来读取
- var reader = new FileReader();
- // 重写FileReader上的readAsBinaryString方法
- FileReader.prototype.readAsBinaryString = function (f) {
- var binary = "";
- var wb; // 读取完成的数据
- var outdata; // 你需要的数据
- var reader = new FileReader();
- reader.onload = function (e) {
- // 读取成Uint8Array,再转换为Unicode编码(Unicode占两个字节)
- var bytes = new Uint8Array(reader.result);
- var length = bytes.byteLength;
- for (var i = 0; i < length; i++) {
- binary += String.fromCharCode(bytes[i]);
- }
- // 接下来就是xlsx了,具体可看api
- wb = xlsx_default.a.read(binary, {
- type: "binary"
- });
- outdata = xlsx_default.a.utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]);
- // 自定义方法向父组件传递数据
- var arr1 = [];
- outdata.map(function (li, index) {
- var str = {};
- str.deviceNum = li["设备号"];
- str.imei = li["imei"];
- str.ID = li["序号"];
- arr1.push(str);
- });
- // this.tableData=arr
- that.userlist1statu = false;
- that.$nextTick(function () {
- that.userlist2 = arr1;
- that.userlist1statu = true;
- });
- };
- reader.readAsArrayBuffer(f);
- };
- reader.readAsBinaryString(f);
- }), _methods)
- });
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/template-compiler?{"id":"data-v-2e4285b7","hasScoped":true,"transformToRequire":{"video":["src","poster"],"source":"src","img":"src","image":"xlink:href"},"buble":{"transforms":{}}}!./node_modules/vue-loader/lib/selector.js?type=template&index=0!./src/views/device/smartButtonDevice.vue
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[_c('el-row',{staticClass:"elrow",attrs:{"gutter":20}},[_c('el-col',{attrs:{"span":24}},[_c('el-card',{attrs:{"shadow":"hover"}},[_c('el-row',[_c('el-col',{attrs:{"span":6}},[_c('div',{staticClass:"grid-content grid-con-1"},[_c('div',{staticClass:"colposition"},[_c('img',{staticClass:"w100",attrs:{"src":__webpack_require__("xXHN"),"alt":""}}),_vm._v(" "),_c('div',{staticClass:"grid-cont-right"},[_c('div',[_vm._v("智能按钮总数")]),_vm._v(" "),_c('div',{staticClass:"grid-num"},[_vm._v(_vm._s(_vm.sumpageTotal))])])])])]),_vm._v(" "),_c('el-col',{attrs:{"span":6}},[_c('div',{staticClass:"grid-content grid-con-2"},[_c('div',{staticClass:"colposition"},[_c('img',{staticClass:"w100",attrs:{"src":__webpack_require__("sFbI"),"alt":""}}),_vm._v(" "),_c('div',{staticClass:"grid-cont-right"},[_c('div',[_vm._v("在线状态")]),_vm._v(" "),_c('div',{staticClass:"grid-num"},[_vm._v(_vm._s(_vm.online))])])])])]),_vm._v(" "),_c('el-col',{attrs:{"span":6}},[_c('div',{staticClass:"grid-content grid-con-2"},[_c('div',{staticClass:"colposition"},[_c('img',{staticClass:"w100",attrs:{"src":__webpack_require__("BpHi"),"alt":""}}),_vm._v(" "),_c('div',{staticClass:"grid-cont-right"},[_c('div',[_vm._v("离线状态")]),_vm._v(" "),_c('div',{staticClass:"grid-num"},[_vm._v(_vm._s(_vm.unonline))])])])])]),_vm._v(" "),_c('el-col',{attrs:{"span":6}},[_c('div',{staticClass:"grid-content grid-con-2"},[_c('div',{staticClass:"colposition"},[_c('img',{staticClass:"w100",attrs:{"src":__webpack_require__("sNnU"),"alt":""}}),_vm._v(" "),_c('div',{staticClass:"grid-cont-right"},[_c('div',[_vm._v("异常状态")]),_vm._v(" "),_c('div',{staticClass:"grid-num"},[_vm._v(_vm._s(_vm.abnormal))])])])])])],1)],1)],1)],1),_vm._v(" "),_c('div',{staticClass:"container"},[_c('div',{staticClass:"handle-box"},[_c('selectoption'),_vm._v(" "),_c('el-cascader',{attrs:{"options":_vm.options,"size":"small","props":{ checkStrictly: true },"placeholder":"请选择房源","clearable":""},on:{"change":_vm.checkNode},model:{value:(_vm.searchRoom),callback:function ($$v) {_vm.searchRoom=$$v},expression:"searchRoom"}}),_vm._v(" "),_c('el-input',{staticClass:"handle-input mr10 width100",attrs:{"size":"small","placeholder":"房间名称","clearable":true},on:{"input":function($event){return _vm.changesr($event)}},model:{value:(_vm.search.roomname),callback:function ($$v) {_vm.$set(_vm.search, "roomname", $$v)},expression:"search.roomname"}}),_vm._v(" "),_c('el-input',{staticClass:"handle-input mr10 width100",attrs:{"size":"small","placeholder":"序列号","clearable":true},on:{"input":function($event){return _vm.changesr($event)}},model:{value:(_vm.search.deviceNum),callback:function ($$v) {_vm.$set(_vm.search, "deviceNum", $$v)},expression:"search.deviceNum"}}),_vm._v(" "),_c('el-input',{staticClass:"handle-input mr10 width100",attrs:{"size":"small","placeholder":"IMEI","clearable":true},on:{"input":function($event){return _vm.changesr($event)}},model:{value:(_vm.search.imei),callback:function ($$v) {_vm.$set(_vm.search, "imei", $$v)},expression:"search.imei"}}),_vm._v(" "),_c('el-select',{staticClass:"handle-select mr10",attrs:{"size":"small","placeholder":"状态","clearable":""},model:{value:(_vm.search.isOnline),callback:function ($$v) {_vm.$set(_vm.search, "isOnline", $$v)},expression:"search.isOnline"}},[_c('el-option',{key:"1",attrs:{"label":"离线","value":"0"}}),_vm._v(" "),_c('el-option',{key:"2",attrs:{"label":"在线","value":"1"}}),_vm._v(" "),_c('el-option',{key:"3",attrs:{"label":"异常","value":"2"}})],1),_vm._v(" "),_c('el-select',{staticClass:"handle-select mr10",attrs:{"size":"small","placeholder":"绑定状态","clearable":true},model:{value:(_vm.search.unBind),callback:function ($$v) {_vm.$set(_vm.search, "unBind", $$v)},expression:"search.unBind"}},[_c('el-option',{key:"0",attrs:{"label":"已绑定","value":"0"}}),_vm._v(" "),_c('el-option',{key:"1",attrs:{"label":"未绑定","value":"1"}})],1),_vm._v(" "),_c('div',{staticClass:"quantity"},[_vm._v("\n
- ? 'success'
- : scope.row.isOnline == '0'
- ? 'danger'
- : ''}},[(scope.row.isOnline == 1)?_c('span',[_vm._v("在线")]):_c('span',[_vm._v("离线")])])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"label":"绑定房间","width":"200"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.roomName)?_c('span',{staticClass:"blue"},[_vm._v(_vm._s(scope.row.roomName))]):_c('span',{},[_vm._v("空")])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"firmwareVersion","label":"版本","width":"160"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"createAt","label":"创建时间","width":"160"}}),_vm._v(" "),_c('el-table-column',{attrs:{"label":"操作","width":"400","align":"center","fixed":"right"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.roomId)?_c('el-button',{staticClass:"red",attrs:{"type":"text"},on:{"click":function($event){return _vm.unbindsave(scope.$index, scope.row)}}},[_vm._v("解绑房间\n ")]):_c('el-button',{attrs:{"type":"text"},on:{"click":function($event){return _vm.bindRoom(scope.$index, scope.row)}}},[_vm._v("绑定房间")]),_vm._v(" "),_c('el-button',{attrs:{"type":"text"},on:{"click":function($event){return _vm.detailsFun(scope.$index, scope.row)}}},[_vm._v("设备详情")]),_vm._v(" "),_c('el-button',{attrs:{"type":"text"},on:{"click":function($event){return _vm.deleteLock(scope.$index, scope.row)}}},[_vm._v("设备删除")])]}}])})],1),_vm._v(" "),_c('div',{staticClass:"pagination"},[_c('el-pagination',{attrs:{"current-page":_vm.$store.state.currentPage,"page-sizes":[10,20,100],"page-size":_vm.pageSize,"layout":"total, sizes, prev, pager, next, jumper","total":_vm.pageTotal},on:{"size-change":_vm.handleSizeChange,"current-change":_vm.handlePageChange}})],1)],1),_vm._v(" "),_c('el-dialog',{attrs:{"title":"绑定房间","visible":_vm.roomVisible,"width":"30%"},on:{"update:visible":function($event){_vm.roomVisible=$event}},scopedSlots:_vm._u([{key:"footer",fn:function(){return [_c('span',{staticClass:"dialog-footer"},[_c('el-button',{on:{"click":function($event){_vm.roomVisible = false}}},[_vm._v("取 消")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary"},on:{"click":_vm.bindsave}},[_vm._v("确 定")])],1)]},proxy:true}])},[_c('div',{staticClass:"ztree"},[_c('el-tree',{ref:"tree",attrs:{"data":_vm.zNodes,"show-checkbox":"","node-key":"id","props":_vm.defaultProps},on:{"check-change":_vm.handleCheckChange}})],1)]),_vm._v(" "),_c('el-dialog',{attrs:{"title":"远程开锁密码","visible":_vm.Unlocking,"width":"30%"},on:{"update:visible":function($event){_vm.Unlocking=$event}},scopedSlots:_vm._u([{key:"footer",fn:function(){return [_c('span',{staticClass:"dialog-footer"},[_c('el-button',{on:{"click":function($event){_vm.Unlocking = false}}},[_vm._v("取 消")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary"},on:{"click":_vm.Unlockingsave}},[_vm._v("确 定")])],1)]},proxy:true}])},[_c('div',[_c('el-form',{ref:"locking",attrs:{"model":_vm.lockingform,"label-width":"100px"}},[_c('el-form-item',{attrs:{"label":"管理员密码"}},[_c('el-input',{attrs:{"show-password":"","clearable":true},model:{value:(_vm.lockingform.password),callback:function ($$v) {_vm.$set(_vm.lockingform, "password", $$v)},expression:"lockingform.password"}})],1)],1)],1)]),_vm._v(" "),_c('el-dialog',{attrs:{"title":"编辑","visible":_vm.editVisible,"width":"30%"},on:{"update:visible":function($event){_vm.editVisible=$event}},scopedSlots:_vm._u([{key:"footer",fn:function(){return [_c('span',{staticClass:"dialog-footer"},[_c('el-button',{on:{"click":function($event){_vm.editVisible = false}}},[_vm._v("取 消")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary"},on:{"click":_vm.initialization}},[_vm._v("确 定")])],1)]},proxy:true}])},[_c('el-form',{ref:"form",attrs:{"model":_vm.form,"label-width":"100px"}},[_c('el-form-item',{attrs:{"label":"型号"}},[_c('el-select',{attrs:{"placeholder":"请选择"},model:{value:(_vm.form.manufacturer),callback:function ($$v) {_vm.$set(_vm.form, "manufacturer", $$v)},expression:"form.manufacturer"}},_vm._l((_vm.manufacturerList),function(item){return _c('el
- var staticRenderFns = []
- var esExports = { render: render, staticRenderFns: staticRenderFns }
- /* harmony default export */ var device_smartButtonDevice = (esExports);
- // CONCATENATED MODULE: ./src/views/device/smartButtonDevice.vue
- function injectStyle (ssrContext) {
- __webpack_require__("VnIq")
- }
- var normalizeComponent = __webpack_require__("VU/8")
- /* script */
-
-
- /* template */
-
- /* template functional */
- var __vue_template_functional__ = false
- /* styles */
- var __vue_styles__ = injectStyle
- /* scopeId */
- var __vue_scopeId__ = "data-v-2e4285b7"
- /* moduleIdentifier (server only) */
- var __vue_module_identifier__ = null
- var Component = normalizeComponent(
- smartButtonDevice,
- device_smartButtonDevice,
- __vue_template_functional__,
- __vue_styles__,
- __vue_scopeId__,
- __vue_module_identifier__
- )
-
- /* harmony default export */ var views_device_smartButtonDevice = __webpack_exports__["default"] = (Component.exports);
-
-
- /***/ }),
-
- /***/ "VnIq":
- /***/ (function(module, exports) {
-
- // removed by extract-text-webpack-plugin
-
- /***/ }),
-
- /***/ "y5u5":
- /***/ (function(module, exports) {
-
- // removed by extract-text-webpack-plugin
-
- /***/ })
-
- });
|