datepicker
This commit is contained in:
parent
3a03cc2ef0
commit
bfe033dbfe
2 changed files with 28 additions and 9 deletions
|
|
@ -3,12 +3,23 @@ import { ref, onMounted } from "vue";
|
|||
import { useQuasar, type QTableProps } from "quasar";
|
||||
|
||||
import { useCommandDetail } from "@/modules/18_command/store/DetailStore";
|
||||
import { useCounterMixin } from "@/stores/mixin";
|
||||
|
||||
import type { DataOption } from "@/modules/18_command/interface/index/Main";
|
||||
|
||||
import DialogOrgSelectOneStep from "@/components/Dialogs/DialogOrgSelectOneStep.vue";
|
||||
|
||||
const $q = useQuasar();
|
||||
const store = useCommandDetail();
|
||||
const {
|
||||
dialogMessageNotify,
|
||||
dialogConfirm,
|
||||
dialogRemove,
|
||||
messageError,
|
||||
showLoader,
|
||||
hideLoader,
|
||||
success,
|
||||
} = useCounterMixin();
|
||||
|
||||
const filter = ref<string>("");
|
||||
const rows = ref<any[]>([
|
||||
|
|
@ -93,7 +104,9 @@ const optionSelect = ref<DataOption[]>([
|
|||
const modal = ref<boolean>(false);
|
||||
const selectedModal = ref<any[]>([]);
|
||||
|
||||
function onDelete(id: string) {}
|
||||
function onDelete(id: string) {
|
||||
dialogRemove($q, () => {});
|
||||
}
|
||||
|
||||
function onSubmitPerson() {}
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue