1234567891011121314151617181920212223242526272829303132333435363738 |
- let url = ''
- if (location.port == '15000') {
-
- url = 'http://127.0.0.1/api2/package/manage/api'
- } else {
- url = location.origin + location.pathname + 'api'
- }
- deverConfig = {
-
- setting: {
- title: '源代宝',
- tokenTableName: 'dever-yuandaibao-v1',
-
- },
-
- network: {
- requestTimeout: 1000000,
- baseURL: url,
- },
-
- theme: {
-
- layout: 'column',
-
- themeName: 'blue-black',
-
- background: 'none',
-
- menuWidth: '266px',
-
- columnStyle: 'card',
-
- tabsBarStyle: 'smooth',
- },
- }
|