เผยแพร่ข้อมูล

This commit is contained in:
setthawutttty 2024-02-01 14:46:13 +07:00
parent 98bef466d6
commit 94976daa5d
2 changed files with 22 additions and 0 deletions

View file

@ -25,4 +25,5 @@ export default {
orgPosMasterList: `${orgPos}/master/list`,
orgPosSort: `${orgPos}/sort`,
organizationShortName: `${organization}/sort`,
organizationPublishGet: `${organization}/get/publish`,
};

View file

@ -84,6 +84,25 @@ function onSubmit() {
});
}
function onClickPublish(){
dialogConfirm($q,()=>{
alert('get')
// showLoader()
// http
// .get(config.API.organizationPublishGet)
// .then((res)=>{
props.close?.()
// })
// .catch((e)=>{
// messageError($q,e)
// })
// .finally(()=>{
// hideLoader()
// })
},'ยืนยันการเผยเเพร่ข้อมูล','ต้องการยืนยันการเผยเเพร่ข้อมูลนี้ใช่หรือไม่?')
}
watch(
() => props.modal,
() => {
@ -152,6 +171,8 @@ watch(
</q-card-section>
<q-separator />
<q-card-actions align="right" class="bg-white text-teal">
<q-btn :label="`เผยแพร่ข้อมูล`" color="indigo-9" @click="onClickPublish()"/>
<q-space/>
<q-btn type="submit" :label="`บันทึก`" color="public" />
</q-card-actions>
</form>