diff --git a/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue b/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue index edb384a39..a1e6a3214 100644 --- a/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue +++ b/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue @@ -16,13 +16,14 @@ :cell-value="fakeCell" :changed="changed" :row="fakeRow" + :selected-rows="selectedRows" :rows="tableConfig.totalData" :value="1" class="risk-handler" @processDone="handleProcessDone" /> - + @@ -53,6 +54,7 @@ export default { id: '', risk: {} }, + selectedRows: [], fakeCell: { value: '0', label: this.$t('Pending') @@ -142,6 +144,9 @@ export default { if (page < offset + 1) { this.dataTable.gotoNextPage() } + }, + handleSelectionChange(val) { + this.selectedRows = val } } } diff --git a/src/views/accounts/RiskDetect/RiskHandlerFormatter/ReviewDrawer.vue b/src/views/accounts/RiskDetect/RiskHandlerFormatter/ReviewDrawer.vue index c95d2354b..1414be7e7 100644 --- a/src/views/accounts/RiskDetect/RiskHandlerFormatter/ReviewDrawer.vue +++ b/src/views/accounts/RiskDetect/RiskHandlerFormatter/ReviewDrawer.vue @@ -28,7 +28,7 @@