no message
This commit is contained in:
parent
fcaf891197
commit
f70afa2fca
2 changed files with 4 additions and 4 deletions
|
|
@ -16,7 +16,7 @@ import PopupPersonal from "@/components/Dialogs/PopupPersonalNew.vue";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
|
|
||||||
/** use*/
|
/** use*/
|
||||||
const { findOrgNameOld, findOrgName } = useCounterMixin();
|
const { findOrgNameOldHtml, findOrgNameHtml } = useCounterMixin();
|
||||||
|
|
||||||
/** propsDataProfile*/
|
/** propsDataProfile*/
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
|
|
@ -57,7 +57,7 @@ async function fetchDataProfile(data: DataProfile) {
|
||||||
} else if (data.posLevelNameOld) {
|
} else if (data.posLevelNameOld) {
|
||||||
profile.positionLevel = `(${data.posLevelNameOld})`;
|
profile.positionLevel = `(${data.posLevelNameOld})`;
|
||||||
} else profile.positionLevel = "-";
|
} else profile.positionLevel = "-";
|
||||||
profile.organization = findOrgNameOld(data);
|
profile.organization = findOrgNameOldHtml(data);
|
||||||
} else {
|
} else {
|
||||||
profile.position =
|
profile.position =
|
||||||
data.position == "" || data.position == null ? "-" : data.position;
|
data.position == "" || data.position == null ? "-" : data.position;
|
||||||
|
|
@ -68,7 +68,7 @@ async function fetchDataProfile(data: DataProfile) {
|
||||||
} else if (data.posLevelName) {
|
} else if (data.posLevelName) {
|
||||||
profile.positionLevel = `(${data.posLevelName})`;
|
profile.positionLevel = `(${data.posLevelName})`;
|
||||||
} else profile.positionLevel = "-";
|
} else profile.positionLevel = "-";
|
||||||
profile.organization = findOrgName(data);
|
profile.organization = findOrgNameHtml(data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -146,7 +146,7 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
{
|
{
|
||||||
name: "oc",
|
name: "oc",
|
||||||
align: "left",
|
align: "left",
|
||||||
label: "สังกัด",
|
label: "หน่วยงาน",
|
||||||
sortable: true,
|
sortable: true,
|
||||||
field: "oc",
|
field: "oc",
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue