<template> <view class="mine-index"></view> </template> <script> import { API } from '@/util/api.js'; export default { data() { return {}; }, onShow() { this.getData(); }, methods: { getData() { this.request(API.userInfo, 'POST', {}, false).then(res => { if (res.err_code === 0) { } else { } }); } } }; </script> <style lang="scss"> @import '../../assets/css/declaration/checkIn.scss'; </style>