Newer
Older
smart-metering-front / src / views / measure / train / components / notPass.vue
<!-- 未通过 -->
<script lang="ts" setup name="notPass">
import { ref } from 'vue'
import listPage from './listPage.vue'
const buttoms = ref([{ name: '查看', type: 'primary', info: 'detail' }])
</script>

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