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

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