โครงสร้าง => แสดง จัดลำดับตำแหน่ง
This commit is contained in:
parent
8a7434ea45
commit
f2b173c708
2 changed files with 10 additions and 2 deletions
|
|
@ -81,7 +81,11 @@ function getData() {
|
||||||
const dataList = res.data.result.data;
|
const dataList = res.data.result.data;
|
||||||
const dataMap = dataList.map((item: any) => ({
|
const dataMap = dataList.map((item: any) => ({
|
||||||
id: item.id,
|
id: item.id,
|
||||||
name: `${item.orgShortname}${item.posMasterNoPrefix}${item.posMasterNo}${item.posMasterNoSuffix}`,
|
name: `${item.orgShortname}${
|
||||||
|
item.posMasterNoPrefix ? item.posMasterNoPrefix : ""
|
||||||
|
}${item.posMasterNo ? item.posMasterNo : ""}${
|
||||||
|
item.posMasterNoSuffix ? item.posMasterNoSuffix : ""
|
||||||
|
}`,
|
||||||
posMasterNoPrefix: item.posMasterNoPrefix,
|
posMasterNoPrefix: item.posMasterNoPrefix,
|
||||||
posMasterNo: item.posMasterNo,
|
posMasterNo: item.posMasterNo,
|
||||||
posMasterNoSuffix: item.posMasterNoSuffix,
|
posMasterNoSuffix: item.posMasterNoSuffix,
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,11 @@ function getData() {
|
||||||
const dataList = res.data.result.data;
|
const dataList = res.data.result.data;
|
||||||
const dataMap = dataList.map((item: any) => ({
|
const dataMap = dataList.map((item: any) => ({
|
||||||
id: item.id,
|
id: item.id,
|
||||||
name: `${item.orgShortname}${item.posMasterNoPrefix}${item.posMasterNo}${item.posMasterNoSuffix}`,
|
name: `${item.orgShortname}${
|
||||||
|
item.posMasterNoPrefix ? item.posMasterNoPrefix : ""
|
||||||
|
}${item.posMasterNo ? item.posMasterNo : ""}${
|
||||||
|
item.posMasterNoSuffix ? item.posMasterNoSuffix : ""
|
||||||
|
}`,
|
||||||
posMasterNoPrefix: item.posMasterNoPrefix,
|
posMasterNoPrefix: item.posMasterNoPrefix,
|
||||||
posMasterNo: item.posMasterNo,
|
posMasterNo: item.posMasterNo,
|
||||||
posMasterNoSuffix: item.posMasterNoSuffix,
|
posMasterNoSuffix: item.posMasterNoSuffix,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue