1234567891011121314151617181920212223242526272829 |
- <template>
- <div>{{data.title}}</div>
- <div v-html="data.content"></div>
- </template>
- <script setup>
- import {mycosdetail} from '@/api/xjc-integratedmachine/environment/tscareer.js'
- const router = useRouter()
- const route = useRoute()
- const param = route.query
- const data = ref({})
- function detail() {
- mycosdetail({
- id: param.id
- }).then(resp => {
- data.value = resp.entity
- })
- }
- detail()
- </script>
- <style scoped>
- </style>
|