import request from '@/utils/request' export function listPage(data) { return request({ url: '/portal/v1/sysmapping/listPage', method: 'post', data: data, headers: { 'Content-Type': 'application/json' } }) } // 自主学习计划指导 export function selectSysPlanStudent(data) { return request({ url: '/v1/sysPlan/selectSysPlanStudent', method: 'post', data: data, headers: { 'Content-Type': 'application/json' } }) }