浏览代码

deploy

master
Soleilw 8 个月前
父节点
当前提交
6ffa78b0e8
共有 3 个文件被更改,包括 4 次插入4 次删除
  1. 1
    1
      dist/index.html
  2. 1
    1
      dist/umi.3489e7b6.js
  3. 2
    2
      src/constants/index.ts

+ 1
- 1
dist/index.html 查看文件

</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
<script src="/umi.babddd75.js"></script>
<script src="/umi.3489e7b6.js"></script>
</body> </body>
</html> </html>

dist/umi.3489e7b6.js
文件差异内容过多而无法显示
查看文件


+ 2
- 2
src/constants/index.ts 查看文件

export const web: string = '/web'; export const web: string = '/web';
export const common: string = '/common'; export const common: string = '/common';
export type StringOptional = string | undefined; export type StringOptional = string | undefined;
export const Imageprefix: string = process.env.NODE_ENV == 'production' ? 'https://admin1.jcjob.cn/img/' : 'https://rcsc-test.jcjob.cn/img/'
export const baseUrl: string = process.env.NODE_ENV == 'production' ? 'https://admin1.jcjob.cn/api' : 'https://rcsc-test.jcjob.cn/api'
export const Imageprefix: string = JSON.parse(process.env.BUILD_ENV) == 'production' ? 'https://admin1.jcjob.cn/img/' : 'https://rcsc-test.jcjob.cn/img/'
export const baseUrl: string = JSON.parse(process.env.BUILD_ENV) == 'production' ? 'https://admin1.jcjob.cn/api' : 'https://rcsc-test.jcjob.cn/api'
export const selectfieldNames = { label: 'name', value: 'id' }; export const selectfieldNames = { label: 'name', value: 'id' };
export const cascaderfieldNames = { label: 'name', value: 'id', children: 'children' }; export const cascaderfieldNames = { label: 'name', value: 'id', children: 'children' };



正在加载...
取消
保存