瀏覽代碼

deploy

master
Soleilw 2 月之前
父節點
當前提交
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 查看文件

@@ -8,6 +8,6 @@
</head>
<body>
<div id="root"></div>
<script src="/umi.babddd75.js"></script>
<script src="/umi.3489e7b6.js"></script>
</body>
</html>

dist/umi.3489e7b6.js
文件差異過大導致無法顯示
查看文件


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

@@ -2,8 +2,8 @@ export const DEFAULT_NAME = 'Umi Max';
export const web: string = '/web';
export const common: string = '/common';
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 cascaderfieldNames = { label: 'name', value: 'id', children: 'children' };


Loading…
取消
儲存