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

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

defineOptions({
  name: 'Coach_Umpire'
})

const typeArr = ref([
  { label: '三级', value: '1' },
  { label: '二级', value: '2' },
  { label: '一级', value: '3' },
  { label: '国家级', value: '4' }
])

</script>

<style scoped>

</style>