| | |
| | | import axios from "axios"; |
| | | export const requestCtx = "https://jsek.bnuic.com"; // 请求地址 |
| | | export const resourceCtx = "http://182.92.203.7:3007/books/resource/1"; // 资源请求地址 |
| | | export const resourceCtx = "http://182.92.203.7:3007/books/resource/"; // 资源请求地址 |
| | | export let activeBook = {}; // 资源请求地址 |
| | | export let goodsStore = ""; |
| | | // 请求教材配置信息 |
| | | const getBookConfig = async () => { |
| | | const response = await axios.get(resourceCtx + "/bookConfig.json"); |
| | | const getBookConfig = async (bookId) => { |
| | | const response = await axios.get( |
| | | resourceCtx + (bookId ? bookId : "1") + "/bookConfig.json" |
| | | ); |
| | | activeBook = response.data; |
| | | goodsStore = response.data.storeRefcode; |
| | | return response.data; |
| | |
| | | export const tokenKey = "jsek-token"; |
| | | |
| | | const config = { |
| | | requestCtx, |
| | | resourceCtx, |
| | | activeBook, |
| | | requestTimeOut, |
| | | tokenKey, |
| | | goodsStore, |
| | | appId, |
| | | getBookConfig, |
| | | getBookConfig |
| | | }; |
| | | export default config; |