diff --git a/src/pagesReceive/form/pricingForm.vue b/src/pagesReceive/form/pricingForm.vue index 1512665..7d9a842 100644 --- a/src/pagesReceive/form/pricingForm.vue +++ b/src/pagesReceive/form/pricingForm.vue @@ -82,6 +82,7 @@ @select="(v: any) => handleSelect(item.childKey, v)" @close="contrlModalParams[item.childKey].isShow = false" :closeOnClickAction="true" + :safeAreaInsetBottom="true" > @@ -97,6 +98,7 @@ import { ReceiveProductApi, ReceiveApi, PictureApi, + SupplierApi, } from "@/services/index"; import _ from "underscore"; import { onLoad } from "@dcloudio/uni-app"; @@ -281,7 +283,7 @@ const formAttrList = reactive([ }, ]); -ProfileApi.getUserList({ userType: 2 }).then((res) => { +SupplierApi.getSupplierUserList({}).then((res) => { if (res.code === 200) { contrlModalParams.userSelect.list = res.data; }