供应商列表

This commit is contained in:
duan
2024-10-10 15:22:36 +08:00
parent 37ceb6ef53
commit 16508515c4
12 changed files with 1540 additions and 11 deletions

View File

@@ -32,3 +32,21 @@ H5, 不影响。
* 证书私钥密码
* 小程序AppID
* 高德Key
### 代码
```javascript
export function tbShopPurveyorTransact(params) {
return request({
url: '/api/tbShopPurveyorTransact',
method: 'get',
params
})
}
// 删除\编辑、添加
export function tbShopPurveyordelete(data) {
return request({
url: `/api/tbShopPurveyor`,
method: "delete-post-put",
data
});
}
```