//网络请求相关Api常量 class ApiConstants { //基础域名 static const baseUrl = 'http://vietnam-dev.casualabour.com'; //测试环境 //网络请求加密 Key static const encrypterKey = 'xxxx'; //加密Key // =========================== 用户相关 ↓========================================= // 用户登录 static const apiUserLogin = "/index.php/api/v1/sign/login"; // 用户登出系统 static const apiUserLogout = "/index.php/api/v1/sign/logout"; // 用户签到签出列表 static const apiSignApplied = "/index.php/api/v1/sign/applied"; // 用户签到签出 static const apiSignInOut = "/index.php/api/v1/sign/applied/clock"; //获取用户的详情信息 static const apiUserProfile = "/index.php/api/v1/xx/xx/xx"; }