|
@@ -133,7 +133,7 @@
|
|
|
<AddPersonFileDialog
|
|
|
v-model:visible="showAddPersonFileDialog"
|
|
|
:curRow="curRow"
|
|
|
- @success="fetchData"
|
|
|
+ @success="addSuccessHandle"
|
|
|
></AddPersonFileDialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -348,6 +348,11 @@ const selectChange = (value) => {
|
|
|
selectedRowKeys.value = value;
|
|
|
};
|
|
|
|
|
|
+const addSuccessHandle = () => {
|
|
|
+ fetchData();
|
|
|
+ getStatisticsInfo();
|
|
|
+};
|
|
|
+
|
|
|
const handleAdd = () => {
|
|
|
curRow.value = null;
|
|
|
showAddPersonFileDialog.value = true;
|