diff --git a/src/assets/js/api/equipmentCenter/cameraList.js b/src/assets/js/api/equipmentCenter/cameraList.js
index 34460fd1..ddc683c7 100644
--- a/src/assets/js/api/equipmentCenter/cameraList.js
+++ b/src/assets/js/api/equipmentCenter/cameraList.js
@@ -33,6 +33,7 @@ export const deleteVideoGroupApi = data => post('xmgl/videoGroup/delete', data);
export const editVideoGroupApi = data => post('xmgl/videoGroup/edit', data);
export const getVideoGroupApi = data => post('xmgl/videoGroup/list', data);
export const getVideoTreeGroupApi = data => get('xmgl/videoGroup/tree/list', data);
+export const getVideoTreeGroupVideoApi = data => post('xmgl/videoItem/selectProjectVideoTreeList', data);
// 上传第三方平台
export const sendVideoInfoApi = data => post('xmgl/videoItem/sendVideoInfo', data);
diff --git a/src/views/equipmentCenter/videoManage/videoConfig.vue b/src/views/equipmentCenter/videoManage/videoConfig.vue
index 0258484d..a9cd1bd8 100644
--- a/src/views/equipmentCenter/videoManage/videoConfig.vue
+++ b/src/views/equipmentCenter/videoManage/videoConfig.vue
@@ -1165,6 +1165,7 @@ import {
import { getProjectChilderSystemUserListApi } from "@/assets/js/api/configManage";
import cameraList from "./cameraList";
import cameraListLc from "./cameraList_lc";
+
export default {
data() {
return {
@@ -1319,9 +1320,15 @@ export default {
groupId: [
{
required: true,
- message: "请选择",
+ validator: (rule, value, callback) => {
+ if (!this.currentVideoTypeDetail.groupId) {
+ callback(new Error("请输入"));
+ } else {
+ callback();
+ }
+ },
trigger: "change",
- }, // 必
+ },
],
videoName: [
{
@@ -1466,15 +1473,12 @@ export default {
},
components: { cameraList, cameraListLc, gdMap },
methods: {
+ validateGroupId() {},
// 树形控件点击
treeFormClick(data) {
- console.log(data, 888999);
this.selectFormVal = data.groupName;
this.selectFormTreeData = data;
this.currentVideoTypeDetail.groupId = data.id;
- console.log(this.currentVideoTypeDetail.groupId,777888)
- console.log(this.$refs.addVideoDialog,777888)
- this.$refs.addVideoDialog.validateField("groupId");
},
// 树形控件点击
treeClick(data) {
@@ -1484,7 +1488,7 @@ export default {
},
// 选择父级组件框值修改
selectFormChange(e) {
- console.log(e,666777)
+ console.log(e, 666777);
if (!e) {
this.selectFormVal = "";
this.selectFormTreeData = {};
@@ -1572,6 +1576,7 @@ export default {
this.Popup.newVideo = true;
this.getAll();
this.currentVideoTypeDetail.coverUr = "";
+ this.currentVideoTypeDetail.groupId = "";
this.isRouterAlive = false;
this.$nextTick(() => {
this.$refs.addVideoDialog.clearValidate();
diff --git a/src/views/projectFront/materialManage/materialEntryManage.vue b/src/views/projectFront/materialManage/materialEntryManage.vue
index 16b9700a..58d9d5ce 100644
--- a/src/views/projectFront/materialManage/materialEntryManage.vue
+++ b/src/views/projectFront/materialManage/materialEntryManage.vue
@@ -83,8 +83,8 @@
label="入场有效时间"
>
- 开始:{{scope.row.entryTime}}
- 结束:{{scope.row.entryTime}}
+ 开始:{{scope.row.entryBeginTime}}
+ 结束:{{scope.row.entryEndTime}}
@@ -299,8 +299,8 @@ export default {
type: 1
};
if(this.queryInfo.timeRange && this.queryInfo.timeRange.length > 0){
- data.entryTime_begin = this.queryInfo.timeRange[0];
- data.entryTime_end = this.queryInfo.timeRange[1];
+ data.entryBeginTime_begin = this.queryInfo.timeRange[0];
+ data.entryEndTime_end = this.queryInfo.timeRange[1];
}
materialEntryRecordPageApi(data).then((res) => {
console.log("返回的值", res);
diff --git a/src/views/projectFront/materialManage/materialExitManage.vue b/src/views/projectFront/materialManage/materialExitManage.vue
index 77152efa..6d70cd70 100644
--- a/src/views/projectFront/materialManage/materialExitManage.vue
+++ b/src/views/projectFront/materialManage/materialExitManage.vue
@@ -83,8 +83,8 @@
label="出场有效时间"
>
- 开始:{{scope.row.entryTime}}
- 结束:{{scope.row.entryTime}}
+ 开始:{{scope.row.entryBeginTime}}
+ 结束:{{scope.row.entryEndTime}}
@@ -295,8 +295,8 @@ export default {
type: 2
};
if(this.queryInfo.timeRange && this.queryInfo.timeRange.length > 0){
- data.entryTime_begin = this.queryInfo.timeRange[0];
- data.entryTime_end = this.queryInfo.timeRange[1];
+ data.entryBeginTime_begin = this.queryInfo.timeRange[0];
+ data.entryEndTime_end = this.queryInfo.timeRange[1];
}
materialEntryRecordPageApi(data).then((res) => {
console.log("返回的值", res);
diff --git a/src/views/projectFront/projectSummary/manageTeam.vue b/src/views/projectFront/projectSummary/manageTeam.vue
index 5ca2200e..d0e86657 100644
--- a/src/views/projectFront/projectSummary/manageTeam.vue
+++ b/src/views/projectFront/projectSummary/manageTeam.vue
@@ -183,7 +183,6 @@ import {
checkPhone,
IdentityCodeValid,
} from '@/assets/js/util.js'
-
export default {
mounted() {
this.getList()
diff --git a/src/views/projectFront/videoManage/overview.vue b/src/views/projectFront/videoManage/overview.vue
index cef392e2..b82e6fae 100644
--- a/src/views/projectFront/videoManage/overview.vue
+++ b/src/views/projectFront/videoManage/overview.vue
@@ -30,7 +30,25 @@
-
+
+
+
+
+ {{ data.name }}
+
+
+
@@ -74,7 +92,8 @@