closed #14
This commit is contained in:
parent
c1e485519a
commit
f00e98766c
2 changed files with 8 additions and 7 deletions
|
|
@ -29,8 +29,8 @@ const modalDateTime = ref<boolean>(false); // ตั้งเวลาเผย
|
|||
|
||||
/** สถานะ*/
|
||||
const isStatusData = ref<boolean>(false); // แสดงตั้งเวลาเผยแพร่
|
||||
const ishasActive = ref<boolean>(false); // สถานะการทำงาน
|
||||
const ishasDraft = ref<boolean>(false); // สถานะแบบร่าง
|
||||
// const ishasActive = ref<boolean>(false); // สถานะการทำงาน
|
||||
// const ishasDraft = ref<boolean>(false); // สถานะแบบร่าง
|
||||
/** List เพิ่มโครงสร้าง*/
|
||||
const itemStructure = ref<DataOption[]>([
|
||||
{
|
||||
|
|
@ -73,10 +73,10 @@ async function fetchOrganizationActive() {
|
|||
isStatusData.value = true;
|
||||
if (isStatusData.value) {
|
||||
if (data.activeName === null) {
|
||||
ishasActive.value = true;
|
||||
// ishasActive.value = true;
|
||||
store.typeOrganizational = "draft";
|
||||
} else if (data.draftName === null) {
|
||||
ishasDraft.value = true;
|
||||
// ishasDraft.value = true;
|
||||
store.typeOrganizational = "current";
|
||||
}
|
||||
}
|
||||
|
|
@ -225,6 +225,7 @@ onMounted(async () => {
|
|||
:outline="store.typeOrganizational === 'current' ? false : true"
|
||||
color="blue"
|
||||
label="ปัจจุบัน"
|
||||
:disable="store.activeId == '' || store.activeId == null"
|
||||
@click="
|
||||
(store.typeOrganizational = 'current'),
|
||||
(labelHistory = 'ประวัติโครงสร้าง')
|
||||
|
|
@ -237,11 +238,11 @@ onMounted(async () => {
|
|||
:outline="store.typeOrganizational === 'draft' ? false : true"
|
||||
color="blue"
|
||||
label="แบบร่าง"
|
||||
:disable="store.draftId == '' || store.draftId == null"
|
||||
@click="
|
||||
(store.typeOrganizational = 'draft'),
|
||||
(labelHistory = 'ประวัติโครงสร้าง')
|
||||
"
|
||||
:disable="ishasDraft"
|
||||
/>
|
||||
<q-btn-dropdown
|
||||
v-if="itemHistory.length !== 0"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue