fix bug
This commit is contained in:
parent
f212dce287
commit
1732209a2f
16 changed files with 34 additions and 28 deletions
|
|
@ -25,6 +25,7 @@ const { hideLoader, messageError } = useCounterMixin();
|
|||
const numOfPages = ref<number>(0);
|
||||
const page = ref<number>(1);
|
||||
const pdfSrc = ref<any>();
|
||||
const splitterModel = ref(14);
|
||||
|
||||
/** prosp*/
|
||||
const isLoadPDF = ref<boolean>(false);
|
||||
|
|
@ -225,6 +226,8 @@ watch(
|
|||
<div class="col-12">
|
||||
<q-card>
|
||||
<q-splitter
|
||||
disable
|
||||
v-model="splitterModel"
|
||||
horizontal
|
||||
style="
|
||||
height: 65vh;
|
||||
|
|
|
|||
|
|
@ -420,6 +420,8 @@ onMounted(async () => {
|
|||
</div>
|
||||
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12 col-xs-12 flex">
|
||||
<q-splitter
|
||||
v-model="splitterModel"
|
||||
disable
|
||||
horizontal
|
||||
style="
|
||||
height: 75vh;
|
||||
|
|
|
|||
|
|
@ -21,8 +21,6 @@ const { fetchStructureTree } = useStructureTree();
|
|||
const { messageError } = useCounterMixin();
|
||||
|
||||
const loadingBtn = ref<boolean>(false);
|
||||
const isReport = ref<boolean>(false);
|
||||
const isLoadPDF = ref<boolean>(false);
|
||||
const expandedModal = ref<boolean>(false);
|
||||
const org = ref<string>("");
|
||||
|
||||
|
|
@ -39,6 +37,7 @@ const detailReport = ref<any>();
|
|||
const numOfPages = ref<number>(0);
|
||||
const page = ref<number>(1);
|
||||
const pdfSrc = ref<any>();
|
||||
const splitterModel = ref(14);
|
||||
|
||||
/** ฟังก์ชันเรียกข้อมูลโครงสร้างหน่วยงาน*/
|
||||
async function fetchDataTree() {
|
||||
|
|
@ -368,6 +367,8 @@ onMounted(() => {
|
|||
</div>
|
||||
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12 col-xs-12 flex">
|
||||
<q-splitter
|
||||
v-model="splitterModel"
|
||||
disable
|
||||
horizontal
|
||||
style="
|
||||
height: 75vh;
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@ const nodeName = ref<string>("");
|
|||
const node = ref<DataStructureTree[]>([]);
|
||||
|
||||
const detailReport = ref<any>();
|
||||
const splitterModel = ref(14);
|
||||
|
||||
/** ฟังก์ชันเรียกข้อมูลรอบการขึ้นเงินเดือน*/
|
||||
async function fetchDataRound() {
|
||||
|
|
@ -590,6 +591,8 @@ onMounted(() => {
|
|||
</div>
|
||||
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12 col-xs-12 flex">
|
||||
<q-splitter
|
||||
v-model="splitterModel"
|
||||
disable
|
||||
horizontal
|
||||
style="
|
||||
height: 75vh;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue