diff --git a/src/utils/dict.ts b/src/utils/dict.ts new file mode 100644 index 0000000..40961f2 --- /dev/null +++ b/src/utils/dict.ts @@ -0,0 +1,3 @@ + +// 合同类型 +export const dictContractTypeList: Array = [23,24,25] \ No newline at end of file diff --git a/src/views/company/index.vue b/src/views/company/index.vue index 9ce5186..0788571 100644 --- a/src/views/company/index.vue +++ b/src/views/company/index.vue @@ -274,10 +274,10 @@ - + @@ -291,15 +291,11 @@ - + @@ -397,6 +393,7 @@ import { timeFormat } from "@/utils/util"; import feedback from "@/utils/feedback"; import { dictDataLists } from "@/api/setting/dict"; import { getRoutePath } from "@/router"; +import { dictContractTypeList } from "@/utils/dict.ts"; import DialogIndex from "./dialog_index.vue"; const userStore = useUserStore(); @@ -441,7 +438,9 @@ const getDetails = async (id: any) => { company_list.value = res; }); dictDataLists({ type_id: 7 }).then((res) => { - contract_type.value = res.lists; + contract_type.value = res.lists.filter((item: any) => { + return dictContractTypeList.find((t: String | Number) => t == item.id); + }); }); contractFormData.value.party_b = data.id; contractFormData.value.party_b_name = data.company_name;