瀏覽代碼

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	lib/model/patrol_response_entity.dart
#	lib/page/patrol/patrol_job_detail.dart
tongfeng 2 年之前
父節點
當前提交
544c39ec3f
共有 3 個文件被更改,包括 353 次插入150 次删除
  1. 8 2
      lib/common/style/gsy_style.dart
  2. 2 2
      lib/model/patrol_response_entity.dart
  3. 343 146
      lib/page/patrol/patrol_job_detail.dart

+ 8 - 2
lib/common/style/gsy_style.dart

@@ -164,8 +164,8 @@ class GSYConstant {
   );
 
   static const normalTextActionWhiteBold = TextStyle(
-    color: GSYColors.actionBlue,
-    fontSize: normalTextSize,
+    color: Colors.blue,
+    fontSize: middleTextWhiteSize,
     fontWeight: FontWeight.bold,
   );
 
@@ -174,6 +174,12 @@ class GSYConstant {
     fontSize: normalTextSize,
   );
 
+  static const smallTextLight = TextStyle(
+    color: GSYColors.primaryLightValue,
+    fontSize: smallTextSize,
+  );
+
+
   static const normalTextBigWhiteBold = TextStyle(
     color: GSYColors.actionBlue,
     fontSize: bigTextSize,

+ 2 - 2
lib/model/patrol_response_entity.dart

@@ -75,8 +75,8 @@ class PatrolJobDetailData with JsonConvert<PatrolJobDetailData> {
 class PatrolJobItemData with JsonConvert<PatrolJobItemData> {
   late String name;
   late String result;
-
-  PatrolJobItemData(this.name, this.result);
+  late int id;
+  PatrolJobItemData(this.name,this.result,this.id);
 }
 
 class PatrolJobImageData with JsonConvert<PatrolJobImageData> {

文件差異過大導致無法顯示
+ 343 - 146
lib/page/patrol/patrol_job_detail.dart