Merge branch 'nice' into develop
This commit is contained in:
commit
cbb10a4f7d
4 changed files with 11 additions and 9 deletions
|
|
@ -82,6 +82,9 @@ const columns = ref<QTableProps["columns"]>([
|
|||
label: "ตำแหน่งเลขที่",
|
||||
sortable: true,
|
||||
field: "posMasterNo",
|
||||
format(val, row) {
|
||||
return `${row.orgShortname} ${row.posMasterNo}`;
|
||||
},
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -162,9 +162,7 @@ async function copyLink(name: string) {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* function เรียกข้อมูลวันที่ประกาศ
|
||||
*/
|
||||
/** function เรียกข้อมูลวันที่ประกาศ */
|
||||
async function getDate() {
|
||||
showLoader();
|
||||
await http
|
||||
|
|
@ -185,9 +183,8 @@ async function getDate() {
|
|||
}
|
||||
|
||||
const download10Url = ref<string>("");
|
||||
/**
|
||||
* function เช็คไฟล์อัปโหลด
|
||||
*/
|
||||
|
||||
/** function เช็คไฟล์อัปโหลด*/
|
||||
async function checkDocResult() {
|
||||
showLoader();
|
||||
await http
|
||||
|
|
@ -297,7 +294,7 @@ onMounted(async () => {
|
|||
>
|
||||
<div>บันทึกแจ้งผลการประกาศคัดเลือก</div>
|
||||
<q-space />
|
||||
<div>
|
||||
<div v-if="download10Url">
|
||||
<q-btn
|
||||
:href="download10Url"
|
||||
target="_blank"
|
||||
|
|
|
|||
|
|
@ -167,6 +167,7 @@ function onSearch() {
|
|||
watchEffect(() => {
|
||||
if (props.Modal === true) {
|
||||
selected.value = props.selectedRow;
|
||||
filterKeyword2.value = "";
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -201,7 +202,7 @@ watch(
|
|||
outlined
|
||||
dense
|
||||
class="col-12 q-mb-sm"
|
||||
:model-value="filterKeyword2"
|
||||
v-model="filterKeyword2"
|
||||
placeholder="ค้นหารายชื่อ"
|
||||
style="max-width: 100%"
|
||||
@keydown.enter="onSearch"
|
||||
|
|
|
|||
|
|
@ -167,6 +167,7 @@ function onSearch() {
|
|||
watchEffect(() => {
|
||||
if (props.Modal === true) {
|
||||
selected.value = props.selectedRow;
|
||||
filterKeyword.value = "";
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -201,7 +202,7 @@ watch(
|
|||
outlined
|
||||
dense
|
||||
class="col-12 q-mb-sm"
|
||||
:model-value="filterKeyword"
|
||||
v-model="filterKeyword"
|
||||
placeholder="ค้นหารายการประชุม"
|
||||
style="max-width: 100%"
|
||||
@keydown.enter="onSearch"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue