21 lines
485 B
Vue
21 lines
485 B
Vue
|
|
<template>
|
||
|
|
<div class='default-main'>
|
||
|
|
<back-component style='margin: 8px;position: absolute;z-index: 10;top: -3px;right: 2px' />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang='ts' setup>
|
||
|
|
import BackComponent from '@/components/icon/back/index.vue'
|
||
|
|
|
||
|
|
defineOptions({ name: 'programReview' })
|
||
|
|
|
||
|
|
import { onMounted, provide, ref, getCurrentInstance, reactive, watch, unref, nextTick } from 'vue'
|
||
|
|
|
||
|
|
const { query } = useRoute() // 查询参数
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
|
||
|
|
<style scoped lang='scss'>
|
||
|
|
|
||
|
|
</style>
|