<!-- 未通过 --> <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>