This commit is contained in:
cxc
2022-06-27 09:51:30 +08:00
commit 8cb96b4c5e
101 changed files with 11110 additions and 0 deletions

9
lib/net/http_helper.dart Normal file
View File

@ -0,0 +1,9 @@
class HttpHelper {
static const String BASE_HOST = "http://192.168.40.50:8080/";
//用户密码登录
static const String login = BASE_HOST + "user/login";
//检查更新
static const String appVersion = BASE_HOST + "app/version";
//获取文章列表
static const String artList = BASE_HOST + "article/list";
}