From 4fdbb3d19e12e20a7b52437b2629f9b2589e9107 Mon Sep 17 00:00:00 2001 From: X_Rian <904416525@qq.com> Date: Tue, 23 Jul 2024 14:21:36 +0800 Subject: [PATCH] =?UTF-8?q?flx=EF=BC=9A=E7=B3=BB=E7=BB=9F=E6=9D=83?= =?UTF-8?q?=E9=99=90=E7=AE=A1=E7=90=86=E6=96=B0=E5=A2=9E=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/api/company/project.js | 5 +- src/views/companyAdmin/abnormalLog.vue | 370 ++++++++++++++++++ src/views/companyAdmin/operationLog.vue | 3 +- .../componentsModule/dataListData.vue | 7 +- 4 files changed, 382 insertions(+), 3 deletions(-) create mode 100644 src/views/companyAdmin/abnormalLog.vue diff --git a/src/assets/js/api/company/project.js b/src/assets/js/api/company/project.js index b346bb48..74720850 100644 --- a/src/assets/js/api/company/project.js +++ b/src/assets/js/api/company/project.js @@ -58,4 +58,7 @@ export const getProjectEnterpriseApi = data => post('xmgl/projectEnterprise/sele export const getPlayUrlFromHikvisionApi = data => get('/xmgl/videoItem/getPlayUrlFromHikvision', data); //项目概况字典阶段数据查询 -export const getDConstructionStageListApi = data => post('/xmgl/project/countConstructionStage', data); \ No newline at end of file +export const getDConstructionStageListApi = data => post('/xmgl/project/countConstructionStage', data); + +// 工作流异常日志 +export const getFlowExceptionLogPageApi = data => get('/xmgl/flowExceptionLog/page', data); \ No newline at end of file diff --git a/src/views/companyAdmin/abnormalLog.vue b/src/views/companyAdmin/abnormalLog.vue new file mode 100644 index 00000000..2a69d8f0 --- /dev/null +++ b/src/views/companyAdmin/abnormalLog.vue @@ -0,0 +1,370 @@ + + + diff --git a/src/views/companyAdmin/operationLog.vue b/src/views/companyAdmin/operationLog.vue index 28bdd85c..0f5ae9a7 100644 --- a/src/views/companyAdmin/operationLog.vue +++ b/src/views/companyAdmin/operationLog.vue @@ -212,7 +212,8 @@ export default { }, resetForm() { this.$refs["searchForm"].resetFields(); - this.daterange = []; + // this.daterange = []; + this.selectNowDate(); this.getListData(); }, //获取列表数据 diff --git a/src/views/userCenter/userCenter/componentsModule/dataListData.vue b/src/views/userCenter/userCenter/componentsModule/dataListData.vue index f37f8890..5f8cf4a6 100644 --- a/src/views/userCenter/userCenter/componentsModule/dataListData.vue +++ b/src/views/userCenter/userCenter/componentsModule/dataListData.vue @@ -265,7 +265,12 @@ export default { this.getList(); }, refresh() { - this.searchForm = {}; + this.searchForm = { + userName: "", + operModul: "", + timeRange: [], + }; + this.selectNowDate(); this.pageInfo.pageNo = 1; //页数 this.pageInfo.pageSize = 10; //条数 this.getList();