webpackJsonp([24,65],{
|
|
|
|
/***/ "++gD":
|
|
/***/ (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");
|
|
|
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/views/log/acoustoopticAlarmLog.vue
|
|
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
|
|
|
|
/* harmony default export */ var acoustoopticAlarmLog = ({
|
|
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.acoustoopticAlarmLog;
|
|
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: 11
|
|
};
|
|
} else {
|
|
q = {
|
|
alertType: this.query.alertType,
|
|
deviceNum: this.query.deviceName,
|
|
deviceType: 11
|
|
};
|
|
}
|
|
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 = _this.time(+new Date(li.alertTime * 1000));
|
|
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: 11
|
|
})
|
|
};
|
|
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: 11
|
|
};
|
|
} else {
|
|
q = {
|
|
deviceNum: this.query.deviceName,
|
|
deviceType: 11
|
|
};
|
|
}
|
|
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 = _this3.time(+new Date(li.alertTime * 1000));
|
|
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: 11
|
|
};
|
|
} else {
|
|
q = {
|
|
alertType: this.query.alertType,
|
|
deviceNum: this.query.deviceName,
|
|
deviceType: 11
|
|
};
|
|
}
|
|
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 = _this4.time(+new Date(li.alertTime * 1000));
|
|
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: 11
|
|
};
|
|
} else {
|
|
q = {
|
|
alertType: this.query.alertType,
|
|
deviceNum: this.query.deviceName,
|
|
deviceType: 11
|
|
};
|
|
}
|
|
|
|
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 = _this5.time(+new Date(li.alertTime * 1000));
|
|
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-5e1aac0a","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/acoustoopticAlarmLog.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_acoustoopticAlarmLog = (esExports);
|
|
// CONCATENATED MODULE: ./src/views/log/acoustoopticAlarmLog.vue
|
|
function injectStyle (ssrContext) {
|
|
__webpack_require__("eOrk")
|
|
}
|
|
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-5e1aac0a"
|
|
/* moduleIdentifier (server only) */
|
|
var __vue_module_identifier__ = null
|
|
var Component = normalizeComponent(
|
|
acoustoopticAlarmLog,
|
|
log_acoustoopticAlarmLog,
|
|
__vue_template_functional__,
|
|
__vue_styles__,
|
|
__vue_scopeId__,
|
|
__vue_module_identifier__
|
|
)
|
|
|
|
/* harmony default export */ var views_log_acoustoopticAlarmLog = __webpack_exports__["default"] = (Component.exports);
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ "Weha":
|
|
/***/ (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/acoustoopticAlarmLog.vue + 2 modules
|
|
var acoustoopticAlarmLog = __webpack_require__("++gD");
|
|
|
|
// 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/acoustoopticAlarm.vue
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var _methods;
|
|
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* harmony default export */ var acoustoopticAlarm = ({
|
|
inject: ['reload'],
|
|
name: "doorLock",
|
|
data: function data() {
|
|
return {
|
|
searchRoom: '',
|
|
deviceImg: __webpack_require__("It2U"),
|
|
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: '',
|
|
accessPlatform: {}
|
|
};
|
|
},
|
|
|
|
components: {
|
|
zTree: zTree1["a" /* default */],
|
|
deviceLi: deviceLi["a" /* default */],
|
|
UnlockRecord: UnlockRecord["a" /* default */],
|
|
warningLog: acoustoopticAlarmLog["default"],
|
|
DeviceFeedbackLog: DeviceFeedbackLog["a" /* default */]
|
|
},
|
|
beforeCreate: function beforeCreate() {},
|
|
created: function created() {
|
|
this.manufacturerList = this.$MANUFACTURER.MANUFACTURER.acoustoopticAlarm;
|
|
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();
|
|
},
|
|
|
|
methods: (_methods = {
|
|
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 _this2 = 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) {
|
|
_this2.$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) {
|
|
_this2.$message.success("重置成功");
|
|
var str = {
|
|
deviceNum: row.deviceNum,
|
|
imei: row.imei,
|
|
order: 6101
|
|
};
|
|
Object(api["g" /* httpPost */])(str, _this2.$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, _this2.$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, _this2.$api.getDeviceOperateUserInfo).then(function (res3) {
|
|
if (res3.success) {
|
|
_this2.$message.success("初始化成功");
|
|
callback(true);
|
|
}
|
|
});
|
|
});
|
|
} else {
|
|
_this2.$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 _this3 = this;
|
|
|
|
this.$confirm("是否确认数据同步?", "提示", {
|
|
confirmButtonText: "确定",
|
|
cancelButtonText: "取消",
|
|
type: "warning"
|
|
}).then(function () {
|
|
_this3.orderDeviceData(row);
|
|
});
|
|
},
|
|
|
|
// 获取指定锁所有非703凭证数据
|
|
orderDeviceData: function orderDeviceData(row) {
|
|
var _this4 = 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, _this4.$api.orderDeviceData).then(function (res1) {
|
|
if (res1.success) {
|
|
var alllist = res1.data;
|
|
_this4.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 {
|
|
_this4.$message.error(res1.msg);
|
|
}
|
|
});
|
|
} else {
|
|
_this4.$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 _this5 = this;
|
|
|
|
var q = {
|
|
roomIds: [id],
|
|
lockType: 11
|
|
};
|
|
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) {
|
|
_this5.$message.error("该房间已绑定锁,请重新选择");
|
|
_this5.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 _this6 = 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");
|
|
_this6.options = Object(utils["p" /* ztreeToElementTree */])(arrdata, {});
|
|
});
|
|
},
|
|
|
|
// 获取门卡概况
|
|
getcard: function getcard() {
|
|
var _this7 = this;
|
|
|
|
allFun["a" /* default */].getAnalysis("", 5, function (callback) {
|
|
_this7.sumpageTotal = callback.total;
|
|
_this7.online = callback.onlineTotal;
|
|
_this7.unonline = callback.offlineTotal;
|
|
_this7.abnormal = callback.abnormalTotal;
|
|
});
|
|
},
|
|
|
|
// 发送离线密码
|
|
sendEmergence: function sendEmergence() {
|
|
var _this8 = 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) {
|
|
_this8.$message.success('发送成功');
|
|
} else {
|
|
_this8.$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 _this9 = this;
|
|
|
|
var data = {
|
|
code: "zg/getEmergence",
|
|
data: {
|
|
lockerId: row.deviceNum
|
|
}
|
|
};
|
|
Object(api["g" /* httpPost */])(data, this.$api.sendCommand).then(function (res) {
|
|
if (res.success) {
|
|
_this9.$message.success("获取成功");
|
|
_this9.Emergence.password = res.data.data;
|
|
_this9.Emergence.device = row.deviceNum;
|
|
_this9.Emergence.name = row.roomName;
|
|
_this9.getEmergenceStatus = true;
|
|
} else {
|
|
_this9.$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 _this10 = 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 (!(_this10.batchAccess == "")) {
|
|
_context.next = 4;
|
|
break;
|
|
}
|
|
|
|
_this10.$message.error("请选择运营商");
|
|
_context.next = 10;
|
|
break;
|
|
|
|
case 4:
|
|
if (!(_this10.multipleSelection1.length == 0)) {
|
|
_context.next = 8;
|
|
break;
|
|
}
|
|
|
|
_this10.$message.error("请勾选要批量添加的设备");
|
|
_context.next = 10;
|
|
break;
|
|
|
|
case 8:
|
|
_context.next = 10;
|
|
return _this10.multipleSelection1.map(function (li, index) {
|
|
var str = {
|
|
deviceNum: li.deviceNum,
|
|
imei: li.imei,
|
|
imsi: li.imei, //row.imsi,
|
|
order: 5101,
|
|
platformId: _this10.batchAccess
|
|
};
|
|
Object(api["g" /* httpPost */])(str, _this10.$api.DeviceRegisterDevice).then(function (res) {
|
|
if (res.data.success) {
|
|
// this.$message.success(res.data.msg);
|
|
// this.editVisible = false;
|
|
// this.getdevice();
|
|
_this10.AddAdministrator(index, li);
|
|
}
|
|
});
|
|
}).then(function (res) {
|
|
_this10.$message.success("添加成功");
|
|
_this10.editVisible = false;
|
|
_this10.getdevice();
|
|
});
|
|
|
|
case 10:
|
|
case "end":
|
|
return _context.stop();
|
|
}
|
|
}
|
|
}, _callee, _this10);
|
|
}))();
|
|
},
|
|
|
|
//音量设置
|
|
stepFun: function stepFun(val) {
|
|
var _this11 = 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) {
|
|
_this11.$message.success("设置成功");
|
|
} else {
|
|
_this11.$message.error(res.msg);
|
|
}
|
|
});
|
|
},
|
|
|
|
// 常开设置
|
|
switchFun: function switchFun(e) {
|
|
var _this12 = 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) {
|
|
_this12.$message.success("设置成功");
|
|
} else {
|
|
_this12.$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 _this13 = 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: _this13.info.username,
|
|
roomName: row.roomName
|
|
}
|
|
};
|
|
Object(api["g" /* httpPost */])(data3, _this13.$api.sendCommand).then(function (res) {
|
|
if (res.success) {
|
|
_this13.$message.success("重置成功");
|
|
var q = {
|
|
id: row.roomId
|
|
};
|
|
var tenant = {
|
|
q: stringify_default()(q)
|
|
};
|
|
Object(api["d" /* httpGet */])(tenant, _this13.$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, _this13.$api.unbindCard).then(function (res) {});
|
|
});
|
|
});
|
|
});
|
|
} else {
|
|
_this13.$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: _this13.info.username,
|
|
roomName: row.roomName
|
|
}
|
|
};
|
|
Object(api["g" /* httpPost */])(data2, _this13.$api.sendCommand).then(function (res2) {
|
|
if (res2.success) {
|
|
_this13.$message.success("重置成功");
|
|
var q = {
|
|
id: row.roomId
|
|
};
|
|
var tenant = {
|
|
q: stringify_default()(q)
|
|
};
|
|
Object(api["d" /* httpGet */])(tenant, _this13.$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, _this13.$api.unbindCard).then(function (res) {});
|
|
});
|
|
});
|
|
});
|
|
} else {
|
|
_this13.$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 _this14 = 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) {
|
|
_this14.$message.success("开锁成功!");
|
|
_this14.Unlocking = false;
|
|
} else {
|
|
_this14.$message.error("开锁失败!");
|
|
}
|
|
});
|
|
}), defineProperty_default()(_methods, "AddAdministrator", function AddAdministrator(index, row) {
|
|
var _this15 = 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, _this15.$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, _this15.$api.getDeviceOperateUserInfo).then(function (res3) {
|
|
if (res3.success) {
|
|
_this15.$message.success("初始化成功");
|
|
}
|
|
});
|
|
});
|
|
}), defineProperty_default()(_methods, "initialization", function initialization() {
|
|
var _this16 = this;
|
|
|
|
if (this.checkNodeId1 == '') {
|
|
this.$message.error("请选择房间");
|
|
} else {
|
|
if (this.form.manufacturer == 1011) {
|
|
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: _this16.checkNodeId1,
|
|
deviceId: callback.data.id
|
|
}];
|
|
Object(api["g" /* httpPost */])(data, _this16.$api.bindDeviceSite).then(function (res) {
|
|
if (res.success) {
|
|
_this16.editVisible = false;
|
|
_this16.$message.success("绑定成功");
|
|
}
|
|
}).catch(function (error) {
|
|
_this16.$message.error("\u7ED1\u5B9A\u5931\u8D25");
|
|
});
|
|
_this16.$message.success(callback.data.msg);
|
|
_this16.editVisible = false;
|
|
_this16.getdevice();
|
|
} else {
|
|
_this16.$message.error(callback.message);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}), defineProperty_default()(_methods, "onClick", function onClick(evt, treeId, treeNode) {
|
|
// 点击事件
|
|
this.treedata = treeNode;
|
|
}), defineProperty_default()(_methods, "getalllist", function getalllist() {
|
|
var _this17 = this;
|
|
|
|
var data = {};
|
|
Object(api["d" /* httpGet */])(data, this.$api.getTree).then(function (res) {
|
|
var array = Object(utils["n" /* uniqueArray */])(res.data, "id");
|
|
_this17.zNodes = Object(utils["p" /* ztreeToElementTree */])(array, {});
|
|
});
|
|
}), defineProperty_default()(_methods, "getdevice", function getdevice() {
|
|
var _this18 = this;
|
|
|
|
var data = {
|
|
pageNum: this.$store.state.currentPage,
|
|
pageSize: 10,
|
|
q: stringify_default()({
|
|
lockType: 11
|
|
})
|
|
};
|
|
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 = _this18.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 = _this18.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");
|
|
_this18.tableData = newArr;
|
|
} else {
|
|
_this18.tableData = [];
|
|
}
|
|
_this18.currentPage4 = 1;
|
|
_this18.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 _this19 = 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: 11,
|
|
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 = _this19.accessPlatform.show.filter(function (item) {
|
|
return item.code == li.accessPlatform;
|
|
})[0];
|
|
if (accessPlatform) {
|
|
li['accessPlatformText'] = accessPlatform.desc;
|
|
} else {
|
|
li['accessPlatformText'] = '';
|
|
}
|
|
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 = '';
|
|
}
|
|
});
|
|
var newArr = Object(utils["n" /* uniqueArray */])(res.data.list, "id");
|
|
_this19.pageTotal = res.data.total;
|
|
_this19.tableData = newArr;
|
|
} else {
|
|
_this19.tableData = [];
|
|
_this19.pageTotal = 0;
|
|
}
|
|
_this19.currentPage4 = 1;
|
|
_this19.$store.commit("increment", 1);
|
|
});
|
|
// this.$set(this.query, "pageIndex", 1);
|
|
}), defineProperty_default()(_methods, "handleDelete", function handleDelete(index) {
|
|
var _this20 = this;
|
|
|
|
// 二次确认删除
|
|
this.$confirm("确定要删除吗?", "提示", {
|
|
type: "warning"
|
|
}).then(function () {
|
|
_this20.$message.success("删除成功");
|
|
_this20.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 _this21 = 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, _this21.$api.unbindDeviceSite).then(function (res) {
|
|
if (res.success) {
|
|
var data = {
|
|
device: row.deviceNum,
|
|
imei: row.imei,
|
|
order: 5102
|
|
};
|
|
allFun["a" /* default */].DeleteDevic(data, row.manufactureId, function (callback) {
|
|
if (callback.success) {
|
|
_this21.getdevice();
|
|
_this21.$message.success('删除成功');
|
|
} else {
|
|
_this21.$message.error(callback.msg);
|
|
}
|
|
});
|
|
}
|
|
}).catch(function (error) {
|
|
_this21.$message.error("\u89E3\u7ED1\u5931\u8D25");
|
|
});
|
|
} else {
|
|
var data = {
|
|
deviceNum: row.deviceNum,
|
|
imei: row.imei,
|
|
order: 5102
|
|
};
|
|
allFun["a" /* default */].DeleteDevic(data, row.manufactureId, function (callback) {
|
|
if (callback.success) {
|
|
_this21.getdevice();
|
|
_this21.$message.success('删除成功');
|
|
} else {
|
|
_this21.$message.error(callback.msg);
|
|
}
|
|
});
|
|
}
|
|
}).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 _this22 = 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) {
|
|
_this22.$message.success("绑定成功");
|
|
_this22.getdevice();
|
|
}
|
|
}).catch(function (error) {
|
|
_this22.$message.error("\u7ED1\u5B9A\u5931\u8D25");
|
|
});
|
|
}), defineProperty_default()(_methods, "unbindsave", function unbindsave(index, row) {
|
|
var _this23 = 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, _this23.$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, _this23.$api.unbindCard).then(function (res) {});
|
|
});
|
|
Object(api["g" /* httpPost */])(data, _this23.$api.unbindDeviceSite).then(function (res) {
|
|
if (res.success) {
|
|
_this23.$message.success("解绑成功");
|
|
_this23.getdevice();
|
|
} else {
|
|
_this23.$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 _this24 = 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: 11,
|
|
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 = _this24.accessPlatform.show.filter(function (item) {
|
|
return item.code == li.accessPlatform;
|
|
})[0];
|
|
if (accessPlatform) {
|
|
li['accessPlatformText'] = accessPlatform.desc;
|
|
} else {
|
|
li['accessPlatformText'] = '';
|
|
}
|
|
li.createAt = _this24.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");
|
|
_this24.tableData = newArr;
|
|
_this24.pageTotal = res.data.total;
|
|
});
|
|
}), defineProperty_default()(_methods, "handlePageChange", function handlePageChange(val) {
|
|
var _this25 = 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: 11,
|
|
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 = _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, "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-55bda2f7","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/acoustoopticAlarm.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 电量: "),_c('el-input',{staticClass:"w50",attrs:{"placeholder":"","size":"mini"},on:{"input":function($event){return _vm.InputFun($event,'startBattery')}},model:{value:(_vm.search.startBattery),callback:function ($$v) {_vm.$set(_vm.search, "startBattery", $$v)},expression:"search.startBattery"}},[_c('template',{slot:"append"},[_vm._v("%")])],2),_vm._v(" - "),_c('el-input',{staticClass:"w50",attrs:{"placeholder":"","size":"mini"},on:{"input":function($event){return _vm.InputFun($event,'endBattery')}},model:{value:(_vm.search.endBattery),callback:function ($$v) {_vm.$set(_vm.search, "endBattery", $$v)},expression:"search.endBattery"}},[_c('template',{slot:"append"},[_vm._v("%")])],2)],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',{directives:[{name:"show",rawName:"v-show",value:(_vm.info.type == 0),expression:"info.type == 0"}],attrs:{"type":"primary","size":"small"},on:{"click":_vm.addequipment}},[_vm._v("添加设备")]),_vm._v(" "),_c('el-button',{directives:[{name:"show",rawName:"v-show",value:(_vm.info.type == 0),expression:"info.type == 0"}],attrs:{"type":"primary","size":"small"},on:{"click":_vm.BatchAdd}},[_vm._v("批量添加")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary","size":"small"},on:{"click":_vm.restSearch}},[_vm._v("重置")]),_vm._v(" "),_c('el-button',{directives:[{name:"show",rawName:"v-show",value:(_vm.info.type == 0),expression:"info.type == 0"}],attrs:{"type":"primary","size":"small"},on:{"click":_vm.refreshFun}},[_vm._v("同步设备信息")])],1),_vm._v(" "),_c('div',{staticClass:"switchiconfont"},[_c('i',{staticClass:"iconfont httpicon-liebiao1",class:_vm.activeiconfont ? 'active' : '',attrs:{"title":"切换方块展示"},on:{"click":function($event){return _vm.activeiconfun(true)}}}),_vm._v(" "),_c('i',{staticClass:"iconfont httpicon-liebiao",class:_vm.activeiconfont ? '' : 'active',attrs:{"title":"切换表格展示"},on:{"click":function($event){return _vm.activeiconfun(false)}}})]),_vm._v(" "),(_vm.activeiconfont)?_c('div',{staticClass:"roomcontent"},_vm._l((_vm.tableData),function(item,index){return _c('div',{key:index,staticClass:"roomconli"},[_c('deviceLi',{attrs:{"data":item,"src":_vm.deviceImg}}),_vm._v(" "),_c('div',{staticClass:"button-list"},[(item.roomId ? true : false)?_c('div',{on:{"click":function($event){return _vm.unbindsave(index, item)}}},[_vm._v("\n 解绑房间\n ")]):_c('div',{on:{"click":function($event){return _vm.bindRoom(index, item)}}},[_vm._v("绑定房间")]),_vm._v(" "),_c('div',{on:{"click":function($event){return _vm.detailsFun(index, item)}}},[_vm._v("设备详情")]),_vm._v(" "),_c('div',{on:{"click":function($event){return _vm.deleteLock(index, item)}}},[_vm._v("删除")])])],1)}),0):_c('el-table',{ref:"multipleTable",staticClass:"table",attrs:{"data":_vm.tableData,"border":"","stripe":"","header-cell-class-name":"table-header","empty-text":"无"},on:{"selection-change":_vm.handleSelectionChange}},[_c('el-table-column',{attrs:{"prop":"deviceNum","label":"设备号","width":"200"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"accessPlatformText","label":"锁平台"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"imei","label":"IMEI","width":"150"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.imei)?_c('span',{},[_vm._v(_vm._s(scope.row.imei))]):_c('span',{},[_vm._v("空")])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"imsi","label":"IMSI","width":"150"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.imsi)?_c('span',{},[_vm._v(_vm._s(scope.row.imsi))]):_c('span',{},[_vm._v("空")])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"","label":"信号强度","width":"150"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.rssi <= 10)?_c('i',{staticClass:"iconfont httpicon-xinhao38 red"}):(10 < scope.row.rssi && scope.row.rssi < 20)?_c('i',{staticClass:"iconfont httpicon-xinhao38 orange"}):(20 <= scope.row.rssi && scope.row.rssi <= 100)?_c('i',{staticClass:"iconfont httpicon-xinhao38 green"}):_c('i',{staticClass:"iconfont httpicon-wuxinhao red"}),_c('span',{staticClass:"spanli dling"},[_vm._v("\n "+_vm._s(scope.row.rssi || 0))])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"label":"电量"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.battery <= 20)?_c('i',{staticClass:"iconfont httpicon-dianchi-didianliang red"}):(20 < scope.row.battery && scope.row.battery < 60)?_c('i',{staticClass:"iconfont httpicon-icon-test orange"}):(60 <= scope.row.battery && scope.row.battery <= 100)?_c('i',{staticClass:"iconfont httpicon-icon-test green"}):_c('i',{staticClass:"iconfont httpicon-icon-test red"}),_c('span',{staticClass:"spanli dling"},[_vm._v(" "+_vm._s(scope.row.battery || 0)+"%")])]}}])}),_vm._v(" "),_c('el-table-column',{attrs:{"label":"在线状态","align":"center"},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [_c('el-tag',{attrs:{"type":scope.row.isOnline == '1'
|
|
? '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("设备详情")])]}}])})],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-option',{key:item.value,attrs:{"label":item.label,"value":item.value}})}),1)],1),_vm._v(" "),(_vm.form.manufacturer == 1011)?_c('div',[_c('el-form-item',{attrs:{"label":"设备号"}},[_c('el-input',{attrs:{"clearable":true},model:{value:(_vm.form.deviceNum),callback:function ($$v) {_vm.$set(_vm.form, "deviceNum", $$v)},expression:"form.deviceNum"}})],1),_vm._v(" "),_c('el-form-item',{attrs:{"label":"IMEI"}},[_c('el-input',{attrs:{"clearable":true},model:{value:(_vm.form.imei),callback:function ($$v) {_vm.$set(_vm.form, "imei", $$v)},expression:"form.imei"}})],1),_vm._v(" "),_c('el-form-item',{attrs:{"label":"运营商"}},[_c('el-select',{attrs:{"placeholder":"请选择"},model:{value:(_vm.form.platformId),callback:function ($$v) {_vm.$set(_vm.form, "platformId", $$v)},expression:"form.platformId"}},_vm._l((_vm.accessPlatform.select),function(item){return _c('el-option',{key:item.code,attrs:{"label":item.desc,"value":item.code}})}),1)],1)],1):_vm._e(),_vm._v(" "),_c('el-form-item',{attrs:{"label":"选择房间"}},[_c('el-cascader',{attrs:{"options":_vm.options,"size":"small","props":{ checkStrictly: true },"clearable":""},on:{"change":_vm.checkNodeOne},model:{value:(_vm.checkNodeId1),callback:function ($$v) {_vm.checkNodeId1=$$v},expression:"checkNodeId1"}})],1)],1)],1),_vm._v(" "),_c('el-drawer',{attrs:{"title":"设备详情","visible":_vm.drawer,"custom-class":"operationclass","size":"50%","before-close":_vm.handleClose},on:{"update:visible":function($event){_vm.drawer=$event}}},[_c('div',{staticClass:"rltable"},[_c('el-tabs',{attrs:{"border":""},on:{"tab-click":_vm.handleClick},model:{value:(_vm.activeName),callback:function ($$v) {_vm.activeName=$$v},expression:"activeName"}},[_c('el-tab-pane',{attrs:{"label":"设备详情","name":"0"}},[_c('el-form',{staticClass:"demo-form-inline",attrs:{"inline":true,"model":_vm.formInline}},[_c('el-form-item',{attrs:{"label":"设备号:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.deviceNum))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"IMEI:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.imei))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"IMSI:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.imsi))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"信号强度:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.rssi))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"电池电量:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.battery))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"在线状态:"}},[(_vm.formInline.isOnline == 1)?_c('span',{staticClass:"half"},[_vm._v("在线")]):_c('span',{staticClass:"half"},[_vm._v("离线")])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"绑定房间:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.roomName))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"添加时间:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.createAt))])]),_vm._v(" "),_c('el-form-item',{attrs:{"label":"更新时间:"}},[_c('span',{staticClass:"half"},[_vm._v(_vm._s(_vm.formInline.lastReportAt))])])],1)],1),_vm._v(" "),_c('el-tab-pane',{attrs:{"label":"警告日志","name":"2"}},[(_vm.sendStatus)?_c('warningLog',{attrs:{"deviceNum":_vm.senddeviceNum}}):_vm._e()],1)],1)],1)]),_vm._v(" "),_c('el-dialog',{attrs:{"title":"批量上传","visible":_vm.uploadkj,"width":"70%"},on:{"update:visible":function($event){_vm.uploadkj=$event}},scopedSlots:_vm._u([{key:"footer",fn:function(){return [_c('span',{staticClass:"dialog-footer"},[_c('el-button',{on:{"click":function($event){_vm.uploadkj = false}}},[_vm._v("取 消")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary"},on:{"click":_vm.batchUploadfun}},[_vm._v("确 定")])],1)]},proxy:true}])},[_c('input',{staticClass:"input-file",attrs:{"type":"file","accept":".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel"},on:{"change":_vm.exportData}}),_vm._v(" "),_c('el-button',{attrs:{"type":"primary","size":"mini"},on:{"click":_vm.btnClick}},[_vm._v("导入EXCEL")]),_vm._v(" "),_c('el-select',{attrs:{"placeholder":"请选择","size":"mini"},model:{value:(_vm.batchAccess),callback:function ($$v) {_vm.batchAccess=$$v},expression:"batchAccess"}},_vm._l((_vm.accessPlatform.select),function(item){return _c('el-option',{key:item.code,attrs:{"label":item.desc,"value":item.code}})}),1),_vm._v(" "),_c('el-form',{ref:"form",attrs:{"model":_vm.form,"label-width":"70px"}}),_vm._v(" "),(_vm.userlist1statu)?_c('el-table',{ref:"multipleTable1",staticClass:"table",attrs:{"data":_vm.userlist2,"border":"","height":"200","header-cell-class-name":"table-header"},on:{"selection-change":_vm.handleSelectionChange1}},[_c('el-table-column',{attrs:{"type":"selection","width":"55"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"ID","label":"ID","align":"center"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"deviceNum","label":"设备号","align":"center"}}),_vm._v(" "),_c('el-table-column',{attrs:{"prop":"imei","label":"IMEI","align":"center"}})],1):_vm._e()],1),_vm._v(" "),_c('el-dialog',{attrs:{"title":"紧急密码,每天仅能用一次","visible":_vm.getEmergenceStatus,"width":"30%"},on:{"update:visible":function($event){_vm.getEmergenceStatus=$event}}},[_c('el-form',{ref:"Emergence",attrs:{"model":_vm.Emergence,"label-width":"80px"}},[_c('el-form-item',{attrs:{"label":"临时密码"}},[_c('el-input',{staticClass:"handle-input mr10",attrs:{"placeholder":"","disabled":""},model:{value:(_vm.Emergence.password),callback:function ($$v) {_vm.$set(_vm.Emergence, "password", $$v)},expression:"Emergence.password"}})],1),_vm._v(" "),_c('el-form-item',{attrs:{"label":"电话"}},[_c('el-input',{staticClass:"handle-input mr10",attrs:{"type":"number","maxlength":"11","placeholder":"请输入手机号","clearable":true},model:{value:(_vm.Emergence.EmerPhone),callback:function ($$v) {_vm.$set(_vm.Emergence, "EmerPhone", $$v)},expression:"Emergence.EmerPhone"}})],1)],1),_vm._v(" "),_c('span',{staticClass:"dialog-footer",attrs:{"slot":"footer"},slot:"footer"},[_c('el-button',{on:{"click":function($event){_vm.getEmergenceStatus = false}}},[_vm._v("取 消")]),_vm._v(" "),_c('el-button',{attrs:{"type":"primary"},on:{"click":_vm.sendEmergence}},[_vm._v("发 送")])],1)],1)],1)}
|
|
var staticRenderFns = []
|
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
/* harmony default export */ var device_acoustoopticAlarm = (esExports);
|
|
// CONCATENATED MODULE: ./src/views/device/acoustoopticAlarm.vue
|
|
function injectStyle (ssrContext) {
|
|
__webpack_require__("x9D/")
|
|
}
|
|
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-55bda2f7"
|
|
/* moduleIdentifier (server only) */
|
|
var __vue_module_identifier__ = null
|
|
var Component = normalizeComponent(
|
|
acoustoopticAlarm,
|
|
device_acoustoopticAlarm,
|
|
__vue_template_functional__,
|
|
__vue_styles__,
|
|
__vue_scopeId__,
|
|
__vue_module_identifier__
|
|
)
|
|
|
|
/* harmony default export */ var views_device_acoustoopticAlarm = __webpack_exports__["default"] = (Component.exports);
|
|
|
|
|
|
/***/ }),
|
|
|
|
/***/ "eOrk":
|
|
/***/ (function(module, exports) {
|
|
|
|
// removed by extract-text-webpack-plugin
|
|
|
|
/***/ }),
|
|
|
|
/***/ "x9D/":
|
|
/***/ (function(module, exports) {
|
|
|
|
// removed by extract-text-webpack-plugin
|
|
|
|
/***/ })
|
|
|
|
});
|