mod: 默认使用web端推荐
This commit is contained in:
7
lib/models/common/rcmd_type.dart
Normal file
7
lib/models/common/rcmd_type.dart
Normal file
@ -0,0 +1,7 @@
|
||||
// 首页推荐类型
|
||||
enum RcmdType { web, app }
|
||||
|
||||
extension RcmdTypeExtension on RcmdType {
|
||||
String get values => ['web', 'app'][index];
|
||||
String get labels => ['web端', 'app端'][index];
|
||||
}
|
||||
@ -1,3 +1,5 @@
|
||||
import 'package:pilipala/utils/utils.dart';
|
||||
|
||||
import './model_owner.dart';
|
||||
import 'package:hive/hive.dart';
|
||||
|
||||
@ -56,7 +58,7 @@ class RecVideoItemModel {
|
||||
uri = json["uri"];
|
||||
pic = json["pic"];
|
||||
title = json["title"];
|
||||
duration = json["duration"].toString();
|
||||
duration = Utils.tampToSeektime(json["duration"]);
|
||||
pubdate = json["pubdate"];
|
||||
owner = Owner.fromJson(json["owner"]);
|
||||
stat = Stat.fromJson(json["stat"]);
|
||||
|
||||
Reference in New Issue
Block a user