api_constants.dart 774 B

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