Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 修复后台管理团队禁用 #1028

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Orgs = () => {

/** 删除团队操作 */
const handleDeleteOrg = () => {
putOrgStatus(curOrg.org_sid, { status: OrgStatusEnum.INACTIVE }).then(() => {
putOrgStatus(curOrg.org_sid, { status: OrgStatusEnum.FORBIDEN }).then(() => {
MessagePlugin.success(t('已禁用团队'));
reload();
setDeleteVisible(false);
Expand Down
Binary file modified web/tca-deploy-source/build_zip/tca-manage.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions web/tca-deploy-source/conf/configs.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
"prefix": [
"/static/tca-manage/"
],
"commitId": "6154d99d26c5c11c06ff08a1136d0ffa8e9b992e",
"commitId": "26c27872fb3a0336fb563d758c91e8d4f262f352",
"match": "^/manage",
"js": [
"/static/tca-manage/runtime~tca-manage-698b71eb.js",
"/static/tca-manage/runtime~tca-manage-258a6221.js",
"/static/tca-manage/vendors~tca-manage-6bc9760a.js",
"/static/tca-manage/tca-manage-8e14bec4.js"
],
Expand Down
Loading