litian
2024-03-29 4b5f1f7ed3460df9465e5071a59b8105cbc9146e
services/home/home.js
@@ -1,11 +1,11 @@
/** 获取首页数据 */
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,7 +15,7 @@
          text: '数字阅读',
          key: 1,
          icon: '/static/images/home/shuziyuedu@2x.png',
          url: '',
          url: '/pages/home/digitalRead/index',
        },
        {
          text: '数字课程',
@@ -73,4 +73,4 @@
/** 获取首页数据 */
export function fetchHome() {
  return mockFetchHome();
}
}