litian
2024-08-27 366de5b4636679392a1e3d2984fc23bd5eaa5ac3
services/home/home.js
@@ -1,11 +1,11 @@
import { config } from '../../config/index';
/** 获取首页数据 */
function mockFetchHome() {
  const { delay } = require('../_utils/delay');
  const {
    delay
  } = require('../_utils/delay');
  return delay().then(() => {
    return {
      tabList: [
        {
      tabList: [{
          text: '图书服务',
          key: 0,
          icon: '/static/images/home/zhutichuban@2x.png',
@@ -15,25 +15,28 @@
          text: '数字阅读',
          key: 1,
          icon: '/static/images/home/shuziyuedu@2x.png',
          url: '',
          url: '/pages/home/digitalRead/index',
        },
        {
          text: '数字课程',
          key: 2,
          icon: '/static/images/home/shuzikecheng@2x.png',
          url: '',
          url: '/pages/digitalCourses/index',
          // url: ''
        },
        {
          text: '数字教材',
          key: 3,
          icon: '/static/images/home/shuzijiaocai@2x.png',
          url: '',
          url: '/pages/digitalTextbooks/index',
          // url: ''
        },
        {
          text: '专题讨论',
          text: '专题活动',
          key: 4,
          icon: '/static/images/home/zhuantitaolun@2x.png',
          url: '',
          url: '/pages/specialDiscussion/index',
          // url: ''
        },
        {
          text: '线上书展',
@@ -45,25 +48,26 @@
          text: '书目下载',
          key: 6,
          icon: '/static/images/home/shumuxiazai@2x.png',
          url: '',
          url: '/pages/bibliographyList/index',
        },
        {
          text: '教师认证',
          key: 7,
          icon: '/static/images/home/jiaoshirenzheng@2x.png',
          url: '/pages/teacherCertification/index',
          url: '/packageDomain/pages/teacherCertification/index',
        },
        {
          text: '样书申请',
          key: 8,
          icon: '/static/images/home/yangshushenqing@2x.png',
          url: '/pages/sampleBookList/index',
          url: '/packageDomain/pages/sampleBookList/index',
        },
        {
          text: '我要出书',
          key: 9,
          icon: '/static/images/home/xueshuzhuzuo@2x.png',
          url: '',
          url: '/packageDomain/pages/publickBookForm/index',
          // url: '',
        },
      ],
    };
@@ -72,10 +76,5 @@
/** 获取首页数据 */
export function fetchHome() {
  if (config.useMock) {
    return mockFetchHome();
  }
  return new Promise((resolve) => {
    resolve('real api');
  });
}
  return mockFetchHome();
}