|
|
@@ -218,9 +218,8 @@
|
|
|
<span>{{
|
|
|
getLabel(
|
|
|
dict.type.app_question_status,
|
|
|
- scope.row.reformStatus ? scope.row.reformStatus : scope.row.overdueStatus
|
|
|
- ? scope.row.overdueStatus
|
|
|
- : scope.row.confirmStatus
|
|
|
+ scope.row.overdueStatus!=null ? scope.row.overdueStatus:(scope.row.reformStatus!=null ? scope.row.reformStatus : scope.row.confirmStatus!=null
|
|
|
+ ? scope.row.confirmStatus : "")
|
|
|
)
|
|
|
}}</span>
|
|
|
</template>
|
|
|
@@ -354,6 +353,11 @@ export default {
|
|
|
this.questionList = [];
|
|
|
listQuestion(this.queryParams).then((response) => {
|
|
|
this.questionList = response.rows;
|
|
|
+ this.questionList.forEach(x=>{
|
|
|
+ console.log("隐患问题状态",x.overdueStatus!=null ? x.overdueStatus:(x.reformStatus!=null ? x.reformStatus : x.confirmStatus!=null
|
|
|
+ ? x.confirmStatus : ""));
|
|
|
+ })
|
|
|
+
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
|
});
|