-
-
+
+ 经研院食堂视频监控
+
+
+ >
+
+
+
+

+
{{ node.label }}
+
+

+
+
+
-
+
+
+
+ 单宫格
+
+
+
+ 四宫格
+
+
+
+ 九宫格
+
+
+
+ 十六宫格
+
+
+
-
+
@@ -73,13 +104,13 @@ methods:{
szUsername: "admin", // device username
szPassword: "JYY202509", // device password
iStreamType: 2, // stream 1��main stream 2��sub-stream 3��third stream 4��transcode stream
- iChannelID: 1, // channel no
+ iChannelID: 2, // channel no
bZeroChannel: false // zero channel
}
var szDeviceIdentify = oLiveView.szIP + "_" + oLiveView.szPort;
var that = this;
var oWebVideoCtrl1 = this.$refs.videoIframe1.contentWindow.WebVideoCtrl;
- oWebVideoCtrl1.I_InitPlugin(1300,700, {
+ oWebVideoCtrl1.I_InitPlugin(1300,645, {
bWndFull: true,//�Ƿ�֧�ֵ�����˫��ȫ����Ĭ��֧�� true:֧�� false:��֧��
iWndowType: 2,
cbInitPluginComplete: function () {
@@ -91,7 +122,7 @@ methods:{
iRtspPort: oLiveView.szPort,
iWndIndex:0,
iStreamType: oLiveView.iStreamType,
- iChannelID: 1,
+ iChannelID: 5,
bZeroChannel: oLiveView.bZeroChannel
});
oWebVideoCtrl1.I_StartRealPlay(szDeviceIdentify, {
@@ -105,14 +136,14 @@ methods:{
iRtspPort: oLiveView.szPort,
iWndIndex:2,
iStreamType: oLiveView.iStreamType,
- iChannelID: 1,
+ iChannelID: 3,
bZeroChannel: oLiveView.bZeroChannel
});
oWebVideoCtrl1.I_StartRealPlay(szDeviceIdentify, {
iRtspPort: oLiveView.szPort,
iWndIndex:3,
iStreamType: oLiveView.iStreamType,
- iChannelID: 2,
+ iChannelID: 4,
bZeroChannel: oLiveView.bZeroChannel
});
}
@@ -141,8 +172,8 @@ methods:{
szPort: "80", // protocol port
szUsername: "admin", // device username
szPassword: "JYY202509", // device password
- iStreamType: 1, // stream 1��main stream 2��sub-stream 3��third stream 4��transcode stream
- iChannelID: 1, // channel no
+ iStreamType: 2, // stream 1��main stream 2��sub-stream 3��third stream 4��transcode stream
+ iChannelID: 2, // channel no
bZeroChannel: false // zero channel
}
var szDeviceIdentify = oLiveView.szIP + "_" + oLiveView.szPort;
@@ -175,7 +206,7 @@ methods:{
szUsername:"admin", // device username
szPassword:"JYY202509", // device password
iStreamType: 2, // stream 1��main stream 2��sub-stream 3��third stream 4��transcode stream
- iChannelID: 1, // channel no
+ iChannelID: 2, // channel no
bZeroChannel: false // zero channel
}
var szDeviceIdentify = oLiveView.szIP;
@@ -191,6 +222,14 @@ methods:{
});
}, 1000);
},
+
+ async changeWindow(type){
+ var oWebVideoCtrl1 = this.$refs.videoIframe1.contentWindow.WebVideoCtrl;
+ setTimeout(function () {
+ oWebVideoCtrl1.I_ChangeWndNum(type);
+ }, 1000);
+ }
+ // I_ChangeWndNum(iWndType)
}
}
@@ -205,7 +244,7 @@ methods:{
color: #000;
margin-top: 10px;
span{
- margin-left: 40px;
+ margin-left: 10px;
font-size: 20px;
font-weight: bold;
}
diff --git a/src/views/kitchen/foodSafety/sampleManage/index.vue b/src/views/kitchen/foodSafety/sampleManage/index.vue
index f5844e31..f60b3e90 100644
--- a/src/views/kitchen/foodSafety/sampleManage/index.vue
+++ b/src/views/kitchen/foodSafety/sampleManage/index.vue
@@ -89,8 +89,16 @@
无
-
-
+
+
+ {{ scope.row.enterCabinetTime||'/' }}
+
+
+
+
+ {{ scope.row.leaveCabinetTime||'/' }}
+
+
diff --git a/src/views/kitchen/foodSafety/sampleRecord/index.vue b/src/views/kitchen/foodSafety/sampleRecord/index.vue
index 2931871e..8743b24c 100644
--- a/src/views/kitchen/foodSafety/sampleRecord/index.vue
+++ b/src/views/kitchen/foodSafety/sampleRecord/index.vue
@@ -9,8 +9,8 @@
-
-
+
+
@@ -32,11 +32,27 @@
-
-
+
+
+ {{ scope.row.openCabinetTemp||'/' }}
+
+
+
+
+ {{ scope.row.closeCabinetTemp||'/' }}
+
+
-
-
+
+
+ {{ scope.row.openCabinetTime||'/' }}
+
+
+
+
+ {{ scope.row.closeCabinetTime||'/' }}
+
+
-
+
+ {{ hidePhone(scope.row.mobile) }}
+
+
@@ -241,12 +244,17 @@ export default {
"pageNum":this.queryParams.pageNum,
"pageSize":this.queryParams.pageSize,
"articleTitle":this.queryParams.articleTitle,
- "deptIds":this.queryParams.deptIdList.join(",")||"",
- "startDate":this.formatDate(this.dateRange[0]),
+ "deptIds":this.queryParams.deptIdList.join(",")||"",
"areaId":this.queryParams.areaId,
"canteenId":this.queryParams.canteenId,
- "subPlaceId":this.queryParams.subPlaceId,
- "endDate":this.formatDate(this.dateRange[1])
+ "subPlaceId":this.queryParams.subPlaceId,
+ }
+ if(this.dateRange&&this.dateRange.length>0){
+ param.startDate=this.formatDate(this.dateRange[0])
+ param.endDate=this.formatDate(this.dateRange[1])
+ }else{
+ param.startDate=undefined;
+ param.endDate=undefined;
}
console.log("param",param);
getIntoRecordsListApi(param).then(response => {
diff --git a/src/views/kitchen/staffManage/morningCheck/index.vue b/src/views/kitchen/staffManage/morningCheck/index.vue
index e75bc561..17d71b2b 100644
--- a/src/views/kitchen/staffManage/morningCheck/index.vue
+++ b/src/views/kitchen/staffManage/morningCheck/index.vue
@@ -31,14 +31,18 @@
-
+
+
+ {{ hidePhone(scope.row.mobile) }}
+
+
-
+
{{ scope.row.temperatureValue }} ℃
diff --git a/src/views/kitchen/staffManage/staff/index.vue b/src/views/kitchen/staffManage/staff/index.vue
index c1953fe0..95779c8a 100644
--- a/src/views/kitchen/staffManage/staff/index.vue
+++ b/src/views/kitchen/staffManage/staff/index.vue
@@ -56,7 +56,11 @@
-
+
+
+ {{ hidePhone(scope.row.mobile) }}
+
+
男
diff --git a/src/views/login1.vue b/src/views/login1.vue
index 0a0cc0aa..13d2066a 100644
--- a/src/views/login1.vue
+++ b/src/views/login1.vue
@@ -97,7 +97,7 @@
-
+
-
+
+
+ {{ hidePhone(scope.row.phonenumber) }}
+
+
diff --git a/src/views/system/role/selectUser.vue b/src/views/system/role/selectUser.vue
index 8d9baafd..9d72fd42 100644
--- a/src/views/system/role/selectUser.vue
+++ b/src/views/system/role/selectUser.vue
@@ -29,7 +29,11 @@
-
+
+
+ {{ hidePhone(scope.row.phonenumber) }}
+
+
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 7e1e7198..574bf5a6 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -55,7 +55,16 @@
@keyup.enter.native="handleQuery"
/>
-
+
+
+
+
- {{ hidePhone(scope.row.phonenumber) }}
+ {{ hidePhone(scope.row.userName) }}
+ {{ scope.row.userName }}