diff --git a/src/admin/ai_dialog.php b/src/admin/ai_dialog.php
index a69e5112..15114643 100644
--- a/src/admin/ai_dialog.php
+++ b/src/admin/ai_dialog.php
@@ -44,7 +44,7 @@ if (!empty($noeditor)) {
diff --git a/src/admin/sys_cloud.php b/src/admin/sys_cloud.php
deleted file mode 100644
index 9381f03b..00000000
--- a/src/admin/sys_cloud.php
+++ /dev/null
@@ -1,62 +0,0 @@
-CloudGet();
- if ($rs->code === 200) {
- echo json_encode(array(
- "code" => 0,
- "msg" => "",
- "data" => $rs->data,
- ));
- } else {
- echo json_encode(array(
- "code"=>-1,
- "msg"=>'获取配置信息失败',
- ));
- }
- exit;
-} else if ($dopost == "cloud_set"){
- $config = array(
- "aliyun_enabled" => $aliyun_enabled,
- "aliyun_access_key_id" => $aliyun_access_key_id,
- "aliyun_access_key_secret" => $aliyun_access_key_secret,
- "huaweicloud_enabled" => $huaweicloud_enabled,
- "huawei_access_key_id" => $huawei_access_key_id,
- "huawei_secret_access_key" => $huawei_secret_access_key,
- "tencent_enabled" => $tencent_enabled,
- "tencent_secret_id" => $tencent_secret_id,
- "tencent_secret_key" => $tencent_secret_key,
- );
- $rs = $client->CloudSet($config);
- if ($rs->code === 200) {
- echo json_encode(array(
- "code" => 0,
- "msg" => "",
- "data" => "ok",
- ));
- } else {
- echo json_encode(array(
- "code" => -1,
- "msg" => "设置失败,请检查服务是否正确",
- ));
- }
- exit;
-}
-if (!$client->IsEnabled()) {
- echo DedeAlert("商业扩展未启动或连接失败,请检查配置是否正确",ALERT_WARNING);
- exit();
-}
-include DedeInclude("templets/sys_cloud.htm");
-?>
\ No newline at end of file
diff --git a/src/static/web/css/admin.css b/src/static/web/css/admin.css
index 2812ad29..bb73b664 100644
--- a/src/static/web/css/admin.css
+++ b/src/static/web/css/admin.css
@@ -421,7 +421,7 @@ body.menu-show .admin-content {
border-radius:var(--b-radius)
}
.tips-box {
- margin:70px auto 0;
+ margin:1.75rem auto;
width:500px;
height:auto;
background:var(--white);
@@ -793,7 +793,7 @@ input,select,textarea,.colordlg,.pubdlg,.quickselitem .topcat,.mysource,.mywrite
td {
white-space:nowrap
}
- .install-box,.tips-box,.w-65,.w-35 {
+ .install-box,.w-65,.w-35 {
width:100%!important
}
.admin-textarea-sm,.admin-input-lg,.admin-input-md,.admin-input-sm {
@@ -828,7 +828,7 @@ input,select,textarea,.colordlg,.pubdlg,.quickselitem .topcat,.mysource,.mywrite
.pubdlg {
padding:0 0.5rem
}
- .pubdlg .card {
+ .pubdlg .card,.tips-box {
margin:0.5rem auto;
width:auto
}