From 40ecf804bd4584d5d742918a7ea5c96e80f95149 Mon Sep 17 00:00:00 2001
From: hongawen <83944980@qq.com>
Date: Fri, 24 May 2024 09:49:40 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pqs/supervise/electricalEnergy/index.vue | 2 +-
src/views/pqs/supervise/interfere/index.vue | 7 +-
.../supervise/technology/components/alarm.vue | 14 +-
.../technology/components/earlyWarn.vue | 136 ++++++++-------
.../supervise/technology/feedbackPopup.vue | 3 +-
src/views/system/bpm/task/done/index.vue | 163 +++++++++---------
src/views/system/bpm/task/index.vue | 36 ++++
src/views/system/bpm/task/todo/index.vue | 3 +-
8 files changed, 213 insertions(+), 151 deletions(-)
create mode 100644 src/views/system/bpm/task/index.vue
diff --git a/src/views/pqs/supervise/electricalEnergy/index.vue b/src/views/pqs/supervise/electricalEnergy/index.vue
index 03a549e3..9de50580 100644
--- a/src/views/pqs/supervise/electricalEnergy/index.vue
+++ b/src/views/pqs/supervise/electricalEnergy/index.vue
@@ -7,7 +7,7 @@
-
+
-
-
diff --git a/src/views/pqs/supervise/technology/components/alarm.vue b/src/views/pqs/supervise/technology/components/alarm.vue
index 806a6d57..d244f603 100644
--- a/src/views/pqs/supervise/technology/components/alarm.vue
+++ b/src/views/pqs/supervise/technology/components/alarm.vue
@@ -81,11 +81,22 @@ const tableStore = new TableStore({
{ field: 'createTime', title: '创建时间', minWidth: '150' },
{
title: '操作',
- width: '180',
+ minWidth: '220',
align: 'center',
render: 'buttons',
fixed: 'right',
buttons: [
+ {
+ name: 'productSetting',
+ title: '发送督办单',
+ type: 'primary',
+ icon: 'el-icon-EditPen',
+ render: 'basicButton',
+ click: row => {
+ // handleAudit(row.processInstanceId)
+ ElMessage.warning("待打通生成管理系统接口!")
+ }
+ },
{
name: 'productSetting',
title: '问题反馈',
@@ -99,6 +110,7 @@ const tableStore = new TableStore({
feedbackPopup.value.open('填报反馈单',row.id,row.status)
}
},
+
{
name: 'productSetting',
title: '流程详情',
diff --git a/src/views/pqs/supervise/technology/components/earlyWarn.vue b/src/views/pqs/supervise/technology/components/earlyWarn.vue
index d23d851a..65bdd5d5 100644
--- a/src/views/pqs/supervise/technology/components/earlyWarn.vue
+++ b/src/views/pqs/supervise/technology/components/earlyWarn.vue
@@ -1,15 +1,15 @@
-
-
-
-
-
+
+
+
+
+
-
+
-
-
+
diff --git a/src/views/pqs/supervise/technology/feedbackPopup.vue b/src/views/pqs/supervise/technology/feedbackPopup.vue
index 2c6a8c6f..6637011b 100644
--- a/src/views/pqs/supervise/technology/feedbackPopup.vue
+++ b/src/views/pqs/supervise/technology/feedbackPopup.vue
@@ -15,10 +15,11 @@
v-model='formData.takeStep'
autocomplete='off'
placeholder='请输入采取的措施'
+ type='textarea'
/>
-
+
-
diff --git a/src/views/system/bpm/task/index.vue b/src/views/system/bpm/task/index.vue
new file mode 100644
index 00000000..b8972160
--- /dev/null
+++ b/src/views/system/bpm/task/index.vue
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/bpm/task/todo/index.vue b/src/views/system/bpm/task/todo/index.vue
index 5ec14d3e..03fd4a33 100644
--- a/src/views/system/bpm/task/todo/index.vue
+++ b/src/views/system/bpm/task/todo/index.vue
@@ -36,9 +36,10 @@ const { push } = useRouter()
const tableStore = new TableStore({
url: '/bpm-boot/bpm/task/todoList',
method: 'POST',
+ publicHeight: 65,
column: [
{ title: '序号', type: 'seq', width: 80 },
- { title: '流程名称', field: 'processInstance.name', minWidth: 130 },
+ { title: '任务名称', field: 'processInstance.name', minWidth: 130 },
{ title: '发起人', field: 'processInstance.startUser.name', minWidth: 130 },
{ title: '发起部门', field: 'processInstance.startUser.deptName', minWidth: 130 },
{ title: '发起时间', field: 'createTime', minWidth: 170 },