// services/course.js … // 获取已购课程 export const getPurchaseCourse = () => { return request({ method: ‘GET’, url: ‘/front/course/getPurchaseCourse’ }) } 引⼊到⻚⾯中,发送请求 // learn/index.vue import { getPurchaseCourse } from ‘@/services/course’ export default { name:‘Learn’, components: { LayoutFooter, CourseContentList, VanNavBar:NavBar }, data () { return { // 课程信息 courseList: [] } }, methods: { fetchData () { return getPurchaseCourse() } } } </script>