Newer
Older
smart-metering-front / src / views / device / standardEquipment / components / changeApply / draftBox.vue
MrTan on 22 Dec 2022 390 bytes 更换申请页面
<!-- 草稿箱 -->
<script lang="ts" setup name="draftBox">
import { ref } from 'vue'
import listPage from './listPage.vue'
const buttoms = ref([
  { name: '查看', type: 'primary' },
  { name: '编辑', type: 'primary' },
  { name: '提交', type: 'primary' },
  { name: '删除', type: 'danger' },
])
</script>

<template>
  <list-page name="草稿箱" :buttoms="buttoms" />
</template>