+
+
+
+
+
+ ไม่มีข้อมูล
+
+
+
+
+
+
+
{
outlined
dense
debounce="300"
- :model-value="filterKeyword2"
+ :model-value="filterKeyword2"
@update:model-value="updateInput"
placeholder="ค้นหา"
style="width: 850px; max-width: auto"
@@ -297,4 +358,4 @@ watchEffect(() => {
-
\ No newline at end of file
+
diff --git a/src/modules/11_discipline/components/4_Result/EditPage.vue b/src/modules/11_discipline/components/4_Result/EditPage.vue
index 3584fa57b..1d8518ef8 100644
--- a/src/modules/11_discipline/components/4_Result/EditPage.vue
+++ b/src/modules/11_discipline/components/4_Result/EditPage.vue
@@ -18,6 +18,7 @@ const { dialogConfirm } = mixin;
const router = useRouter();
const route = useRoute();
const id = ref(route.params.id as string);
+const type = ref("");
/** ข้อมูล v-model ของฟอร์ม */
const data = reactive({
@@ -45,13 +46,11 @@ function closeModal() {
modal.value = false;
}
-function getData() {
-
-}
+function getData() {}
/** ยืนยัน ส่งไปออกคำสั่ง */
function sentIssue() {
- modal.value = true
+ modal.value = true;
// dialogConfirm(
// $q,
// () => {
@@ -64,7 +63,7 @@ function sentIssue() {
/** โหลดข้อมูลเมื่อเข้าหน้านี้ */
onMounted(async () => {
- store.tabMenu = 'result'
+ store.tabMenu = "result";
await fetchData();
});
@@ -128,8 +127,8 @@ onMounted(async () => {
:rows2="[]"
v-model:filterKeyword2="filterKeyword"
:getData="getData"
+ v-model:type="type"
/>
-