24 lines
		
	
	
		
			723 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			723 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| window.config = {
 | |
|   loginUrl: "https://web.ceniu.sztg.com/#/login",
 | |
|   VConsole: true,
 | |
|   userIdList: [],
 | |
|   shareEnv: "production",
 | |
|   getCarProductLink: ({
 | |
|     token,
 | |
|     refreshToken,
 | |
|     departmentId = 36,
 | |
|     eId = 0,
 | |
|     activityId,
 | |
|   }) => {
 | |
|     return `https://web.ceniu.sztg.com/setTokenAndRedirect.html?token=${encodeURIComponent(
 | |
|       token
 | |
|     )}&refreshToken=${encodeURIComponent(
 | |
|       refreshToken
 | |
|     )}&redirect=${encodeURIComponent(
 | |
|       `https://web.ceniu.sztg.com/#/index/shopping?departmentId=${departmentId}&eId=${eId}&activityId=${activityId}`
 | |
|     )}`;
 | |
|   }, // 购物车产品地址
 | |
|   mobileRegister:
 | |
|     "https://web.ceniu.sztg.com/#/login?pageType=mobileRegister&redirect=", // 用户注册地址
 | |
| };
 | 
