import { Tabs, Tab } from 'vant' import { defineComponent, reactive, ref } from 'vue' import styles from './index.module.less' import { useRouter } from 'vue-router' import MyApproval from './MyApproval' import Agency from './agency' import OSticky from '@/components/o-sticky' import OHeader from '@/components/o-header' const activeName = ref('wait') export default defineComponent({ name: 'approval-manage', setup() { const router = useRouter() const state = reactive({}) const headerHeight = ref(0) return () => (