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";
|
||||
|
||||
/** use*/
|
||||
const { findOrgNameOld, findOrgName } = useCounterMixin();
|
||||
const { findOrgNameOldHtml, findOrgNameHtml } = useCounterMixin();
|
||||
|
||||
/** propsDataProfile*/
|
||||
const props = defineProps({
|
||||
|
|
@ -57,7 +57,7 @@ async function fetchDataProfile(data: DataProfile) {
|
|||
} else if (data.posLevelNameOld) {
|
||||
profile.positionLevel = `(${data.posLevelNameOld})`;
|
||||
} else profile.positionLevel = "-";
|
||||
profile.organization = findOrgNameOld(data);
|
||||
profile.organization = findOrgNameOldHtml(data);
|
||||
} else {
|
||||
profile.position =
|
||||
data.position == "" || data.position == null ? "-" : data.position;
|
||||
|
|
@ -68,7 +68,7 @@ async function fetchDataProfile(data: DataProfile) {
|
|||
} else if (data.posLevelName) {
|
||||
profile.positionLevel = `(${data.posLevelName})`;
|
||||
} else profile.positionLevel = "-";
|
||||
profile.organization = findOrgName(data);
|
||||
profile.organization = findOrgNameHtml(data);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "oc",
|
||||
align: "left",
|
||||
label: "สังกัด",
|
||||
label: "หน่วยงาน",
|
||||
sortable: true,
|
||||
field: "oc",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue