getUserSystemHeadList static method
用户体系获取相框列表
Implementation
static Future<DataResult> getUserSystemHeadList() async {
var res = await BaseDao.fromBaseEncryptV3(
{}, Address.getUserSystemHeadList(),
post: false, queryParameters: {});
if (res.result) {
return DataResult(res.data, true);
}
return res;
}