Newer
Older
smart-metering-front / src / views / measure / source / components / passed.vue
MrTan on 16 Dec 2022 264 bytes 审批页面
<!-- 通过 -->
<script lang="ts" setup name="passed">
import { ref } from 'vue'
import listPage from './listPage.vue'
const buttoms = ref([{ name: '查看', type: 'primary' }])
</script>

<template>
  <list-page name="已通过" :buttoms="buttoms" />
</template>