datepicker

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-11 10:10:02 +07:00
parent 3a03cc2ef0
commit bfe033dbfe
2 changed files with 28 additions and 9 deletions

View file

@ -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>