|
|
|
@ -3,7 +3,13 @@ import store from "@/store";
|
|
|
|
|
export function filterDict(type, value, isTown = false) {
|
|
|
|
|
if (!value) return;
|
|
|
|
|
if (isTown) {
|
|
|
|
|
return filterTown(value);
|
|
|
|
|
let ids = JSON.parse(value);
|
|
|
|
|
if (Array.isArray(ids)) {
|
|
|
|
|
return filterTown(ids);
|
|
|
|
|
} else {
|
|
|
|
|
// return filterTowns(ids);
|
|
|
|
|
return filterTown([ids]);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const dict = store.getters.dictObject;
|
|
|
|
|
const result = dict[type].filter((item) => item.dictValue == value);
|
|
|
|
@ -15,18 +21,17 @@ export function filterDict(type, value, isTown = false) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// export function filterTown(id) {
|
|
|
|
|
// const townList = store.state.dict.townList
|
|
|
|
|
// const result = townList.filter((item) => item.value == id)
|
|
|
|
|
// export function filterTowns(id) {
|
|
|
|
|
// const townList = store.state.dict.townList2;
|
|
|
|
|
// const result = townList.filter((item) => item.value == id);
|
|
|
|
|
// if (result.length > 0) {
|
|
|
|
|
// return result[0].label
|
|
|
|
|
// return result[0].label;
|
|
|
|
|
// } else {
|
|
|
|
|
// return '未匹配到'
|
|
|
|
|
// return "未匹配到";
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
function filterTown(ids) {
|
|
|
|
|
ids = JSON.parse(ids);
|
|
|
|
|
if (ids && Array.isArray(ids)) {
|
|
|
|
|
let data = store.state.dict.townList;
|
|
|
|
|
const targetIds = ids;
|
|
|
|
|