Browse Source

Fix issue with actionOperationExecute function in History.vue

master
sige 1 year ago
parent
commit
e5203ecfbb
  1. 3
      src/components/Setting/components/History.vue

3
src/components/Setting/components/History.vue

@ -140,6 +140,9 @@ const historyDataList = computed(() => {
//
function actionOperationExecute( action ) {
if ( checkedItems.value.length === 0 ) {
return;
}
if ( 'export' === action ) {
settingStore.updateExportText('导出消毒记录中')
settingStore.updateExportLoading(true)

Loading…
Cancel
Save