inl-ui 0.1.137 → 0.1.138
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/dist/components/index.cjs +6 -1
- package/dist/components/index.js +6 -1
- package/dist/index.cjs +7 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +7 -2
- package/dist/video/index.cjs +6 -1
- package/dist/video/index.js +6 -1
- package/package.json +1 -1
|
@@ -9910,6 +9910,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9910
9910
|
vue.watch(() => _prop.camera, val => {
|
|
9911
9911
|
if (val && Object.keys(val).length != 0) {
|
|
9912
9912
|
setNewCamera(val);
|
|
9913
|
+
showInfo.value = true;
|
|
9914
|
+
} else {
|
|
9915
|
+
camera.value = void 0;
|
|
9916
|
+
showInfo.value = false;
|
|
9913
9917
|
}
|
|
9914
9918
|
}, {
|
|
9915
9919
|
deep: true,
|
|
@@ -9999,7 +10003,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9999
10003
|
}, [vue.createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), vue.createVNode("div", {
|
|
10000
10004
|
"class": "value"
|
|
10001
10005
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
10002
|
-
})]) : "", vue.createVNode("div", {
|
|
10006
|
+
})]) : "", camera.value && vue.createVNode("div", {
|
|
10003
10007
|
"class": "footer-min",
|
|
10004
10008
|
"id": "footer_" + uuid.value
|
|
10005
10009
|
}, [vue.createVNode("div", {
|
|
@@ -10191,6 +10195,7 @@ const PollingPlay = vue.defineComponent({
|
|
|
10191
10195
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
10192
10196
|
data.pointList.push(video?.cameraUuid || "");
|
|
10193
10197
|
}
|
|
10198
|
+
console.log(data.pointList, "data.pointList");
|
|
10194
10199
|
};
|
|
10195
10200
|
const findShouldPlay = () => {
|
|
10196
10201
|
let resTeam;
|
package/dist/components/index.js
CHANGED
|
@@ -9882,6 +9882,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
9882
9882
|
watch(() => _prop.camera, val => {
|
|
9883
9883
|
if (val && Object.keys(val).length != 0) {
|
|
9884
9884
|
setNewCamera(val);
|
|
9885
|
+
showInfo.value = true;
|
|
9886
|
+
} else {
|
|
9887
|
+
camera.value = void 0;
|
|
9888
|
+
showInfo.value = false;
|
|
9885
9889
|
}
|
|
9886
9890
|
}, {
|
|
9887
9891
|
deep: true,
|
|
@@ -9971,7 +9975,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
9971
9975
|
}, [createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), createVNode("div", {
|
|
9972
9976
|
"class": "value"
|
|
9973
9977
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
9974
|
-
})]) : "", createVNode("div", {
|
|
9978
|
+
})]) : "", camera.value && createVNode("div", {
|
|
9975
9979
|
"class": "footer-min",
|
|
9976
9980
|
"id": "footer_" + uuid.value
|
|
9977
9981
|
}, [createVNode("div", {
|
|
@@ -10163,6 +10167,7 @@ const PollingPlay = defineComponent({
|
|
|
10163
10167
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
10164
10168
|
data.pointList.push(video?.cameraUuid || "");
|
|
10165
10169
|
}
|
|
10170
|
+
console.log(data.pointList, "data.pointList");
|
|
10166
10171
|
};
|
|
10167
10172
|
const findShouldPlay = () => {
|
|
10168
10173
|
let resTeam;
|
package/dist/index.cjs
CHANGED
|
@@ -43,7 +43,7 @@ var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
|
43
43
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
44
44
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
45
45
|
|
|
46
|
-
var version = "0.1.
|
|
46
|
+
var version = "0.1.137";
|
|
47
47
|
|
|
48
48
|
const setTheme = theme => {
|
|
49
49
|
if (theme === "dark") {
|
|
@@ -10896,6 +10896,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10896
10896
|
vue.watch(() => _prop.camera, val => {
|
|
10897
10897
|
if (val && Object.keys(val).length != 0) {
|
|
10898
10898
|
setNewCamera(val);
|
|
10899
|
+
showInfo.value = true;
|
|
10900
|
+
} else {
|
|
10901
|
+
camera.value = void 0;
|
|
10902
|
+
showInfo.value = false;
|
|
10899
10903
|
}
|
|
10900
10904
|
}, {
|
|
10901
10905
|
deep: true,
|
|
@@ -10985,7 +10989,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10985
10989
|
}, [vue.createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), vue.createVNode("div", {
|
|
10986
10990
|
"class": "value"
|
|
10987
10991
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
10988
|
-
})]) : "", vue.createVNode("div", {
|
|
10992
|
+
})]) : "", camera.value && vue.createVNode("div", {
|
|
10989
10993
|
"class": "footer-min",
|
|
10990
10994
|
"id": "footer_" + uuid.value
|
|
10991
10995
|
}, [vue.createVNode("div", {
|
|
@@ -11177,6 +11181,7 @@ const PollingPlay = vue.defineComponent({
|
|
|
11177
11181
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
11178
11182
|
data.pointList.push(video?.cameraUuid || "");
|
|
11179
11183
|
}
|
|
11184
|
+
console.log(data.pointList, "data.pointList");
|
|
11180
11185
|
};
|
|
11181
11186
|
const findShouldPlay = () => {
|
|
11182
11187
|
let resTeam;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { Key } from 'ant-design-vue/lib/table/interface';
|
|
|
11
11
|
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
12
12
|
import * as _ant_design_icons_vue_lib_components_IconFont from '@ant-design/icons-vue/lib/components/IconFont';
|
|
13
13
|
|
|
14
|
-
var version = "0.1.
|
|
14
|
+
var version = "0.1.137";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
|
13
13
|
import { marked } from 'marked';
|
|
14
14
|
import '@sszj-temp/mobile/style.css';
|
|
15
15
|
|
|
16
|
-
var version = "0.1.
|
|
16
|
+
var version = "0.1.137";
|
|
17
17
|
|
|
18
18
|
const setTheme = theme => {
|
|
19
19
|
if (theme === "dark") {
|
|
@@ -10866,6 +10866,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
10866
10866
|
watch(() => _prop.camera, val => {
|
|
10867
10867
|
if (val && Object.keys(val).length != 0) {
|
|
10868
10868
|
setNewCamera(val);
|
|
10869
|
+
showInfo.value = true;
|
|
10870
|
+
} else {
|
|
10871
|
+
camera.value = void 0;
|
|
10872
|
+
showInfo.value = false;
|
|
10869
10873
|
}
|
|
10870
10874
|
}, {
|
|
10871
10875
|
deep: true,
|
|
@@ -10955,7 +10959,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
10955
10959
|
}, [createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), createVNode("div", {
|
|
10956
10960
|
"class": "value"
|
|
10957
10961
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
10958
|
-
})]) : "", createVNode("div", {
|
|
10962
|
+
})]) : "", camera.value && createVNode("div", {
|
|
10959
10963
|
"class": "footer-min",
|
|
10960
10964
|
"id": "footer_" + uuid.value
|
|
10961
10965
|
}, [createVNode("div", {
|
|
@@ -11147,6 +11151,7 @@ const PollingPlay = defineComponent({
|
|
|
11147
11151
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
11148
11152
|
data.pointList.push(video?.cameraUuid || "");
|
|
11149
11153
|
}
|
|
11154
|
+
console.log(data.pointList, "data.pointList");
|
|
11150
11155
|
};
|
|
11151
11156
|
const findShouldPlay = () => {
|
|
11152
11157
|
let resTeam;
|
package/dist/video/index.cjs
CHANGED
|
@@ -6942,6 +6942,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6942
6942
|
vue.watch(() => _prop.camera, val => {
|
|
6943
6943
|
if (val && Object.keys(val).length != 0) {
|
|
6944
6944
|
setNewCamera(val);
|
|
6945
|
+
showInfo.value = true;
|
|
6946
|
+
} else {
|
|
6947
|
+
camera.value = void 0;
|
|
6948
|
+
showInfo.value = false;
|
|
6945
6949
|
}
|
|
6946
6950
|
}, {
|
|
6947
6951
|
deep: true,
|
|
@@ -7031,7 +7035,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
7031
7035
|
}, [vue.createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), vue.createVNode("div", {
|
|
7032
7036
|
"class": "value"
|
|
7033
7037
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
7034
|
-
})]) : "", vue.createVNode("div", {
|
|
7038
|
+
})]) : "", camera.value && vue.createVNode("div", {
|
|
7035
7039
|
"class": "footer-min",
|
|
7036
7040
|
"id": "footer_" + uuid.value
|
|
7037
7041
|
}, [vue.createVNode("div", {
|
|
@@ -7223,6 +7227,7 @@ const PollingPlay = vue.defineComponent({
|
|
|
7223
7227
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
7224
7228
|
data.pointList.push(video?.cameraUuid || "");
|
|
7225
7229
|
}
|
|
7230
|
+
console.log(data.pointList, "data.pointList");
|
|
7226
7231
|
};
|
|
7227
7232
|
const findShouldPlay = () => {
|
|
7228
7233
|
let resTeam;
|
package/dist/video/index.js
CHANGED
|
@@ -6916,6 +6916,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
6916
6916
|
watch(() => _prop.camera, val => {
|
|
6917
6917
|
if (val && Object.keys(val).length != 0) {
|
|
6918
6918
|
setNewCamera(val);
|
|
6919
|
+
showInfo.value = true;
|
|
6920
|
+
} else {
|
|
6921
|
+
camera.value = void 0;
|
|
6922
|
+
showInfo.value = false;
|
|
6919
6923
|
}
|
|
6920
6924
|
}, {
|
|
6921
6925
|
deep: true,
|
|
@@ -7005,7 +7009,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
7005
7009
|
}, [createVNode("div", null, [info.name ? `${info.name}\uFF1A` : ""]), createVNode("div", {
|
|
7006
7010
|
"class": "value"
|
|
7007
7011
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
7008
|
-
})]) : "", createVNode("div", {
|
|
7012
|
+
})]) : "", camera.value && createVNode("div", {
|
|
7009
7013
|
"class": "footer-min",
|
|
7010
7014
|
"id": "footer_" + uuid.value
|
|
7011
7015
|
}, [createVNode("div", {
|
|
@@ -7197,6 +7201,7 @@ const PollingPlay = defineComponent({
|
|
|
7197
7201
|
const video = team.monitorPointPoList.find(ele => ele.sort === i + 1);
|
|
7198
7202
|
data.pointList.push(video?.cameraUuid || "");
|
|
7199
7203
|
}
|
|
7204
|
+
console.log(data.pointList, "data.pointList");
|
|
7200
7205
|
};
|
|
7201
7206
|
const findShouldPlay = () => {
|
|
7202
7207
|
let resTeam;
|