From 509f226d31a9a86a777906d3a26f9eab86ddd617 Mon Sep 17 00:00:00 2001 From: liujun Date: Mon, 29 Jan 2024 14:51:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=89=B9=E8=BF=87=E7=A8=8B=E4=B8=AD?= =?UTF-8?q?=E5=AE=A1=E6=89=B9=E6=84=8F=E8=A7=81=E4=B8=A2=E5=A4=B1bug?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/xgf/flow/components/flowStep.vue | 91 ++++++++++++++++++++++ src/views/xgf/flow/components/list.vue | 10 ++- 2 files changed, 99 insertions(+), 2 deletions(-) create mode 100644 src/views/xgf/flow/components/flowStep.vue diff --git a/src/views/xgf/flow/components/flowStep.vue b/src/views/xgf/flow/components/flowStep.vue new file mode 100644 index 0000000..f83bc79 --- /dev/null +++ b/src/views/xgf/flow/components/flowStep.vue @@ -0,0 +1,91 @@ + + + diff --git a/src/views/xgf/flow/components/list.vue b/src/views/xgf/flow/components/list.vue index 0d7c352..80822b6 100644 --- a/src/views/xgf/flow/components/list.vue +++ b/src/views/xgf/flow/components/list.vue @@ -43,6 +43,7 @@ @@ -57,7 +58,8 @@ - + + @@ -71,9 +73,10 @@ import user from './user.vue' import SendUtil from './sendUtil.vue' import UserInfo from '../../flowApply/components/userInfo.vue' import FlowInfoList from './flowInfoList.vue' +import FlowStep from './flowStep.vue' export default { - components: { FlowInfoList, UserInfo, SendUtil, Pagination, apply, vueQr, user }, + components: { FlowStep, FlowInfoList, UserInfo, SendUtil, Pagination, apply, vueQr, user }, directives: { waves }, data() { return { @@ -168,6 +171,9 @@ export default { handleFlowShow(row) { this.$refs.flowInfo.init(row) }, + handleFlowStepShow(row) { + this.$refs.flowStep.init(row) + }, approve(row) { this.$refs.sendUtil.init(row) },