This commit is contained in:
2019-06-12 18:59:39 +00:00
parent 58e46dde5e
commit fa7028d370
3 changed files with 42 additions and 19 deletions

View File

@@ -1,3 +1,5 @@
import reportChooser from "../components/report-chooser.vue";
/* Xeslint-disable */
/////////////////////////////////
@@ -111,6 +113,15 @@ export default {
}
]
});
}, /////////////////////////////////////
// Show a report list
//
async getReportChoice(vm, reports) {
const result = await vm.$dialog.showAndWait(reportChooser, {
reports: reports,
title: "MYTITLE"
});
return result;
}
//new functions above here
};