Merge branch 'master' of http://182.92.169.222:3000/zhc077/zmd_kejiju
commit
c480aaf938
3 changed files with 76 additions and 8 deletions
@ -0,0 +1,44 @@ |
||||
<template> |
||||
<BasicModal @register="registerModal" title="日志" width="1024px" @ok="onOk"> |
||||
<PageWrapper> |
||||
<a-card title="流程进度" :bordered="true"> |
||||
<a-steps :current="1" progress-dot size="small"> |
||||
<a-step title="申请人提交"> |
||||
<template #description> <div>Jeecg</div> <p>2016-12-12 12:32</p> </template> |
||||
</a-step> |
||||
<a-step title="申请单位提交"> |
||||
<template #description> |
||||
<p>Chad</p> |
||||
</template> |
||||
</a-step> |
||||
<a-step title="科技主管提交" /> |
||||
<a-step title="市科技局提交" /> |
||||
<a-step title="财政主管处理" /> |
||||
</a-steps> |
||||
</a-card> |
||||
</PageWrapper> |
||||
</BasicModal> |
||||
</template> |
||||
|
||||
<script lang="ts"> |
||||
import { defineComponent } from 'vue'; |
||||
import { useAttrs } from '/@/hooks/core/useAttrs'; |
||||
import { BasicModal, useModalInner } from '/@/components/Modal'; |
||||
import PageWrapper from "@/components/Page/src/PageWrapper.vue"; |
||||
|
||||
export default defineComponent({ |
||||
name: 'ProjectLogModal', |
||||
inheritAttrs: false, |
||||
components: {PageWrapper, BasicModal}, |
||||
setup() { |
||||
const attrs = useAttrs(); |
||||
const [registerModal, { closeModal }] = useModalInner(); |
||||
|
||||
function onOk() { |
||||
closeModal(); |
||||
} |
||||
|
||||
return { attrs, registerModal, onOk }; |
||||
}, |
||||
}); |
||||
</script> |
Loading…
Reference in new issue