no message
This commit is contained in:
parent
b21a4f53ac
commit
511d17db80
3 changed files with 6 additions and 10 deletions
|
|
@ -267,6 +267,8 @@ onMounted(async () => {
|
|||
option-value="id"
|
||||
option-label="year"
|
||||
lazy-rules
|
||||
hide-selected
|
||||
fill-input
|
||||
use-input
|
||||
hide-bottom-space
|
||||
:readonly="false"
|
||||
|
|
|
|||
|
|
@ -215,13 +215,7 @@ onMounted(async () => {
|
|||
placeholder="ค้นหา"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<q-icon v-if="filterKeyword == ''" name="search" />
|
||||
<q-icon
|
||||
v-if="filterKeyword !== ''"
|
||||
name="clear"
|
||||
class="cursor-pointer"
|
||||
@click="resetFilter"
|
||||
/>
|
||||
<q-icon name="search" />
|
||||
</template>
|
||||
</q-input>
|
||||
|
||||
|
|
@ -244,7 +238,7 @@ onMounted(async () => {
|
|||
ref="table"
|
||||
:columns="columns"
|
||||
:rows="rows"
|
||||
:filter="filterKeyword"
|
||||
:filter="filterKeyword.trim()"
|
||||
row-key="Order"
|
||||
flat
|
||||
bordered
|
||||
|
|
|
|||
|
|
@ -228,7 +228,7 @@ function updateValue() {
|
|||
function getPerson() {
|
||||
const body = {
|
||||
rootId: rootId.value ? rootId.value : "",
|
||||
type: group.value,
|
||||
type: props.systemName == "SALARY_EMP" ? "" : group.value,
|
||||
};
|
||||
|
||||
const pathAPI =
|
||||
|
|
@ -474,7 +474,7 @@ watch(modal, async () => {
|
|||
</div>
|
||||
|
||||
<!-- กลุ่ม -->
|
||||
<div class="col-12">
|
||||
<div class="col-12" v-if="props.systemName !== 'SALARY_EMP'">
|
||||
<q-select
|
||||
v-model="group"
|
||||
:label="`${'กลุ่ม'}`"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue