| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | | const OssBasePath = 'https://renliyuan.oss-cn-hangzhou.aliyuncs.com/12333'; |  |   |  | export const OssAssets = { |  |   login: { |  |     AuthBg: `${OssBasePath}/assets/login/icon-auth-bg.png`, |  |     AuthTop: `${OssBasePath}/assets/login/icon-auth-top.png`, |  |   }, |  |   publishHome: { |  |     Logo: `${OssBasePath}/assets/publishHome/logo.png?123`, |  |   }, |  |   home: { |  |     Banner: `${OssBasePath}/assets/home/banner.png`, |  |     Customer: `${OssBasePath}/assets/home/customer.png`, |  |     CustomerService: `${OssBasePath}/assets/home/customer-service.png`, |  |   }, |  | }; | 
 |