index.vue 491 Bytes
<template>
  <other-info-list per-type="3" :type-arr="typeArr" />
</template>

<script setup>
import { defineOptions, ref } from 'vue'
import OtherInfoList from '@/views/storehouse/otherInfoList'

defineOptions({
  name: 'Coach_Examiner'
})

const typeArr = ref([
  { label: '晋级官', value: '0' },
  { label: '晋段官(初级)', value: '1' },
  { label: '晋段官(中级)', value: '2' },
  { label: '晋段官(高级)', value: '3' }
])

</script>

<style scoped>

</style>