update: 新增供应增加判断是否获取详情
This commit is contained in:
parent
5f07e0d5e8
commit
4dbcdab87b
|
@ -320,7 +320,7 @@ const startSave = (v: boolean) => {
|
|||
delta: 1,
|
||||
success: (res) => {
|
||||
uni.$emit("pricingParams", {
|
||||
name: model1.formData.name
|
||||
name: model1.formData.name,
|
||||
});
|
||||
},
|
||||
});
|
||||
|
@ -366,6 +366,7 @@ onMounted(() => {
|
|||
onLoad((option: any) => {
|
||||
// 接收传递的标题参数
|
||||
const title = option.title;
|
||||
if (option.item) {
|
||||
SupplierApi.getSupplierUserList({ id: option.item }).then((res: any) => {
|
||||
if (res.code === 200) {
|
||||
if (res.data.length > 0) {
|
||||
|
@ -378,6 +379,8 @@ onLoad((option: any) => {
|
|||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 新增供应商卡号必填 编辑供应商卡号非必填
|
||||
if (!option.item) {
|
||||
formAttrList[1].required = true;
|
||||
|
|
|
@ -118,7 +118,6 @@ const update = (item: any) => {
|
|||
};
|
||||
|
||||
const edit = (item: any) => {
|
||||
console.log(JSON.stringify(item))
|
||||
uni.navigateTo({
|
||||
url:
|
||||
"/pagesApp/components/addSupplier?title=编辑供应商&item=" +
|
||||
|
|
Loading…
Reference in New Issue