fix: 更新店铺管理页面:增加删除功能,修改必填项增加激活码和手机号为必填

This commit is contained in:
2025-03-17 14:17:35 +08:00
parent 399cbcfc3f
commit c24fae21c4
3 changed files with 46 additions and 10 deletions

View File

@@ -30,7 +30,14 @@ const ShopApi = {
method: "get",
params
});
}
},
delete(params: any) {
return request({
url: `${baseURL}`,
method: "delete",
params,
});
},
};
export default ShopApi;