hy-rtc-sdk-components 0.0.10 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hy-rtc-sdk-components.common.js +497 -376
- package/lib/hy-rtc-sdk-components.common.js.map +1 -1
- package/lib/hy-rtc-sdk-components.css +1 -1
- package/lib/hy-rtc-sdk-components.umd.js +497 -376
- package/lib/hy-rtc-sdk-components.umd.js.map +1 -1
- package/lib/hy-rtc-sdk-components.umd.min.js +2 -2
- package/lib/hy-rtc-sdk-components.umd.min.js.map +1 -1
- package/package.json +2 -1
|
@@ -4335,6 +4335,13 @@ var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WE
|
|
|
4335
4335
|
|
|
4336
4336
|
/***/ }),
|
|
4337
4337
|
|
|
4338
|
+
/***/ "27ec":
|
|
4339
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
4340
|
+
|
|
4341
|
+
// extracted by mini-css-extract-plugin
|
|
4342
|
+
|
|
4343
|
+
/***/ }),
|
|
4344
|
+
|
|
4338
4345
|
/***/ "284b":
|
|
4339
4346
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4340
4347
|
|
|
@@ -12487,13 +12494,6 @@ var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WE
|
|
|
12487
12494
|
|
|
12488
12495
|
/***/ }),
|
|
12489
12496
|
|
|
12490
|
-
/***/ "46bc":
|
|
12491
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
12492
|
-
|
|
12493
|
-
// extracted by mini-css-extract-plugin
|
|
12494
|
-
|
|
12495
|
-
/***/ }),
|
|
12496
|
-
|
|
12497
12497
|
/***/ "4742":
|
|
12498
12498
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
12499
12499
|
|
|
@@ -14652,6 +14652,68 @@ var symbol = new _node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMPO
|
|
|
14652
14652
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);
|
|
14653
14653
|
/* harmony default export */ __webpack_exports__["default"] = (symbol);
|
|
14654
14654
|
|
|
14655
|
+
/***/ }),
|
|
14656
|
+
|
|
14657
|
+
/***/ "60da":
|
|
14658
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
14659
|
+
|
|
14660
|
+
"use strict";
|
|
14661
|
+
|
|
14662
|
+
var DESCRIPTORS = __webpack_require__("83ab");
|
|
14663
|
+
var fails = __webpack_require__("d039");
|
|
14664
|
+
var objectKeys = __webpack_require__("df75");
|
|
14665
|
+
var getOwnPropertySymbolsModule = __webpack_require__("7418");
|
|
14666
|
+
var propertyIsEnumerableModule = __webpack_require__("d1e7");
|
|
14667
|
+
var toObject = __webpack_require__("7b0b");
|
|
14668
|
+
var IndexedObject = __webpack_require__("44ad");
|
|
14669
|
+
|
|
14670
|
+
// eslint-disable-next-line es/no-object-assign -- safe
|
|
14671
|
+
var $assign = Object.assign;
|
|
14672
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
14673
|
+
var defineProperty = Object.defineProperty;
|
|
14674
|
+
|
|
14675
|
+
// `Object.assign` method
|
|
14676
|
+
// https://tc39.es/ecma262/#sec-object.assign
|
|
14677
|
+
module.exports = !$assign || fails(function () {
|
|
14678
|
+
// should have correct order of operations (Edge bug)
|
|
14679
|
+
if (DESCRIPTORS && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
|
|
14680
|
+
enumerable: true,
|
|
14681
|
+
get: function () {
|
|
14682
|
+
defineProperty(this, 'b', {
|
|
14683
|
+
value: 3,
|
|
14684
|
+
enumerable: false
|
|
14685
|
+
});
|
|
14686
|
+
}
|
|
14687
|
+
}), { b: 2 })).b !== 1) return true;
|
|
14688
|
+
// should work with symbols and should have deterministic property order (V8 bug)
|
|
14689
|
+
var A = {};
|
|
14690
|
+
var B = {};
|
|
14691
|
+
// eslint-disable-next-line es/no-symbol -- safe
|
|
14692
|
+
var symbol = Symbol();
|
|
14693
|
+
var alphabet = 'abcdefghijklmnopqrst';
|
|
14694
|
+
A[symbol] = 7;
|
|
14695
|
+
alphabet.split('').forEach(function (chr) { B[chr] = chr; });
|
|
14696
|
+
return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join('') != alphabet;
|
|
14697
|
+
}) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
|
|
14698
|
+
var T = toObject(target);
|
|
14699
|
+
var argumentsLength = arguments.length;
|
|
14700
|
+
var index = 1;
|
|
14701
|
+
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
14702
|
+
var propertyIsEnumerable = propertyIsEnumerableModule.f;
|
|
14703
|
+
while (argumentsLength > index) {
|
|
14704
|
+
var S = IndexedObject(arguments[index++]);
|
|
14705
|
+
var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);
|
|
14706
|
+
var length = keys.length;
|
|
14707
|
+
var j = 0;
|
|
14708
|
+
var key;
|
|
14709
|
+
while (length > j) {
|
|
14710
|
+
key = keys[j++];
|
|
14711
|
+
if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];
|
|
14712
|
+
}
|
|
14713
|
+
} return T;
|
|
14714
|
+
} : $assign;
|
|
14715
|
+
|
|
14716
|
+
|
|
14655
14717
|
/***/ }),
|
|
14656
14718
|
|
|
14657
14719
|
/***/ "611c":
|
|
@@ -26278,6 +26340,22 @@ module.exports = function (it) {
|
|
|
26278
26340
|
};
|
|
26279
26341
|
|
|
26280
26342
|
|
|
26343
|
+
/***/ }),
|
|
26344
|
+
|
|
26345
|
+
/***/ "cca6":
|
|
26346
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
26347
|
+
|
|
26348
|
+
var $ = __webpack_require__("23e7");
|
|
26349
|
+
var assign = __webpack_require__("60da");
|
|
26350
|
+
|
|
26351
|
+
// `Object.assign` method
|
|
26352
|
+
// https://tc39.es/ecma262/#sec-object.assign
|
|
26353
|
+
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
26354
|
+
$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
|
|
26355
|
+
assign: assign
|
|
26356
|
+
});
|
|
26357
|
+
|
|
26358
|
+
|
|
26281
26359
|
/***/ }),
|
|
26282
26360
|
|
|
26283
26361
|
/***/ "ccb1":
|
|
@@ -31141,17 +31219,6 @@ var symbol = new _node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMPO
|
|
|
31141
31219
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);
|
|
31142
31220
|
/* harmony default export */ __webpack_exports__["default"] = (symbol);
|
|
31143
31221
|
|
|
31144
|
-
/***/ }),
|
|
31145
|
-
|
|
31146
|
-
/***/ "eaac":
|
|
31147
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
31148
|
-
|
|
31149
|
-
"use strict";
|
|
31150
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_3a0468dc_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("46bc");
|
|
31151
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_3a0468dc_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_3a0468dc_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0__);
|
|
31152
|
-
/* unused harmony reexport * */
|
|
31153
|
-
|
|
31154
|
-
|
|
31155
31222
|
/***/ }),
|
|
31156
31223
|
|
|
31157
31224
|
/***/ "eb26":
|
|
@@ -32642,6 +32709,9 @@ function _objectSpread2(target) {
|
|
|
32642
32709
|
|
|
32643
32710
|
return target;
|
|
32644
32711
|
}
|
|
32712
|
+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.object.assign.js
|
|
32713
|
+
var es_object_assign = __webpack_require__("cca6");
|
|
32714
|
+
|
|
32645
32715
|
// EXTERNAL MODULE: ./node_modules/hy-rtc-sdk/lib/index.js
|
|
32646
32716
|
var lib = __webpack_require__("37c3");
|
|
32647
32717
|
var lib_default = /*#__PURE__*/__webpack_require__.n(lib);
|
|
@@ -32666,6 +32736,8 @@ var vuex_esm = __webpack_require__("2f62");
|
|
|
32666
32736
|
|
|
32667
32737
|
|
|
32668
32738
|
|
|
32739
|
+
|
|
32740
|
+
|
|
32669
32741
|
external_commonjs_vue_commonjs2_vue_root_Vue_default.a.use(vuex_esm["a" /* default */]); // (生产环境需要关闭) 开启严格模式, 无论何时发生了状态变更且不是由 mutation 函数引起的,将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到
|
|
32670
32742
|
|
|
32671
32743
|
var debug = "production" !== 'production';
|
|
@@ -32690,6 +32762,7 @@ var modules = modulesFiles.keys().reduce(function (modules, modulePath) {
|
|
|
32690
32762
|
|
|
32691
32763
|
|
|
32692
32764
|
|
|
32765
|
+
|
|
32693
32766
|
function install(Vue) {
|
|
32694
32767
|
var sdk = null;
|
|
32695
32768
|
var form = {};
|
|
@@ -32938,7 +33011,7 @@ function install(Vue) {
|
|
|
32938
33011
|
// EXTERNAL MODULE: ./src/store/modules/sdk.js
|
|
32939
33012
|
var modules_sdk = __webpack_require__("91f2");
|
|
32940
33013
|
|
|
32941
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
33014
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b98ef49-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/videoSurveillance/videoSurveillance.vue?vue&type=template&id=7533695b&scoped=true&
|
|
32942
33015
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"p_10",attrs:{"id":"videoSurveillance"}},[_c('div',{staticClass:"el-dialog__body dialog_body"},[_c('el-row',{staticClass:"el-rowBox",attrs:{"id":"elRow","gutter":4}},_vm._l((_vm.clientIdList),function(item,index){return _c('el-col',{key:index,style:({
|
|
32943
33016
|
'height': _vm.heightFn(1, index)
|
|
32944
33017
|
}),attrs:{"span":_vm.numberOfrows.type === 1 ? 24 / _vm.numberOfrows.number : (index === 0 ? 24 - (24 / _vm.numberOfrows.number) : 24 / _vm.numberOfrows.number)}},[(item.deviceId)?_c('div',{ref:("" + (item.deviceId)),refInFor:true,staticClass:"contentPlayback",staticStyle:{"padding-bottom":"6px"},style:({
|
|
@@ -32947,7 +33020,7 @@ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._sel
|
|
|
32947
33020
|
var staticRenderFns = []
|
|
32948
33021
|
|
|
32949
33022
|
|
|
32950
|
-
// CONCATENATED MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=template&id=
|
|
33023
|
+
// CONCATENATED MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=template&id=7533695b&scoped=true&
|
|
32951
33024
|
|
|
32952
33025
|
// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
|
|
32953
33026
|
function _arrayLikeToArray(arr, len) {
|
|
@@ -33033,324 +33106,7 @@ var es_array_find = __webpack_require__("7db0");
|
|
|
33033
33106
|
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find-index.js
|
|
33034
33107
|
var es_array_find_index = __webpack_require__("c740");
|
|
33035
33108
|
|
|
33036
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js
|
|
33037
|
-
var svgIconvue_type_template_id_1922cf47_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{class:_vm.svgClass,attrs:{"aria-hidden":"true"}},[_c('use',{attrs:{"xlink:href":_vm.iconName}})])}
|
|
33038
|
-
var svgIconvue_type_template_id_1922cf47_scoped_true_staticRenderFns = []
|
|
33039
|
-
|
|
33040
|
-
|
|
33041
|
-
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue?vue&type=template&id=1922cf47&scoped=true&
|
|
33042
|
-
|
|
33043
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/svgIcon.vue?vue&type=script&lang=js&
|
|
33044
|
-
//
|
|
33045
|
-
//
|
|
33046
|
-
//
|
|
33047
|
-
//
|
|
33048
|
-
//
|
|
33049
|
-
//
|
|
33050
|
-
/* harmony default export */ var svgIconvue_type_script_lang_js_ = ({
|
|
33051
|
-
name: 'SvgIcon',
|
|
33052
|
-
props: {
|
|
33053
|
-
svgName: {
|
|
33054
|
-
type: String,
|
|
33055
|
-
required: true
|
|
33056
|
-
},
|
|
33057
|
-
className: {
|
|
33058
|
-
type: String,
|
|
33059
|
-
default: ''
|
|
33060
|
-
}
|
|
33061
|
-
},
|
|
33062
|
-
computed: {
|
|
33063
|
-
// eslint-disable-next-line vue/return-in-computed-property
|
|
33064
|
-
clickFn: function clickFn() {
|
|
33065
|
-
this.$emit('click');
|
|
33066
|
-
},
|
|
33067
|
-
iconName: function iconName() {
|
|
33068
|
-
return "#icon-".concat(this.svgName);
|
|
33069
|
-
},
|
|
33070
|
-
svgClass: function svgClass() {
|
|
33071
|
-
if (this.className) {
|
|
33072
|
-
return 'svg-icon ' + this.className;
|
|
33073
|
-
} else {
|
|
33074
|
-
return 'svg-icon';
|
|
33075
|
-
}
|
|
33076
|
-
}
|
|
33077
|
-
}
|
|
33078
|
-
});
|
|
33079
|
-
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue?vue&type=script&lang=js&
|
|
33080
|
-
/* harmony default export */ var common_svgIconvue_type_script_lang_js_ = (svgIconvue_type_script_lang_js_);
|
|
33081
|
-
// EXTERNAL MODULE: ./src/components/common/svgIcon.vue?vue&type=style&index=0&id=1922cf47&scoped=true&lang=less&rel=stylesheet%2Fless&
|
|
33082
|
-
var svgIconvue_type_style_index_0_id_1922cf47_scoped_true_lang_less_rel_stylesheet_2Fless_ = __webpack_require__("69e5");
|
|
33083
|
-
|
|
33084
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
33085
|
-
/* globals __VUE_SSR_CONTEXT__ */
|
|
33086
|
-
|
|
33087
|
-
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
33088
|
-
// This module is a runtime utility for cleaner component module output and will
|
|
33089
|
-
// be included in the final webpack user bundle.
|
|
33090
|
-
|
|
33091
|
-
function normalizeComponent (
|
|
33092
|
-
scriptExports,
|
|
33093
|
-
render,
|
|
33094
|
-
staticRenderFns,
|
|
33095
|
-
functionalTemplate,
|
|
33096
|
-
injectStyles,
|
|
33097
|
-
scopeId,
|
|
33098
|
-
moduleIdentifier, /* server only */
|
|
33099
|
-
shadowMode /* vue-cli only */
|
|
33100
|
-
) {
|
|
33101
|
-
// Vue.extend constructor export interop
|
|
33102
|
-
var options = typeof scriptExports === 'function'
|
|
33103
|
-
? scriptExports.options
|
|
33104
|
-
: scriptExports
|
|
33105
|
-
|
|
33106
|
-
// render functions
|
|
33107
|
-
if (render) {
|
|
33108
|
-
options.render = render
|
|
33109
|
-
options.staticRenderFns = staticRenderFns
|
|
33110
|
-
options._compiled = true
|
|
33111
|
-
}
|
|
33112
|
-
|
|
33113
|
-
// functional template
|
|
33114
|
-
if (functionalTemplate) {
|
|
33115
|
-
options.functional = true
|
|
33116
|
-
}
|
|
33117
|
-
|
|
33118
|
-
// scopedId
|
|
33119
|
-
if (scopeId) {
|
|
33120
|
-
options._scopeId = 'data-v-' + scopeId
|
|
33121
|
-
}
|
|
33122
|
-
|
|
33123
|
-
var hook
|
|
33124
|
-
if (moduleIdentifier) { // server build
|
|
33125
|
-
hook = function (context) {
|
|
33126
|
-
// 2.3 injection
|
|
33127
|
-
context =
|
|
33128
|
-
context || // cached call
|
|
33129
|
-
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
33130
|
-
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
33131
|
-
// 2.2 with runInNewContext: true
|
|
33132
|
-
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
33133
|
-
context = __VUE_SSR_CONTEXT__
|
|
33134
|
-
}
|
|
33135
|
-
// inject component styles
|
|
33136
|
-
if (injectStyles) {
|
|
33137
|
-
injectStyles.call(this, context)
|
|
33138
|
-
}
|
|
33139
|
-
// register component module identifier for async chunk inferrence
|
|
33140
|
-
if (context && context._registeredComponents) {
|
|
33141
|
-
context._registeredComponents.add(moduleIdentifier)
|
|
33142
|
-
}
|
|
33143
|
-
}
|
|
33144
|
-
// used by ssr in case component is cached and beforeCreate
|
|
33145
|
-
// never gets called
|
|
33146
|
-
options._ssrRegister = hook
|
|
33147
|
-
} else if (injectStyles) {
|
|
33148
|
-
hook = shadowMode
|
|
33149
|
-
? function () {
|
|
33150
|
-
injectStyles.call(
|
|
33151
|
-
this,
|
|
33152
|
-
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
33153
|
-
)
|
|
33154
|
-
}
|
|
33155
|
-
: injectStyles
|
|
33156
|
-
}
|
|
33157
|
-
|
|
33158
|
-
if (hook) {
|
|
33159
|
-
if (options.functional) {
|
|
33160
|
-
// for template-only hot-reload because in that case the render fn doesn't
|
|
33161
|
-
// go through the normalizer
|
|
33162
|
-
options._injectStyles = hook
|
|
33163
|
-
// register for functional component in vue file
|
|
33164
|
-
var originalRender = options.render
|
|
33165
|
-
options.render = function renderWithStyleInjection (h, context) {
|
|
33166
|
-
hook.call(context)
|
|
33167
|
-
return originalRender(h, context)
|
|
33168
|
-
}
|
|
33169
|
-
} else {
|
|
33170
|
-
// inject component registration as beforeCreate hook
|
|
33171
|
-
var existing = options.beforeCreate
|
|
33172
|
-
options.beforeCreate = existing
|
|
33173
|
-
? [].concat(existing, hook)
|
|
33174
|
-
: [hook]
|
|
33175
|
-
}
|
|
33176
|
-
}
|
|
33177
|
-
|
|
33178
|
-
return {
|
|
33179
|
-
exports: scriptExports,
|
|
33180
|
-
options: options
|
|
33181
|
-
}
|
|
33182
|
-
}
|
|
33183
|
-
|
|
33184
|
-
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue
|
|
33185
|
-
|
|
33186
|
-
|
|
33187
|
-
|
|
33188
|
-
|
|
33189
|
-
|
|
33190
|
-
|
|
33191
|
-
/* normalize component */
|
|
33192
|
-
|
|
33193
|
-
var component = normalizeComponent(
|
|
33194
|
-
common_svgIconvue_type_script_lang_js_,
|
|
33195
|
-
svgIconvue_type_template_id_1922cf47_scoped_true_render,
|
|
33196
|
-
svgIconvue_type_template_id_1922cf47_scoped_true_staticRenderFns,
|
|
33197
|
-
false,
|
|
33198
|
-
null,
|
|
33199
|
-
"1922cf47",
|
|
33200
|
-
null
|
|
33201
|
-
|
|
33202
|
-
)
|
|
33203
|
-
|
|
33204
|
-
/* harmony default export */ var svgIcon = (component.exports);
|
|
33205
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec5adf3-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/deleteConfirmationBox.vue?vue&type=template&id=7a6e4a16&scoped=true&
|
|
33206
|
-
var deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-dialog',{staticClass:"dialog_clsss",attrs:{"visible":_vm.dialogVisible,"append-to-body":true,"close-on-click-modal":false,"close-on-press-escape":false,"show-close":false,"width":((_vm.form.width) + "px")},on:{"update:visible":function($event){_vm.dialogVisible=$event}}},[_c('div',{staticClass:"deleteBox c_fff"},[_c('div',{staticClass:"dialog_header fw_600"},[(_vm.form.deleteTitleImg)?_c('svg-icon',{staticStyle:{"width":"20px","height":"20px"},attrs:{"svg-name":_vm.form.deleteTitleImg}}):_vm._e(),_c('p',[_vm._v(_vm._s(_vm.form.deleteTitle))])],1),_c('div',{staticClass:"dialog_body"},[_c('div',{staticClass:"tac fs_14",staticStyle:{"line-height":"26px"},domProps:{"innerHTML":_vm._s(_vm.form.deleteContent)}}),(_vm.form.submitShow || _vm.form.closeShow)?_c('div',{staticStyle:{"margin-top":"40px"},style:({'text-align': _vm.form.textAlign})},[(_vm.form.closeShow)?_c('el-button',{staticClass:"buttonBox",class:_vm.form.closeClass,attrs:{"size":"small"},on:{"click":_vm.onClose}},[_vm._v(_vm._s(_vm.form.closeText))]):_vm._e(),(_vm.form.submitShow)?_c('el-button',{staticClass:"buttonBox",class:_vm.form.submitClass,attrs:{"size":"small"},on:{"click":_vm.submitFn}},[_vm._v(_vm._s(_vm.form.submitText))]):_vm._e()],1):_vm._e()])])])}
|
|
33207
|
-
var deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_staticRenderFns = []
|
|
33208
|
-
|
|
33209
|
-
|
|
33210
|
-
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue?vue&type=template&id=7a6e4a16&scoped=true&
|
|
33211
|
-
|
|
33212
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/deleteConfirmationBox.vue?vue&type=script&lang=js&
|
|
33213
|
-
|
|
33214
|
-
//
|
|
33215
|
-
//
|
|
33216
|
-
//
|
|
33217
|
-
//
|
|
33218
|
-
//
|
|
33219
|
-
//
|
|
33220
|
-
//
|
|
33221
|
-
//
|
|
33222
|
-
//
|
|
33223
|
-
//
|
|
33224
|
-
//
|
|
33225
|
-
//
|
|
33226
|
-
//
|
|
33227
|
-
//
|
|
33228
|
-
//
|
|
33229
|
-
//
|
|
33230
|
-
//
|
|
33231
|
-
//
|
|
33232
|
-
//
|
|
33233
|
-
//
|
|
33234
|
-
//
|
|
33235
|
-
//
|
|
33236
|
-
//
|
|
33237
|
-
//
|
|
33238
|
-
//
|
|
33239
|
-
//
|
|
33240
|
-
//
|
|
33241
|
-
//
|
|
33242
|
-
//
|
|
33243
|
-
//
|
|
33244
|
-
//
|
|
33245
|
-
/* harmony default export */ var deleteConfirmationBoxvue_type_script_lang_js_ = ({
|
|
33246
|
-
data: function data() {
|
|
33247
|
-
return {
|
|
33248
|
-
dialogVisible: false,
|
|
33249
|
-
determineFunc: null,
|
|
33250
|
-
closeFunc: null,
|
|
33251
|
-
form: {
|
|
33252
|
-
width: 500,
|
|
33253
|
-
deleteTitleImg: 'delete',
|
|
33254
|
-
deleteTitle: '删除用户',
|
|
33255
|
-
deleteContent: '删除用户',
|
|
33256
|
-
closeShow: true,
|
|
33257
|
-
closeClass: 'button_default',
|
|
33258
|
-
closeText: '放 弃',
|
|
33259
|
-
submitShow: true,
|
|
33260
|
-
submitClass: 'button_delete',
|
|
33261
|
-
submitText: '删 除',
|
|
33262
|
-
textAlign: 'center'
|
|
33263
|
-
}
|
|
33264
|
-
};
|
|
33265
|
-
},
|
|
33266
|
-
methods: {
|
|
33267
|
-
show: function show(json, determineFunc, closeFunc) {
|
|
33268
|
-
var data = {
|
|
33269
|
-
width: 500,
|
|
33270
|
-
deleteTitleImg: 'delete',
|
|
33271
|
-
deleteTitle: '删除用户',
|
|
33272
|
-
deleteContent: '删除用户',
|
|
33273
|
-
closeShow: true,
|
|
33274
|
-
closeClass: 'button_default',
|
|
33275
|
-
closeText: '放 弃',
|
|
33276
|
-
submitShow: true,
|
|
33277
|
-
submitClass: 'button_delete',
|
|
33278
|
-
submitText: '删 除',
|
|
33279
|
-
textAlign: 'center'
|
|
33280
|
-
};
|
|
33281
|
-
this.determineFunc = null;
|
|
33282
|
-
this.closeFunc = null;
|
|
33283
|
-
this.form = _objectSpread2(_objectSpread2({}, data), json);
|
|
33284
|
-
|
|
33285
|
-
if (this.form.submitShow && this.form.closeShow) {
|
|
33286
|
-
if (determineFunc) {
|
|
33287
|
-
this.determineFunc = determineFunc;
|
|
33288
|
-
}
|
|
33289
|
-
|
|
33290
|
-
if (closeFunc) {
|
|
33291
|
-
this.closeFunc = closeFunc;
|
|
33292
|
-
}
|
|
33293
|
-
} else if (this.form.submitShow) {
|
|
33294
|
-
if (determineFunc) {
|
|
33295
|
-
this.determineFunc = determineFunc;
|
|
33296
|
-
}
|
|
33297
|
-
} else if (this.form.closeShow) {
|
|
33298
|
-
if (determineFunc) {
|
|
33299
|
-
this.closeFunc = determineFunc;
|
|
33300
|
-
}
|
|
33301
|
-
}
|
|
33302
|
-
|
|
33303
|
-
this.dialogVisible = true;
|
|
33304
|
-
},
|
|
33305
|
-
submitFn: function submitFn() {
|
|
33306
|
-
var _this = this;
|
|
33307
|
-
|
|
33308
|
-
this.dialogVisible = false;
|
|
33309
|
-
this.$nextTick(function () {
|
|
33310
|
-
if (_this.determineFunc) {
|
|
33311
|
-
_this.determineFunc();
|
|
33312
|
-
}
|
|
33313
|
-
|
|
33314
|
-
_this.$emit('on-submit');
|
|
33315
|
-
});
|
|
33316
|
-
},
|
|
33317
|
-
onClose: function onClose() {
|
|
33318
|
-
var _this2 = this;
|
|
33319
|
-
|
|
33320
|
-
this.dialogVisible = false;
|
|
33321
|
-
this.$nextTick(function () {
|
|
33322
|
-
if (_this2.closeFunc) {
|
|
33323
|
-
_this2.closeFunc();
|
|
33324
|
-
}
|
|
33325
|
-
|
|
33326
|
-
_this2.$emit('on-close');
|
|
33327
|
-
});
|
|
33328
|
-
}
|
|
33329
|
-
}
|
|
33330
|
-
});
|
|
33331
|
-
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue?vue&type=script&lang=js&
|
|
33332
|
-
/* harmony default export */ var common_deleteConfirmationBoxvue_type_script_lang_js_ = (deleteConfirmationBoxvue_type_script_lang_js_);
|
|
33333
|
-
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue
|
|
33334
|
-
|
|
33335
|
-
|
|
33336
|
-
|
|
33337
|
-
|
|
33338
|
-
|
|
33339
|
-
/* normalize component */
|
|
33340
|
-
|
|
33341
|
-
var deleteConfirmationBox_component = normalizeComponent(
|
|
33342
|
-
common_deleteConfirmationBoxvue_type_script_lang_js_,
|
|
33343
|
-
deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_render,
|
|
33344
|
-
deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_staticRenderFns,
|
|
33345
|
-
false,
|
|
33346
|
-
null,
|
|
33347
|
-
"7a6e4a16",
|
|
33348
|
-
null
|
|
33349
|
-
|
|
33350
|
-
)
|
|
33351
|
-
|
|
33352
|
-
/* harmony default export */ var deleteConfirmationBox = (deleteConfirmationBox_component.exports);
|
|
33353
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/videoSurveillance/videoSurveillance.vue?vue&type=script&lang=js&
|
|
33109
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/videoSurveillance/videoSurveillance.vue?vue&type=script&lang=js&
|
|
33354
33110
|
|
|
33355
33111
|
|
|
33356
33112
|
|
|
@@ -33851,8 +33607,6 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
33851
33607
|
//
|
|
33852
33608
|
//
|
|
33853
33609
|
//
|
|
33854
|
-
|
|
33855
|
-
|
|
33856
33610
|
/* harmony default export */ var videoSurveillancevue_type_script_lang_js_ = ({
|
|
33857
33611
|
name: 'videoSurveillance',
|
|
33858
33612
|
props: {
|
|
@@ -33936,9 +33690,8 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
33936
33690
|
}
|
|
33937
33691
|
}
|
|
33938
33692
|
},
|
|
33939
|
-
components: {
|
|
33940
|
-
|
|
33941
|
-
deleteConfirmationBox: deleteConfirmationBox
|
|
33693
|
+
components: {// svgIcon,
|
|
33694
|
+
// deleteConfirmationBox
|
|
33942
33695
|
},
|
|
33943
33696
|
mounted: function mounted() {
|
|
33944
33697
|
this.resetFn();
|
|
@@ -33956,7 +33709,7 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
33956
33709
|
},
|
|
33957
33710
|
|
|
33958
33711
|
/* 获取当前平台在调用的设备 */
|
|
33959
|
-
|
|
33712
|
+
listOfRunningDevicesFn: function listOfRunningDevicesFn(obj) {
|
|
33960
33713
|
// obj === null 放回全部设备
|
|
33961
33714
|
// obj.audioType === true 返回对接中的设备
|
|
33962
33715
|
// obj.videoType === true 返回调用画面的设备
|
|
@@ -33988,17 +33741,25 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
33988
33741
|
},
|
|
33989
33742
|
|
|
33990
33743
|
/* 打开或者关闭声音方法 */
|
|
33991
|
-
forbiddenSound: function forbiddenSound(item) {
|
|
33744
|
+
forbiddenSound: function forbiddenSound(item, type) {
|
|
33992
33745
|
var label = document.getElementById("".concat(item.deviceId).concat(item.roomId));
|
|
33993
33746
|
|
|
33994
|
-
if (
|
|
33995
|
-
this.$set(item, 'forbiddenSound',
|
|
33996
|
-
label.muted =
|
|
33747
|
+
if (type) {
|
|
33748
|
+
this.$set(item, 'forbiddenSound', type);
|
|
33749
|
+
label.muted = type;
|
|
33997
33750
|
} else {
|
|
33998
|
-
|
|
33999
|
-
|
|
33751
|
+
if (!item.forbiddenSound) {
|
|
33752
|
+
this.$set(item, 'forbiddenSound', true);
|
|
33753
|
+
label.muted = true;
|
|
33754
|
+
} else {
|
|
33755
|
+
this.$set(item, 'forbiddenSound', false);
|
|
33756
|
+
label.muted = false;
|
|
33757
|
+
}
|
|
34000
33758
|
}
|
|
34001
33759
|
},
|
|
33760
|
+
moveInputFn: function moveInputFn(number) {
|
|
33761
|
+
this.moveInput = number - 0;
|
|
33762
|
+
},
|
|
34002
33763
|
|
|
34003
33764
|
/* ============移动============= */
|
|
34004
33765
|
movePosition: function movePosition(direction, index1) {
|
|
@@ -34145,9 +33906,9 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34145
33906
|
|
|
34146
33907
|
/* 切换一行摆放位置 */
|
|
34147
33908
|
numberOfrowsFn: function numberOfrowsFn(row) {
|
|
34148
|
-
this.
|
|
33909
|
+
this.switchWindowsFn(row);
|
|
34149
33910
|
},
|
|
34150
|
-
|
|
33911
|
+
switchWindowsFn: function switchWindowsFn(row, otherJudgment) {
|
|
34151
33912
|
var _this5 = this;
|
|
34152
33913
|
|
|
34153
33914
|
if (this.fixedQuantity) {
|
|
@@ -34171,27 +33932,46 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34171
33932
|
|
|
34172
33933
|
this.clientIdList = _toConsumableArray(clientIdList);
|
|
34173
33934
|
this.numberOfrows = _objectSpread2({}, row);
|
|
34174
|
-
this.$emit('on-
|
|
33935
|
+
this.$emit('on-modifyWindow', this.numberOfrows);
|
|
34175
33936
|
} else {
|
|
34176
|
-
|
|
34177
|
-
|
|
34178
|
-
|
|
34179
|
-
|
|
34180
|
-
|
|
34181
|
-
submitText: '确 定'
|
|
34182
|
-
}, function () {
|
|
34183
|
-
var closeTheRoomList = clientIdList.splice(row.label, clientIdList.length - 1);
|
|
33937
|
+
if (otherJudgment) {
|
|
33938
|
+
var nextStepFn = function nextStepFn() {
|
|
33939
|
+
var closeTheRoomList = clientIdList.splice(row.label, clientIdList.length - 1);
|
|
33940
|
+
|
|
33941
|
+
_this5.closeTheRoom(closeTheRoomList);
|
|
34184
33942
|
|
|
34185
|
-
|
|
33943
|
+
_this5.numberOfrows = _objectSpread2({}, row);
|
|
34186
33944
|
|
|
34187
|
-
|
|
33945
|
+
_this5.$emit('on-modifyWindow', _this5.numberOfrows);
|
|
34188
33946
|
|
|
34189
|
-
|
|
33947
|
+
_this5.$nextTick(function () {
|
|
33948
|
+
_this5.clientIdList = _toConsumableArray(clientIdList);
|
|
33949
|
+
});
|
|
33950
|
+
};
|
|
34190
33951
|
|
|
34191
|
-
|
|
34192
|
-
|
|
33952
|
+
otherJudgment(nextStepFn);
|
|
33953
|
+
} else {
|
|
33954
|
+
this.$refs.deleteConfirmationBox.show({
|
|
33955
|
+
deleteTitleImg: 'tips',
|
|
33956
|
+
deleteTitle: '是否确认切换',
|
|
33957
|
+
submitClass: 'button_function',
|
|
33958
|
+
deleteContent: '<div><p>切换窗口内容会自动关闭多余窗口,是否确认切换?</p></div>',
|
|
33959
|
+
submitText: '确 定'
|
|
33960
|
+
}, function () {
|
|
33961
|
+
var closeTheRoomList = clientIdList.splice(row.label, clientIdList.length - 1);
|
|
33962
|
+
|
|
33963
|
+
_this5.closeTheRoom(closeTheRoomList);
|
|
33964
|
+
|
|
33965
|
+
_this5.numberOfrows = _objectSpread2({}, row);
|
|
33966
|
+
|
|
33967
|
+
_this5.$emit('on-modifyWindow', _this5.numberOfrows);
|
|
33968
|
+
|
|
33969
|
+
_this5.$nextTick(function () {
|
|
33970
|
+
_this5.clientIdList = _toConsumableArray(clientIdList);
|
|
33971
|
+
});
|
|
34193
33972
|
});
|
|
34194
|
-
})
|
|
33973
|
+
} // nextStepFn()
|
|
33974
|
+
|
|
34195
33975
|
}
|
|
34196
33976
|
},
|
|
34197
33977
|
|
|
@@ -34215,7 +33995,7 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34215
33995
|
var row = this.numberOfrowsList[_i2];
|
|
34216
33996
|
|
|
34217
33997
|
if (this.clientIdList.length === row.label || this.clientIdList.length < row.label) {
|
|
34218
|
-
this.
|
|
33998
|
+
this.switchWindowsFn(row);
|
|
34219
33999
|
break;
|
|
34220
34000
|
}
|
|
34221
34001
|
}
|
|
@@ -34314,6 +34094,9 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34314
34094
|
},
|
|
34315
34095
|
|
|
34316
34096
|
/* 监控 */
|
|
34097
|
+
liveBroadcastFn: function liveBroadcastFn(row) {
|
|
34098
|
+
this.show(row);
|
|
34099
|
+
},
|
|
34317
34100
|
show: function show(row) {
|
|
34318
34101
|
var _this8 = this;
|
|
34319
34102
|
|
|
@@ -34347,7 +34130,7 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34347
34130
|
return;
|
|
34348
34131
|
}
|
|
34349
34132
|
|
|
34350
|
-
var obtainAllClientIdList = this.
|
|
34133
|
+
var obtainAllClientIdList = this.listOfRunningDevicesFn({
|
|
34351
34134
|
videoType: true
|
|
34352
34135
|
});
|
|
34353
34136
|
var index = obtainAllClientIdList.findIndex(function (v) {
|
|
@@ -34414,7 +34197,7 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34414
34197
|
var _row = _this8.numberOfrowsList[_i3];
|
|
34415
34198
|
|
|
34416
34199
|
if (num === _row.label || num < _row.label) {
|
|
34417
|
-
_this8.
|
|
34200
|
+
_this8.switchWindowsFn(_row);
|
|
34418
34201
|
|
|
34419
34202
|
break;
|
|
34420
34203
|
}
|
|
@@ -34449,12 +34232,112 @@ var deleteConfirmationBox_component = normalizeComponent(
|
|
|
34449
34232
|
});
|
|
34450
34233
|
// CONCATENATED MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=script&lang=js&
|
|
34451
34234
|
/* harmony default export */ var videoSurveillance_videoSurveillancevue_type_script_lang_js_ = (videoSurveillancevue_type_script_lang_js_);
|
|
34452
|
-
// EXTERNAL MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=style&index=0&id=
|
|
34453
|
-
var
|
|
34235
|
+
// EXTERNAL MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=style&index=0&id=7533695b&scoped=true&lang=less&rel=stylesheet%2Fless&
|
|
34236
|
+
var videoSurveillancevue_type_style_index_0_id_7533695b_scoped_true_lang_less_rel_stylesheet_2Fless_ = __webpack_require__("fe77");
|
|
34454
34237
|
|
|
34455
34238
|
// EXTERNAL MODULE: ./src/components/videoSurveillance/videoSurveillance.vue?vue&type=style&index=1&lang=less&rel=stylesheet%2Fless&
|
|
34456
34239
|
var videoSurveillancevue_type_style_index_1_lang_less_rel_stylesheet_2Fless_ = __webpack_require__("97fa");
|
|
34457
34240
|
|
|
34241
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
34242
|
+
/* globals __VUE_SSR_CONTEXT__ */
|
|
34243
|
+
|
|
34244
|
+
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
34245
|
+
// This module is a runtime utility for cleaner component module output and will
|
|
34246
|
+
// be included in the final webpack user bundle.
|
|
34247
|
+
|
|
34248
|
+
function normalizeComponent (
|
|
34249
|
+
scriptExports,
|
|
34250
|
+
render,
|
|
34251
|
+
staticRenderFns,
|
|
34252
|
+
functionalTemplate,
|
|
34253
|
+
injectStyles,
|
|
34254
|
+
scopeId,
|
|
34255
|
+
moduleIdentifier, /* server only */
|
|
34256
|
+
shadowMode /* vue-cli only */
|
|
34257
|
+
) {
|
|
34258
|
+
// Vue.extend constructor export interop
|
|
34259
|
+
var options = typeof scriptExports === 'function'
|
|
34260
|
+
? scriptExports.options
|
|
34261
|
+
: scriptExports
|
|
34262
|
+
|
|
34263
|
+
// render functions
|
|
34264
|
+
if (render) {
|
|
34265
|
+
options.render = render
|
|
34266
|
+
options.staticRenderFns = staticRenderFns
|
|
34267
|
+
options._compiled = true
|
|
34268
|
+
}
|
|
34269
|
+
|
|
34270
|
+
// functional template
|
|
34271
|
+
if (functionalTemplate) {
|
|
34272
|
+
options.functional = true
|
|
34273
|
+
}
|
|
34274
|
+
|
|
34275
|
+
// scopedId
|
|
34276
|
+
if (scopeId) {
|
|
34277
|
+
options._scopeId = 'data-v-' + scopeId
|
|
34278
|
+
}
|
|
34279
|
+
|
|
34280
|
+
var hook
|
|
34281
|
+
if (moduleIdentifier) { // server build
|
|
34282
|
+
hook = function (context) {
|
|
34283
|
+
// 2.3 injection
|
|
34284
|
+
context =
|
|
34285
|
+
context || // cached call
|
|
34286
|
+
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
|
34287
|
+
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
|
34288
|
+
// 2.2 with runInNewContext: true
|
|
34289
|
+
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
|
34290
|
+
context = __VUE_SSR_CONTEXT__
|
|
34291
|
+
}
|
|
34292
|
+
// inject component styles
|
|
34293
|
+
if (injectStyles) {
|
|
34294
|
+
injectStyles.call(this, context)
|
|
34295
|
+
}
|
|
34296
|
+
// register component module identifier for async chunk inferrence
|
|
34297
|
+
if (context && context._registeredComponents) {
|
|
34298
|
+
context._registeredComponents.add(moduleIdentifier)
|
|
34299
|
+
}
|
|
34300
|
+
}
|
|
34301
|
+
// used by ssr in case component is cached and beforeCreate
|
|
34302
|
+
// never gets called
|
|
34303
|
+
options._ssrRegister = hook
|
|
34304
|
+
} else if (injectStyles) {
|
|
34305
|
+
hook = shadowMode
|
|
34306
|
+
? function () {
|
|
34307
|
+
injectStyles.call(
|
|
34308
|
+
this,
|
|
34309
|
+
(options.functional ? this.parent : this).$root.$options.shadowRoot
|
|
34310
|
+
)
|
|
34311
|
+
}
|
|
34312
|
+
: injectStyles
|
|
34313
|
+
}
|
|
34314
|
+
|
|
34315
|
+
if (hook) {
|
|
34316
|
+
if (options.functional) {
|
|
34317
|
+
// for template-only hot-reload because in that case the render fn doesn't
|
|
34318
|
+
// go through the normalizer
|
|
34319
|
+
options._injectStyles = hook
|
|
34320
|
+
// register for functional component in vue file
|
|
34321
|
+
var originalRender = options.render
|
|
34322
|
+
options.render = function renderWithStyleInjection (h, context) {
|
|
34323
|
+
hook.call(context)
|
|
34324
|
+
return originalRender(h, context)
|
|
34325
|
+
}
|
|
34326
|
+
} else {
|
|
34327
|
+
// inject component registration as beforeCreate hook
|
|
34328
|
+
var existing = options.beforeCreate
|
|
34329
|
+
options.beforeCreate = existing
|
|
34330
|
+
? [].concat(existing, hook)
|
|
34331
|
+
: [hook]
|
|
34332
|
+
}
|
|
34333
|
+
}
|
|
34334
|
+
|
|
34335
|
+
return {
|
|
34336
|
+
exports: scriptExports,
|
|
34337
|
+
options: options
|
|
34338
|
+
}
|
|
34339
|
+
}
|
|
34340
|
+
|
|
34458
34341
|
// CONCATENATED MODULE: ./src/components/videoSurveillance/videoSurveillance.vue
|
|
34459
34342
|
|
|
34460
34343
|
|
|
@@ -34465,18 +34348,235 @@ var videoSurveillancevue_type_style_index_1_lang_less_rel_stylesheet_2Fless_ = _
|
|
|
34465
34348
|
|
|
34466
34349
|
/* normalize component */
|
|
34467
34350
|
|
|
34468
|
-
var
|
|
34351
|
+
var component = normalizeComponent(
|
|
34469
34352
|
videoSurveillance_videoSurveillancevue_type_script_lang_js_,
|
|
34470
34353
|
render,
|
|
34471
34354
|
staticRenderFns,
|
|
34472
34355
|
false,
|
|
34473
34356
|
null,
|
|
34474
|
-
"
|
|
34357
|
+
"7533695b",
|
|
34358
|
+
null
|
|
34359
|
+
|
|
34360
|
+
)
|
|
34361
|
+
|
|
34362
|
+
/* harmony default export */ var videoSurveillance = (component.exports);
|
|
34363
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b98ef49-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/svgIcon.vue?vue&type=template&id=1922cf47&scoped=true&
|
|
34364
|
+
var svgIconvue_type_template_id_1922cf47_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('svg',{class:_vm.svgClass,attrs:{"aria-hidden":"true"}},[_c('use',{attrs:{"xlink:href":_vm.iconName}})])}
|
|
34365
|
+
var svgIconvue_type_template_id_1922cf47_scoped_true_staticRenderFns = []
|
|
34366
|
+
|
|
34367
|
+
|
|
34368
|
+
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue?vue&type=template&id=1922cf47&scoped=true&
|
|
34369
|
+
|
|
34370
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/svgIcon.vue?vue&type=script&lang=js&
|
|
34371
|
+
//
|
|
34372
|
+
//
|
|
34373
|
+
//
|
|
34374
|
+
//
|
|
34375
|
+
//
|
|
34376
|
+
//
|
|
34377
|
+
/* harmony default export */ var svgIconvue_type_script_lang_js_ = ({
|
|
34378
|
+
name: 'SvgIcon',
|
|
34379
|
+
props: {
|
|
34380
|
+
svgName: {
|
|
34381
|
+
type: String,
|
|
34382
|
+
required: true
|
|
34383
|
+
},
|
|
34384
|
+
className: {
|
|
34385
|
+
type: String,
|
|
34386
|
+
default: ''
|
|
34387
|
+
}
|
|
34388
|
+
},
|
|
34389
|
+
computed: {
|
|
34390
|
+
// eslint-disable-next-line vue/return-in-computed-property
|
|
34391
|
+
clickFn: function clickFn() {
|
|
34392
|
+
this.$emit('click');
|
|
34393
|
+
},
|
|
34394
|
+
iconName: function iconName() {
|
|
34395
|
+
return "#icon-".concat(this.svgName);
|
|
34396
|
+
},
|
|
34397
|
+
svgClass: function svgClass() {
|
|
34398
|
+
if (this.className) {
|
|
34399
|
+
return 'svg-icon ' + this.className;
|
|
34400
|
+
} else {
|
|
34401
|
+
return 'svg-icon';
|
|
34402
|
+
}
|
|
34403
|
+
}
|
|
34404
|
+
}
|
|
34405
|
+
});
|
|
34406
|
+
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue?vue&type=script&lang=js&
|
|
34407
|
+
/* harmony default export */ var common_svgIconvue_type_script_lang_js_ = (svgIconvue_type_script_lang_js_);
|
|
34408
|
+
// EXTERNAL MODULE: ./src/components/common/svgIcon.vue?vue&type=style&index=0&id=1922cf47&scoped=true&lang=less&rel=stylesheet%2Fless&
|
|
34409
|
+
var svgIconvue_type_style_index_0_id_1922cf47_scoped_true_lang_less_rel_stylesheet_2Fless_ = __webpack_require__("69e5");
|
|
34410
|
+
|
|
34411
|
+
// CONCATENATED MODULE: ./src/components/common/svgIcon.vue
|
|
34412
|
+
|
|
34413
|
+
|
|
34414
|
+
|
|
34415
|
+
|
|
34416
|
+
|
|
34417
|
+
|
|
34418
|
+
/* normalize component */
|
|
34419
|
+
|
|
34420
|
+
var svgIcon_component = normalizeComponent(
|
|
34421
|
+
common_svgIconvue_type_script_lang_js_,
|
|
34422
|
+
svgIconvue_type_template_id_1922cf47_scoped_true_render,
|
|
34423
|
+
svgIconvue_type_template_id_1922cf47_scoped_true_staticRenderFns,
|
|
34424
|
+
false,
|
|
34425
|
+
null,
|
|
34426
|
+
"1922cf47",
|
|
34427
|
+
null
|
|
34428
|
+
|
|
34429
|
+
)
|
|
34430
|
+
|
|
34431
|
+
/* harmony default export */ var svgIcon = (svgIcon_component.exports);
|
|
34432
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7b98ef49-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/deleteConfirmationBox.vue?vue&type=template&id=7a6e4a16&scoped=true&
|
|
34433
|
+
var deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('el-dialog',{staticClass:"dialog_clsss",attrs:{"visible":_vm.dialogVisible,"append-to-body":true,"close-on-click-modal":false,"close-on-press-escape":false,"show-close":false,"width":((_vm.form.width) + "px")},on:{"update:visible":function($event){_vm.dialogVisible=$event}}},[_c('div',{staticClass:"deleteBox c_fff"},[_c('div',{staticClass:"dialog_header fw_600"},[(_vm.form.deleteTitleImg)?_c('svg-icon',{staticStyle:{"width":"20px","height":"20px"},attrs:{"svg-name":_vm.form.deleteTitleImg}}):_vm._e(),_c('p',[_vm._v(_vm._s(_vm.form.deleteTitle))])],1),_c('div',{staticClass:"dialog_body"},[_c('div',{staticClass:"tac fs_14",staticStyle:{"line-height":"26px"},domProps:{"innerHTML":_vm._s(_vm.form.deleteContent)}}),(_vm.form.submitShow || _vm.form.closeShow)?_c('div',{staticStyle:{"margin-top":"40px"},style:({'text-align': _vm.form.textAlign})},[(_vm.form.closeShow)?_c('el-button',{staticClass:"buttonBox",class:_vm.form.closeClass,attrs:{"size":"small"},on:{"click":_vm.onClose}},[_vm._v(_vm._s(_vm.form.closeText))]):_vm._e(),(_vm.form.submitShow)?_c('el-button',{staticClass:"buttonBox",class:_vm.form.submitClass,attrs:{"size":"small"},on:{"click":_vm.submitFn}},[_vm._v(_vm._s(_vm.form.submitText))]):_vm._e()],1):_vm._e()])])])}
|
|
34434
|
+
var deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_staticRenderFns = []
|
|
34435
|
+
|
|
34436
|
+
|
|
34437
|
+
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue?vue&type=template&id=7a6e4a16&scoped=true&
|
|
34438
|
+
|
|
34439
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/common/deleteConfirmationBox.vue?vue&type=script&lang=js&
|
|
34440
|
+
|
|
34441
|
+
//
|
|
34442
|
+
//
|
|
34443
|
+
//
|
|
34444
|
+
//
|
|
34445
|
+
//
|
|
34446
|
+
//
|
|
34447
|
+
//
|
|
34448
|
+
//
|
|
34449
|
+
//
|
|
34450
|
+
//
|
|
34451
|
+
//
|
|
34452
|
+
//
|
|
34453
|
+
//
|
|
34454
|
+
//
|
|
34455
|
+
//
|
|
34456
|
+
//
|
|
34457
|
+
//
|
|
34458
|
+
//
|
|
34459
|
+
//
|
|
34460
|
+
//
|
|
34461
|
+
//
|
|
34462
|
+
//
|
|
34463
|
+
//
|
|
34464
|
+
//
|
|
34465
|
+
//
|
|
34466
|
+
//
|
|
34467
|
+
//
|
|
34468
|
+
//
|
|
34469
|
+
//
|
|
34470
|
+
//
|
|
34471
|
+
//
|
|
34472
|
+
/* harmony default export */ var deleteConfirmationBoxvue_type_script_lang_js_ = ({
|
|
34473
|
+
data: function data() {
|
|
34474
|
+
return {
|
|
34475
|
+
dialogVisible: false,
|
|
34476
|
+
determineFunc: null,
|
|
34477
|
+
closeFunc: null,
|
|
34478
|
+
form: {
|
|
34479
|
+
width: 500,
|
|
34480
|
+
deleteTitleImg: 'delete',
|
|
34481
|
+
deleteTitle: '删除用户',
|
|
34482
|
+
deleteContent: '删除用户',
|
|
34483
|
+
closeShow: true,
|
|
34484
|
+
closeClass: 'button_default',
|
|
34485
|
+
closeText: '放 弃',
|
|
34486
|
+
submitShow: true,
|
|
34487
|
+
submitClass: 'button_delete',
|
|
34488
|
+
submitText: '删 除',
|
|
34489
|
+
textAlign: 'center'
|
|
34490
|
+
}
|
|
34491
|
+
};
|
|
34492
|
+
},
|
|
34493
|
+
methods: {
|
|
34494
|
+
show: function show(json, determineFunc, closeFunc) {
|
|
34495
|
+
var data = {
|
|
34496
|
+
width: 500,
|
|
34497
|
+
deleteTitleImg: 'delete',
|
|
34498
|
+
deleteTitle: '删除用户',
|
|
34499
|
+
deleteContent: '删除用户',
|
|
34500
|
+
closeShow: true,
|
|
34501
|
+
closeClass: 'button_default',
|
|
34502
|
+
closeText: '放 弃',
|
|
34503
|
+
submitShow: true,
|
|
34504
|
+
submitClass: 'button_delete',
|
|
34505
|
+
submitText: '删 除',
|
|
34506
|
+
textAlign: 'center'
|
|
34507
|
+
};
|
|
34508
|
+
this.determineFunc = null;
|
|
34509
|
+
this.closeFunc = null;
|
|
34510
|
+
this.form = _objectSpread2(_objectSpread2({}, data), json);
|
|
34511
|
+
|
|
34512
|
+
if (this.form.submitShow && this.form.closeShow) {
|
|
34513
|
+
if (determineFunc) {
|
|
34514
|
+
this.determineFunc = determineFunc;
|
|
34515
|
+
}
|
|
34516
|
+
|
|
34517
|
+
if (closeFunc) {
|
|
34518
|
+
this.closeFunc = closeFunc;
|
|
34519
|
+
}
|
|
34520
|
+
} else if (this.form.submitShow) {
|
|
34521
|
+
if (determineFunc) {
|
|
34522
|
+
this.determineFunc = determineFunc;
|
|
34523
|
+
}
|
|
34524
|
+
} else if (this.form.closeShow) {
|
|
34525
|
+
if (determineFunc) {
|
|
34526
|
+
this.closeFunc = determineFunc;
|
|
34527
|
+
}
|
|
34528
|
+
}
|
|
34529
|
+
|
|
34530
|
+
this.dialogVisible = true;
|
|
34531
|
+
},
|
|
34532
|
+
submitFn: function submitFn() {
|
|
34533
|
+
var _this = this;
|
|
34534
|
+
|
|
34535
|
+
this.dialogVisible = false;
|
|
34536
|
+
this.$nextTick(function () {
|
|
34537
|
+
if (_this.determineFunc) {
|
|
34538
|
+
_this.determineFunc();
|
|
34539
|
+
}
|
|
34540
|
+
|
|
34541
|
+
_this.$emit('on-submit');
|
|
34542
|
+
});
|
|
34543
|
+
},
|
|
34544
|
+
onClose: function onClose() {
|
|
34545
|
+
var _this2 = this;
|
|
34546
|
+
|
|
34547
|
+
this.dialogVisible = false;
|
|
34548
|
+
this.$nextTick(function () {
|
|
34549
|
+
if (_this2.closeFunc) {
|
|
34550
|
+
_this2.closeFunc();
|
|
34551
|
+
}
|
|
34552
|
+
|
|
34553
|
+
_this2.$emit('on-close');
|
|
34554
|
+
});
|
|
34555
|
+
}
|
|
34556
|
+
}
|
|
34557
|
+
});
|
|
34558
|
+
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue?vue&type=script&lang=js&
|
|
34559
|
+
/* harmony default export */ var common_deleteConfirmationBoxvue_type_script_lang_js_ = (deleteConfirmationBoxvue_type_script_lang_js_);
|
|
34560
|
+
// CONCATENATED MODULE: ./src/components/common/deleteConfirmationBox.vue
|
|
34561
|
+
|
|
34562
|
+
|
|
34563
|
+
|
|
34564
|
+
|
|
34565
|
+
|
|
34566
|
+
/* normalize component */
|
|
34567
|
+
|
|
34568
|
+
var deleteConfirmationBox_component = normalizeComponent(
|
|
34569
|
+
common_deleteConfirmationBoxvue_type_script_lang_js_,
|
|
34570
|
+
deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_render,
|
|
34571
|
+
deleteConfirmationBoxvue_type_template_id_7a6e4a16_scoped_true_staticRenderFns,
|
|
34572
|
+
false,
|
|
34573
|
+
null,
|
|
34574
|
+
"7a6e4a16",
|
|
34475
34575
|
null
|
|
34476
34576
|
|
|
34477
34577
|
)
|
|
34478
34578
|
|
|
34479
|
-
/* harmony default export */ var
|
|
34579
|
+
/* harmony default export */ var deleteConfirmationBox = (deleteConfirmationBox_component.exports);
|
|
34480
34580
|
// CONCATENATED MODULE: ./src/index.js
|
|
34481
34581
|
|
|
34482
34582
|
|
|
@@ -34487,6 +34587,8 @@ var videoSurveillance_component = normalizeComponent(
|
|
|
34487
34587
|
|
|
34488
34588
|
|
|
34489
34589
|
|
|
34590
|
+
|
|
34591
|
+
|
|
34490
34592
|
var components = [videoSurveillance];
|
|
34491
34593
|
var comObj = {};
|
|
34492
34594
|
|
|
@@ -34498,8 +34600,11 @@ comObj.component = function (Vue) {
|
|
|
34498
34600
|
};
|
|
34499
34601
|
|
|
34500
34602
|
comObj.install = function (Vue, store) {
|
|
34603
|
+
if (store) {
|
|
34604
|
+
store.registerModule("sdkStore", modules_sdk["default"]);
|
|
34605
|
+
}
|
|
34606
|
+
|
|
34501
34607
|
Vue.use(utils_hyRtcSdk);
|
|
34502
|
-
store.registerModule("sdkStore", modules_sdk["default"]);
|
|
34503
34608
|
|
|
34504
34609
|
var req = __webpack_require__("ce50");
|
|
34505
34610
|
|
|
@@ -34508,6 +34613,11 @@ comObj.install = function (Vue, store) {
|
|
|
34508
34613
|
};
|
|
34509
34614
|
|
|
34510
34615
|
requireAll(req);
|
|
34616
|
+
Vue.component('svgIcon', svgIcon);
|
|
34617
|
+
Vue.component('deleteConfirmationBox', deleteConfirmationBox);
|
|
34618
|
+
components.map(function (component) {
|
|
34619
|
+
comObj[component.name] = component;
|
|
34620
|
+
});
|
|
34511
34621
|
};
|
|
34512
34622
|
/* 支持使用标签的方式引入 */
|
|
34513
34623
|
|
|
@@ -34759,6 +34869,17 @@ var symbol = new _node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMPO
|
|
|
34759
34869
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default.a.add(symbol);
|
|
34760
34870
|
/* harmony default export */ __webpack_exports__["default"] = (symbol);
|
|
34761
34871
|
|
|
34872
|
+
/***/ }),
|
|
34873
|
+
|
|
34874
|
+
/***/ "fe77":
|
|
34875
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
34876
|
+
|
|
34877
|
+
"use strict";
|
|
34878
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_7533695b_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("27ec");
|
|
34879
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_7533695b_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_10_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_10_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_10_oneOf_1_2_node_modules_less_loader_dist_cjs_js_ref_10_oneOf_1_3_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_videoSurveillance_vue_vue_type_style_index_0_id_7533695b_scoped_true_lang_less_rel_stylesheet_2Fless___WEBPACK_IMPORTED_MODULE_0__);
|
|
34880
|
+
/* unused harmony reexport * */
|
|
34881
|
+
|
|
34882
|
+
|
|
34762
34883
|
/***/ }),
|
|
34763
34884
|
|
|
34764
34885
|
/***/ "ffd4":
|