|
@@ -146,7 +146,7 @@
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{ dyList.length > 0 ? dyList[scope.row.stage].name : "" }}
|
|
|
+ {{ dyList.length > 0 ? dyList[!scope.row.stage ? 0 : scope.row.stage ].name : "" }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -161,8 +161,8 @@
|
|
|
<div>
|
|
|
{{
|
|
|
dyList.length > 0
|
|
|
- ? dyList[scope.row.stage].taskList[scope.row.task]
|
|
|
- ? dyList[scope.row.stage].taskList[scope.row.task].name
|
|
|
+ ? dyList[!scope.row.stage ? 0 : scope.row.stage].taskList[!scope.row.task ? 0 : scope.row.task]
|
|
|
+ ? dyList[!scope.row.stage ? 0 : scope.row.stage].taskList[!scope.row.task ? 0 : scope.row.task].name
|
|
|
: ""
|
|
|
: ""
|
|
|
}}
|