Newer
Older
vue3-front / src / views / device / standardEquipment / components / changeApply / passed.vue
MrTan on 22 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>