Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@
const compCode = this.nodeDetailConfig.component_code
return !!compCode && compCode === 'subprocess_plugin'
},
isLegacySubProcess () { // 是否为旧版子流程
return !this.isSubProcessNode && this.nodeActivity && this.nodeActivity.type === 'SubProcess'
},
thirdPartyNodeCode () {
if (!this.isThirdPartyNode) return ''
const nodeInfo = this.pipelineTree.activities[this.nodeDetailConfig.node_id]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
v-bk-tooltips="veeErrors.first(`chat_group_id_${$index}`)"
class="bk-icon icon-exclamation-circle-shape error-msg" />
</template>
<span v-else>{{ props.$index === 0 ? $t('成功') : props.$index === 1 ? $t('失败') : $t('等待处理') }}</span>
<span v-else>{{ $index === 0 ? $t('成功') : $index === 1 ? $t('失败') : $t('等待处理') }}</span>
</template>
<div class="empty-data" slot="empty">
<NoData></NoData>
Expand Down
Loading