first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter_app/http/config.dart';
import 'package:flutter_app/http/index.dart';
import 'package:flutter_app/model/IndexModel.dart';
class ServiceMethods {
Http _http;
ServiceMethods() {
this._http = new Http();
}
/// 获取视频数据
Future getImageList(data) async {
return new Index.fromJson(await this._http.get(config.testUrl, data));
}
}