Showing
1 changed file
with
40 additions
and
0 deletions
src/views/client/personIndex.vue
0 → 100644
| 1 | +<template> | ||
| 2 | + <div class="person-index-page"></div> | ||
| 3 | +</template> | ||
| 4 | + | ||
| 5 | +<script setup> | ||
| 6 | +import { ref, reactive, onMounted } from 'vue' | ||
| 7 | +import { useRoute, useRouter } from 'vue-router' | ||
| 8 | +import axios from '@/utils/axios'; | ||
| 9 | +import $ from 'jquery' | ||
| 10 | +import { Toast } from 'vant'; | ||
| 11 | +const $route = useRoute(); | ||
| 12 | +const $router = useRouter(); | ||
| 13 | + | ||
| 14 | + onMounted(() => { | ||
| 15 | + | ||
| 16 | + }) | ||
| 17 | +</script> | ||
| 18 | + | ||
| 19 | +<script> | ||
| 20 | +import mixin from 'common/mixin'; | ||
| 21 | + | ||
| 22 | +export default { | ||
| 23 | + mixins: [mixin.init], | ||
| 24 | + data () { | ||
| 25 | + return { | ||
| 26 | + | ||
| 27 | + } | ||
| 28 | + }, | ||
| 29 | + mounted () { | ||
| 30 | + | ||
| 31 | + }, | ||
| 32 | + methods: { | ||
| 33 | + | ||
| 34 | + } | ||
| 35 | +} | ||
| 36 | +</script> | ||
| 37 | + | ||
| 38 | +<style lang="less" scoped> | ||
| 39 | +.person-index-page {} | ||
| 40 | +</style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment