no message

This commit is contained in:
setthawutttty 2023-06-07 16:08:28 +07:00
parent c9d89be624
commit fbdfd4594d
3 changed files with 72 additions and 57 deletions

View file

@ -13,18 +13,7 @@
<q-tooltip>แกไขขอม</q-tooltip> <q-tooltip>แกไขขอม</q-tooltip>
</q-btn> </q-btn>
<div v-else> <div v-else>
<!-- <q-btn
flat
round
:disabled="!editvisible"
:outline="!editvisible"
:color="!editvisible ? 'grey-7' : 'red'"
@click="cancel()"
icon="mdi-undo"
v-if="modalEdit == true"
>
<q-tooltip>ยกเล</q-tooltip>
</q-btn> -->
<q-btn <q-btn
flat flat
round round
@ -80,11 +69,6 @@ const edit = async () => {
const checkSave = () => { const checkSave = () => {
props.validate(); props.validate();
props.save(); props.save();
// if (myForm.value !== null) {
// myForm.value.validate().then((success) => {
// if (success) {
// }
// });
// }
}; };
</script> </script>

View file

@ -12,8 +12,8 @@
</q-toolbar> </q-toolbar>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, useAttrs } from "vue";
import { ref, useAttrs } from "vue";
const props = defineProps({ const props = defineProps({
tittle: String, tittle: String,
close: { close: {
@ -24,4 +24,5 @@ const props = defineProps({
const close = async () => { const close = async () => {
props.close(); props.close();
}; };
</script> </script>

View file

@ -16,6 +16,7 @@ const filter = ref<string>("");
const { placementData } = store; const { placementData } = store;
const editRow = ref<boolean>(false); // const editRow = ref<boolean>(false); //
const modal = ref<boolean>(false); //modal add detail const modal = ref<boolean>(false); //modal add detail
const modal_right = ref<boolean>(false); //modal add detail
const modalEdit = ref<boolean>(false); //modal const modalEdit = ref<boolean>(false); //modal
const position = ref<number>(); const position = ref<number>();
const Name = ref<string>(); const Name = ref<string>();
@ -26,7 +27,7 @@ const BMAOfficer = ref<boolean>();
const Status = ref<string>(); const Status = ref<string>();
const checkList = ref<string>(); const checkList = ref<string>();
const $q = useQuasar(); // show dialog const $q = useQuasar(); // show dialog
const selectData = (props: TableName) => { const selectData = (props: TableName) => {
if (editvisible.value == true) { if (editvisible.value == true) {
@ -42,13 +43,29 @@ const selectData = (props: TableName) => {
BMAOfficer.value = props.BMAOfficer; BMAOfficer.value = props.BMAOfficer;
Status.value = props.Status; Status.value = props.Status;
checkList.value = props.checkList; checkList.value = props.checkList;
}else{ } else {
editRow.value = false; editRow.value = false;
modalEdit.value = true; modalEdit.value = true;
modal.value = true; modal.value = true;
edit.value = true; edit.value = true;
} }
}; };
const editDetail = (props:TableName, action:string) => {
if (action === 'cancel') {
editRow.value = false;
modalEdit.value = false;
modal_right.value = true;
edit.value = true;
Name.value = props.Name;
} else if(action === 'wait'){
editRow.value = false;
modalEdit.value = true;
modal_right.value = true;
edit.value = true;
Name.value = props.Name;
}
};
placementData.mappingPosition.columns.length == 0 placementData.mappingPosition.columns.length == 0
? (visibleColumns.value = [ ? (visibleColumns.value = [
@ -150,7 +167,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "บรรจุเเล้ว", Status: "บรรจุเเล้ว",
checkList:null checkList: null,
}, },
{ {
position: 1, position: 1,
@ -160,7 +177,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "ยังไม่บรรจุ", Status: "ยังไม่บรรจุ",
checkList:null checkList: null,
}, },
{ {
position: 1, position: 1,
@ -170,7 +187,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "เตรียมบรรจุ", Status: "เตรียมบรรจุ",
checkList:null checkList: null,
}, },
{ {
@ -181,7 +198,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "เตรียมบรรจุ", Status: "เตรียมบรรจุ",
checkList:null checkList: null,
}, },
{ {
@ -192,7 +209,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "เตรียมบรรจุ", Status: "เตรียมบรรจุ",
checkList:null checkList: null,
}, },
{ {
position: 1, position: 1,
@ -202,7 +219,7 @@ const rows = ref<TableName[]>([
ReportingDate: "30 พ.ค. 2566", // ReportingDate: "30 พ.ค. 2566", //
BMAOfficer: true, BMAOfficer: true,
Status: "บรรจุเเล้ว", Status: "บรรจุเเล้ว",
checkList:null checkList: null,
}, },
]); ]);
const clickCancel = async () => { const clickCancel = async () => {
@ -217,9 +234,11 @@ const clickClose = async () => {
ok: "ยืนยัน", ok: "ยืนยัน",
persistent: true, persistent: true,
}).onOk(async () => { }).onOk(async () => {
modal_right.value = false;
modal.value = false; modal.value = false;
}); });
} else { } else {
modal_right.value = false;
modal.value = false; modal.value = false;
} }
}; };
@ -271,15 +290,6 @@ const clickClose = async () => {
class="text-h5" class="text-h5"
/> />
</div> </div>
<q-toggle
v-else
v-model="props.row.isActive"
dense
color="green"
@update:model-value="
clickIsActive(props.row.id, props.row.isActive)
"
/>
</div> </div>
<div v-else class="table_ellipsis"> <div v-else class="table_ellipsis">
{{ col.value }} {{ col.value }}
@ -297,6 +307,7 @@ const clickClose = async () => {
round round
size="14px" size="14px"
icon="mdi-account-alert" icon="mdi-account-alert"
@click="editDetail(props.row, 'wait')"
/> />
<q-btn <q-btn
color="red" color="red"
@ -305,6 +316,7 @@ const clickClose = async () => {
round round
size="14px" size="14px"
icon="mdi-account-remove" icon="mdi-account-remove"
@click="editDetail(props.row, 'cancel')"
/> />
</div> </div>
<div v-else align="right"> <div v-else align="right">
@ -319,28 +331,46 @@ const clickClose = async () => {
</div> </div>
</q-td> </q-td>
</q-tr> </q-tr>
<q-dialog v-model="modal" persistent>
<q-card style="width: 800px">
<q-form ref="myForm">
<!-- :tittle="`${modalEdit ? 'แก้ไข' : 'สร้าง'}รายละเอียดของ...`" -->
<DialogHeader
:tittle="`รายละเอียดของ${Name}`"
:close="clickClose"
/>
<q-separator />
<q-card-section class="q-p-sm"> text </q-card-section>
<q-separator />
<DialogFooter
:save="clickSave"
v-model:editvisible="edit"
v-model:modalEdit="modalEdit"
/>
</q-form>
</q-card>
</q-dialog>
<q-dialog v-model="modal_right" persistent>
<q-card style="width: 800px">
<q-form ref="myForm">
<!-- :tittle="`${modalEdit ? 'แก้ไข' : 'สร้าง'}รายละเอียดของ...`" -->
<DialogHeader
:tittle="`${modalEdit ? 'ขอผ่อนผัน' : 'สละสิทธิ์'} ชื่อ...`"
:close="clickClose"
/>
<q-separator />
<q-card-section class="q-p-sm"> text </q-card-section>
<q-separator />
<DialogFooter
:save="clickSave"
v-model:editvisible="edit"
v-model:modalEdit="modalEdit"
/>
</q-form>
</q-card>
</q-dialog>
</template> </template>
</Table> </Table>
</q-form> </q-form>
<q-dialog v-model="modal" persistent>
<q-card style="width: 800px">
<q-form ref="myForm">
<!-- :tittle="`${modalEdit ? 'แก้ไข' : 'สร้าง'}รายละเอียดของ...`" -->
<DialogHeader
:tittle="`รายละเอียดของ`"
:close="clickClose"
/>
<q-separator />
<q-card-section class="q-p-sm">
text
</q-card-section>
<q-separator />
<DialogFooter
:save="clickSave"
v-model:editvisible="edit"
v-model:modalEdit="modalEdit"
/>
</q-form>
</q-card>
</q-dialog>
</template> </template>