|
@ -330,7 +330,13 @@ export default { |
|
|
theme="primary" |
|
|
theme="primary" |
|
|
disabled={row.canUpload} |
|
|
disabled={row.canUpload} |
|
|
onClick={() => |
|
|
onClick={() => |
|
|
this.viewDetail(row.id, row.nuclearCoreName, 2) |
|
|
|
|
|
|
|
|
this.viewDetail( |
|
|
|
|
|
row.id, |
|
|
|
|
|
row.nuclearCoreName, |
|
|
|
|
|
2, |
|
|
|
|
|
row.nuclearStationName, |
|
|
|
|
|
row.operatorName, |
|
|
|
|
|
) |
|
|
} |
|
|
} |
|
|
> |
|
|
> |
|
|
详情 |
|
|
详情 |
|
@ -345,6 +351,8 @@ export default { |
|
|
row.id, |
|
|
row.id, |
|
|
row.nuclearCoreName, |
|
|
row.nuclearCoreName, |
|
|
1, |
|
|
1, |
|
|
|
|
|
row.nuclearStationName, |
|
|
|
|
|
row.operatorName, |
|
|
row.canUpload, |
|
|
row.canUpload, |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
@ -438,10 +446,19 @@ export default { |
|
|
taskStore.updateCurrentTaskId(taskId) |
|
|
taskStore.updateCurrentTaskId(taskId) |
|
|
taskStore.updateCurrentDetailTaskId(null) |
|
|
taskStore.updateCurrentDetailTaskId(null) |
|
|
}, |
|
|
}, |
|
|
viewDetail(taskId, nuclearCoreName, flag, canUpload) { |
|
|
|
|
|
|
|
|
viewDetail( |
|
|
|
|
|
taskId, |
|
|
|
|
|
nuclearCoreName, |
|
|
|
|
|
flag, |
|
|
|
|
|
nuclearStationName, |
|
|
|
|
|
operatorName, |
|
|
|
|
|
canUpload, |
|
|
|
|
|
) { |
|
|
if (flag == 1 && canUpload) { |
|
|
if (flag == 1 && canUpload) { |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
|
|
|
imageStore.updateNuclearStationName(nuclearStationName) |
|
|
|
|
|
imageStore.updateOperatorName(operatorName) |
|
|
imageStore.updateNuclearCoreName(nuclearCoreName) |
|
|
imageStore.updateNuclearCoreName(nuclearCoreName) |
|
|
taskStore.updateCurrentDetailTaskId(taskId) |
|
|
taskStore.updateCurrentDetailTaskId(taskId) |
|
|
imageStore.updateShowImage(false) |
|
|
imageStore.updateShowImage(false) |
|
|