|
|
|
|
|
|
|
|
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' }; |
|
|
|
|
|
|