| 12345678910111213141516171819202122232425 |
- <template>
- <section class="cert-id">{{detail}}</section>
- </template>
- <script>
- import http from '@/plugins/http'
- export default {
- async asyncData(ctx) {
- let res = await http.post(`${http.host.dev}/api/cert/getCertDetail`, { cert_no: ctx.query.no })
- return {
- detail: res.data
- }
- },
- data() {
- return {}
- },
- mounted() {
- }
- }
- </script>
- <style scoped>
- </style>
|