diff --git a/src/views/xgf/flow/components/flowInfo.vue b/src/views/xgf/flow/components/flowInfo.vue new file mode 100644 index 0000000..0f7a130 --- /dev/null +++ b/src/views/xgf/flow/components/flowInfo.vue @@ -0,0 +1,78 @@ + + + + + + + + {{ item.STEP_NAME }} + + + + + 审批人:{{ item.APPROVER_NAME }} + + + 审批状态:{{ item.PASS_FLAG === '1' ? '同意' : '不同意' }} + + + 审批时间:{{ item.APPROVER_TIME }} + + + 审批意见:{{ item.APPROVER_OPINION }} + + + + + + + + + + + + diff --git a/src/views/xgf/flow/components/flowInfoList.vue b/src/views/xgf/flow/components/flowInfoList.vue new file mode 100644 index 0000000..0f5c959 --- /dev/null +++ b/src/views/xgf/flow/components/flowInfoList.vue @@ -0,0 +1,88 @@ + + + + + + + + 详情 + + + + + + + + + diff --git a/src/views/xgf/flow/components/list.vue b/src/views/xgf/flow/components/list.vue index c8d608d..0d7c352 100644 --- a/src/views/xgf/flow/components/list.vue +++ b/src/views/xgf/flow/components/list.vue @@ -39,9 +39,10 @@ - + 详情 + 流程详情 审批 电子合格证 @@ -56,6 +57,7 @@ + @@ -68,9 +70,10 @@ import apply from './apply' import user from './user.vue' import SendUtil from './sendUtil.vue' import UserInfo from '../../flowApply/components/userInfo.vue' +import FlowInfoList from './flowInfoList.vue' export default { - components: { UserInfo, SendUtil, Pagination, apply, vueQr, user }, + components: { FlowInfoList, UserInfo, SendUtil, Pagination, apply, vueQr, user }, directives: { waves }, data() { return { @@ -162,6 +165,9 @@ export default { handleShow(row) { this.$refs.userInfos.init(row) }, + handleFlowShow(row) { + this.$refs.flowInfo.init(row) + }, approve(row) { this.$refs.sendUtil.init(row) }, diff --git a/src/views/xgf/flowList/components/sendUtil.vue b/src/views/xgf/flowList/components/sendUtil.vue index 6048cfe..a7fdb5b 100644 --- a/src/views/xgf/flowList/components/sendUtil.vue +++ b/src/views/xgf/flowList/components/sendUtil.vue @@ -1,4 +1,4 @@ - +