소스 검색

Merge branch 'gyj' of SH-Arbitrate/Arbitrate-Frontend into dev

gaogaoyujie 2 년 전
부모
커밋
1ec0f71fb1
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      src/views/caseManagement/caseList.vue

+ 3
- 3
src/views/caseManagement/caseList.vue 파일 보기

194
           <el-button size="mini" type="text" icon="el-icon-edit"
194
           <el-button size="mini" type="text" icon="el-icon-edit"
195
               v-if="scope.row.caseStatus == 14 && checkPermi(['caseManagement:list:signprint']) && btnStatus"
195
               v-if="scope.row.caseStatus == 14 && checkPermi(['caseManagement:list:signprint']) && btnStatus"
196
                         @click="showaffixModel(scope.row, 4)">用印</el-button>
196
                         @click="showaffixModel(scope.row, 4)">用印</el-button>
197
-                    <el-button size="mini" type="text" icon="el-icon-truck"
197
+                    <!-- <el-button size="mini" type="text" icon="el-icon-truck"
198
                      v-if="scope.row.caseStatus > 15 && checkPermi(['caseManagement:list:delivery'])"
198
                      v-if="scope.row.caseStatus > 15 && checkPermi(['caseManagement:list:delivery'])"
199
-                        @click="showDeliveryModel(scope.row, 4)">快递信息</el-button>
199
+                        @click="showDeliveryModel(scope.row, 4)">快递信息</el-button> -->
200
                     <el-button size="mini" type="text" icon="el-icon-edit"
200
                     <el-button size="mini" type="text" icon="el-icon-edit"
201
                     v-if="scope.row.caseStatus == 15 && checkPermi(['caseManagement:list:sendaward']) && btnStatus"
201
                     v-if="scope.row.caseStatus == 15 && checkPermi(['caseManagement:list:sendaward']) && btnStatus"
202
                         @click="showMailaward(scope.row)">送达裁决书</el-button>
202
                         @click="showMailaward(scope.row)">送达裁决书</el-button>
1034
     // 表格显示高亮
1034
     // 表格显示高亮
1035
     tableRowClassName(row){
1035
     tableRowClassName(row){
1036
       console.log(row)
1036
       console.log(row)
1037
-      if(row.row.arbitratMethodName=="开庭审理"){
1037
+      if(row.row.caseStatus==8){
1038
         return 'pendingTrial'
1038
         return 'pendingTrial'
1039
       }
1039
       }
1040
       
1040