|
|
|
@ -118,6 +118,16 @@ |
|
|
|
<span v-else>{{ scope.row[item.columnProp] }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
width="100" |
|
|
|
label="操作"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<a type="text" size="small" v-if="scope.row.processStatus === 'PENDING'" @click="handleRetry(scope.row)">重试</a> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<!-- 分页 --> |
|
|
|
@ -138,7 +148,7 @@ |
|
|
|
width="70%" |
|
|
|
:close-on-click-modal="false" |
|
|
|
v-drag> |
|
|
|
|
|
|
|
|
|
|
|
<el-form label-width="120px" style="padding: 10px;"> |
|
|
|
<!-- 基本信息 - rqrq --> |
|
|
|
<el-row> |
|
|
|
@ -451,7 +461,7 @@ export default { |
|
|
|
headerAlign: "center", |
|
|
|
align: "center", |
|
|
|
columnLabel: "操作", |
|
|
|
columnWidth: 150, |
|
|
|
columnWidth: 300, |
|
|
|
columnSortable: false, |
|
|
|
showOverflowTooltip: true, |
|
|
|
fixed: "right" |
|
|
|
@ -645,11 +655,11 @@ export default { |
|
|
|
}).then(() => { |
|
|
|
// 设置loading状态 - rqrq |
|
|
|
this.$set(row, '_retrying', true) |
|
|
|
|
|
|
|
|
|
|
|
const params = { |
|
|
|
id: row.id |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
retryIfsCall(params).then(({data}) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.$message.success('重试成功,IFS接口调用完成') |
|
|
|
|