소스 검색

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