杨磊
4 天以前 ef37c59e055a990ce247b265b27d3fcef430a243
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
export const requestCtx = "https://www.caupress.cn"; // 请求地址
export const requestTimeOut = 300000; // 请求超时时间
export const tokenKey = "zgnydx-token";
export const userInfoKey = "zgnydx-userInfo"; // 用户信息key
export const appId = 1;
export const appRefCode = "caupress";
export const goodsStore = `defaultGoodsStore${appId}`; // 默认商品库
export const publicStore = `defaultPublicStore${appId}`; // 默认资源开放仓储
export const publicRepository = `defaultPublicRepository${appId}`; // 默认资源开放库
export const reg_tel =
  /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/; // 电话号正则
 
const pdfUrl = "https://www.caupress.cn/pdfRead/";
// const pdfUrl = "http://192.168.3.196:8083/pdfRead/";
 
// 频道refCode
export const refCodes = {
  index: {
    banner: "caupress_banner\\caupress_homepageBanner",
    information: "caupress_informationCenter\\caupress_information",
    notice: "caupress_informationCenter\\caupress_notice",
    column: "caupress_homepageColumn",
    honor: "caupress_honor",
  },
  // 意见反馈
  Feedback: "feedback",
  // 投稿
  Contribution: "caupress_contributedWorks",
  // 隐私政策
  Privacy:"caupress_protocol",
  // 法律声明
  Statement:"caupress_protocol",
  //教师认证formtypeItem
  teacherCertification: "caupress_teacherCertification",
  // 电子样书cmsTypeRefcode
  electronicSampleApplication: "electronicSampleApplication",
  // 电子样书申请
  applyBook: "applyBook",
  // 纸质样书申请
  applyEntityBook: "applyEntityBook",
  // 资源下载申请
  productDownLoad: "productDownLoad",
};
 
export const seriesList = {
  caupress_yyxbkspkxygclzyxljc: "应用型本科食品科学与工程类专业系列教材",
  caupress_ptgdyxsplzyxljc: "普通高等院校食品类专业系列教材",
  caupress_ptgdjyfjylylzysswghjc: "普通高等院校风景园林/园林系列教材",
  caupress_gdzyjyxmsyzyjpjc: "高等职业教育畜牧兽医专业精品教材",
  caupress_gdzyjyxmsyzyqgxjhxljc:
    "高等职业教育畜牧兽医专业群“工学结合”系列教材",
  caupress_xczxbwnmpxxl: "乡村振兴百万农民培训系列教材",
  caupress_tdzyglyyxzxfzsdzyxljc: "土地资源管理应用型转型发展试点专业系列教材",
  caupress_ptgdyxtdzyglzyjpkcj: "普通高等院校土地资源管理专业精品课程建设教材",
  caupress_gdzyjygklqcnygcnjxlghjc:
    "高等职业教育工科类汽车、农业工程、农机系列规划教材",
};
 
const config = {
  requestCtx,
  requestTimeOut,
  tokenKey,
  userInfoKey,
  appRefCode,
  goodsStore,
  publicStore,
  publicRepository,
  refCodes,
  reg_tel,
  seriesList,
  pdfUrl
};
export default config;