index.js 256 B

12345678910111213
  1. import { BaseService, Service } from '@/cool';
  2. export class WorkbenchService extends BaseService {
  3. // 控制台首页 b
  4. index(data) {
  5. return this.request({
  6. url: '/console/profile',
  7. params: data
  8. });
  9. }
  10. }
  11. export default new WorkbenchService();