fix:bug showload profile
This commit is contained in:
parent
91c870955b
commit
b0b16131ab
4 changed files with 51 additions and 2 deletions
|
|
@ -26,6 +26,7 @@ export default {
|
||||||
placementPass: () => `${placement}/pass`,
|
placementPass: () => `${placement}/pass`,
|
||||||
placementDefermentInfo: (id: string) => `${placement}/pass/deferment/${id}`,
|
placementDefermentInfo: (id: string) => `${placement}/pass/deferment/${id}`,
|
||||||
placementDisclaimInfo: (id: string) => `${placement}/pass/disclaim/${id}`,
|
placementDisclaimInfo: (id: string) => `${placement}/pass/disclaim/${id}`,
|
||||||
|
placementUpdatePass: `${placement}/pass/update-status`,
|
||||||
|
|
||||||
//personal
|
//personal
|
||||||
placementPersonalId: (personalId: string) =>
|
placementPersonalId: (personalId: string) =>
|
||||||
|
|
|
||||||
|
|
@ -553,7 +553,6 @@ onMounted(async () => {
|
||||||
</q-form>
|
</q-form>
|
||||||
|
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
{{ typeEmp }}
|
|
||||||
<!-- v-if="typeEmp != 'employee'" -->
|
<!-- v-if="typeEmp != 'employee'" -->
|
||||||
<Workflow
|
<Workflow
|
||||||
v-model:is-check-data="isCheckData"
|
v-model:is-check-data="isCheckData"
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,7 @@ import type {
|
||||||
DataOptionSys,
|
DataOptionSys,
|
||||||
} from "@/modules/04_registryPerson/interface/index/Main";
|
} from "@/modules/04_registryPerson/interface/index/Main";
|
||||||
import type { ResponseObject } from "@/modules/04_registryPerson/interface/response/Profile";
|
import type { ResponseObject } from "@/modules/04_registryPerson/interface/response/Profile";
|
||||||
|
import { s } from "@fullcalendar/core/internal-common";
|
||||||
|
|
||||||
/** importComponents*/
|
/** importComponents*/
|
||||||
const CardNotPermission = defineAsyncComponent(
|
const CardNotPermission = defineAsyncComponent(
|
||||||
|
|
@ -178,6 +179,9 @@ function imageActive(n: any) {
|
||||||
* @param file ไฟล์รูป
|
* @param file ไฟล์รูป
|
||||||
*/
|
*/
|
||||||
function resizeImage(file: File): Promise<File> {
|
function resizeImage(file: File): Promise<File> {
|
||||||
|
if (!file) {
|
||||||
|
return Promise.reject("No file provided");
|
||||||
|
}
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const img = new Image();
|
const img = new Image();
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
|
|
@ -240,9 +244,9 @@ const newProfileFile = ref<any>(null);
|
||||||
|
|
||||||
/** ฟังก์ชันอัปโหลด*/
|
/** ฟังก์ชันอัปโหลด*/
|
||||||
async function uploadImg() {
|
async function uploadImg() {
|
||||||
showLoader();
|
|
||||||
newProfileFile.value = await resizeImage(profileFile.value);
|
newProfileFile.value = await resizeImage(profileFile.value);
|
||||||
closeImage();
|
closeImage();
|
||||||
|
showLoader();
|
||||||
await http
|
await http
|
||||||
.post(config.API.orgProfileAvatarbyType(empType.value), {
|
.post(config.API.orgProfileAvatarbyType(empType.value), {
|
||||||
profileId: empType.value == "" ? profileId.value : undefined,
|
profileId: empType.value == "" ? profileId.value : undefined,
|
||||||
|
|
|
||||||
|
|
@ -920,6 +920,28 @@ function onRefCommand(data: any) {
|
||||||
// commandId.value = 'bdf9da91-ba45-497a-a2b7-cc49e2446d97'; //จำลอง
|
// commandId.value = 'bdf9da91-ba45-497a-a2b7-cc49e2446d97'; //จำลอง
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onUpdateStatus(id: string) {
|
||||||
|
dialogConfirm(
|
||||||
|
$q,
|
||||||
|
async () => {
|
||||||
|
showLoader();
|
||||||
|
try {
|
||||||
|
await http.post(config.API.placementUpdatePass, {
|
||||||
|
personalId: id,
|
||||||
|
});
|
||||||
|
await success($q, "บันทึกสำเร็จ");
|
||||||
|
await getTable();
|
||||||
|
} catch (error) {
|
||||||
|
messageError($q, error);
|
||||||
|
} finally {
|
||||||
|
hideLoader();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ยืนยันการส่งบรรจุ",
|
||||||
|
"ต้องการยืนยันการส่งบรรจุนี้ใช่หรือไม่ ?"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await getWorkFlow();
|
await getWorkFlow();
|
||||||
await getTable();
|
await getTable();
|
||||||
|
|
@ -982,6 +1004,7 @@ onMounted(async () => {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>รายละเอียด</q-item-section>
|
<q-item-section>รายละเอียด</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
props.row.nodeName !== null &&
|
props.row.nodeName !== null &&
|
||||||
|
|
@ -1011,6 +1034,7 @@ onMounted(async () => {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>เลือกวันรายงานตัว</q-item-section>
|
<q-item-section>เลือกวันรายงานตัว</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
roleAdmin &&
|
roleAdmin &&
|
||||||
|
|
@ -1035,6 +1059,7 @@ onMounted(async () => {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>คืนตำแหน่ง</q-item-section>
|
<q-item-section>คืนตำแหน่ง</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
props.row.bmaOfficer !== 'บุคคลภายนอก' &&
|
props.row.bmaOfficer !== 'บุคคลภายนอก' &&
|
||||||
|
|
@ -1087,6 +1112,26 @@ onMounted(async () => {
|
||||||
<q-item-section>เลือกหน่วยงานที่รับการบรรจุ</q-item-section>
|
<q-item-section>เลือกหน่วยงานที่รับการบรรจุ</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
|
<q-item
|
||||||
|
v-if="checkPermission($route)?.attrOwnership == 'OWNER'"
|
||||||
|
clickable
|
||||||
|
v-close-popup
|
||||||
|
@click="onUpdateStatus(props.row.personalId)"
|
||||||
|
>
|
||||||
|
<q-item-section
|
||||||
|
style="min-width: 0px"
|
||||||
|
avatar
|
||||||
|
class="q-py-sm"
|
||||||
|
>
|
||||||
|
<q-icon
|
||||||
|
color="primary"
|
||||||
|
size="xs"
|
||||||
|
name="mdi-account-arrow-right-outline"
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section>บรรจุแล้ว</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
|
||||||
<!-- <q-item
|
<!-- <q-item
|
||||||
v-if="
|
v-if="
|
||||||
props.row.bmaOfficer !== 'บุคคลภายนอก' &&
|
props.row.bmaOfficer !== 'บุคคลภายนอก' &&
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue