From 5c35d26c03b49303600b861c39c435c8e9461e4d Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: Fri, 01 Jul 2022 18:12:41 +0800
Subject: [PATCH] 添加页面
---
src/views/specialWorkSystem/approvalProcess/approveProcessSetting/index.vue | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/src/views/specialWorkSystem/approvalProcess/approveProcessSetting/index.vue b/src/views/specialWorkSystem/approvalProcess/approveProcessSetting/index.vue
index 703ba60..5d7eae9 100644
--- a/src/views/specialWorkSystem/approvalProcess/approveProcessSetting/index.vue
+++ b/src/views/specialWorkSystem/approvalProcess/approveProcessSetting/index.vue
@@ -19,6 +19,10 @@
</el-card>
</div>
</div>
+ <el-row>
+ <el-button type="primary" @click="confirmEdit" size="default">确认</el-button>
+ <el-button @click="cancelEdit" size="default">取消</el-button>
+ </el-row>
<el-drawer v-model="showAdd" direction="rtl">
<template #title>
<h4>新增审批流</h4>
@@ -44,8 +48,8 @@
</template>
<template #footer>
<div style="flex: auto">
- <el-button @click="cancelClick">取消</el-button>
- <el-button type="primary" @click="confirmClick(ruleFormRef)">确认</el-button>
+ <el-button type="primary" @click="confirmClick(ruleFormRef)" size="default">确认</el-button>
+ <el-button @click="cancelClick" size="default">取消</el-button>
</div>
</template>
</el-drawer>
@@ -53,8 +57,8 @@
<span>您确定要删除该审批流吗?</span>
<template #footer>
<span class="dialog-footer">
- <el-button @click="deleteDialog = false">取消</el-button>
- <el-button type="primary" @click="conFirmDelete">确认</el-button>
+ <el-button type="primary" @click="conFirmDelete" size="default">确认</el-button>
+ <el-button @click="deleteDialog = false" size="default">取消</el-button>
</span>
</template>
</el-dialog>
@@ -140,6 +144,12 @@
approveSteps.splice( i,1)
deleteDialog.value = false
}
+ const cancelEdit = () => {
+
+ }
+ const confirmEdit = () =>{
+
+ }
const state = reactive<stateType>({});
// 折线图
const renderMenu = async (value: string) => {
@@ -158,6 +168,8 @@
deleteFlow,
addFlow,
confirmClick,
+ cancelEdit,
+ confirmEdit,
...toRefs(state),
};
},
--
Gitblit v1.9.2