!296 add 新增租户套餐同步功能

* update 修改按钮简化为同步套餐
* update 修改同步租户套餐接口message错误描述
* update 修改同步租户套餐权限字符
* update 修改状态修改权限字符
* add 租户管理新增租户套餐同步功能
This commit is contained in:
Yjoioooo
2023-03-06 11:07:00 +00:00
committed by MichelleChung
parent b4645daf2a
commit 0fdd97203f
5 changed files with 91 additions and 3 deletions

View File

@@ -73,3 +73,16 @@ export function dynamicClear() {
})
}
// 同步租户套餐
export function syncTenantPackage(tenantId, packageId) {
const data = {
tenantId,
packageId
}
return request({
url: '/system/tenant/syncTenantPackage',
method: 'get',
params: data
})
}