mirror of
				https://github.com/pure-admin/vue-pure-admin.git
				synced 2025-11-03 13:44:47 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			900 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			900 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineFakeRoute } from "vite-plugin-fake-server/client";
 | 
						|
 | 
						|
// 模拟刷新token接口
 | 
						|
export default defineFakeRoute([
 | 
						|
  {
 | 
						|
    url: "/refresh-token",
 | 
						|
    method: "post",
 | 
						|
    response: ({ body }) => {
 | 
						|
      if (body.refreshToken) {
 | 
						|
        return {
 | 
						|
          success: true,
 | 
						|
          data: {
 | 
						|
            accessToken: "eyJhbGciOiJIUzUxMiJ9.newAdmin",
 | 
						|
            refreshToken: "eyJhbGciOiJIUzUxMiJ9.newAdminRefresh",
 | 
						|
            // `expires`选择这种日期格式是为了方便调试,后端直接设置时间戳或许更方便(每次都应该递增)。如果后端返回的是时间戳格式,前端开发请来到这个目录`src/utils/auth.ts`,把第`38`行的代码换成expires = data.expires即可。
 | 
						|
            expires: "2030/10/30 23:59:59"
 | 
						|
          }
 | 
						|
        };
 | 
						|
      } else {
 | 
						|
        return {
 | 
						|
          success: false,
 | 
						|
          data: {}
 | 
						|
        };
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
]);
 |