Ver código fonte

修改按钮底色

yangg 9 meses atrás
pai
commit
0e6d6b5656

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/index.html


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/app.214de894.css


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/chunk-33b89c2e.d5ab40f5.css


+ 0 - 0
dist/static/css/chunk-0ea2fe8d.775a21e3.css → dist/static/css/chunk-4f56be99.775a21e3.css


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/css/chunk-50f2d6b3.2bce171b.css


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.3ac2a961.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.7ebb5341.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/chunk-33b89c2e.1445c296.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/chunk-4f56be99.274665eb.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/chunk-50f2d6b3.9d58dc5e.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/chunk-5a48219c.8dcc0a17.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/chunk-76bddf0f.e6487fc2.js


BIN
src/assets/images/aiBgimg.jpg


+ 3 - 3
src/components/webAi/css/ChatBox.css

@@ -49,7 +49,7 @@
     flex-direction: column;
 
     align-items: flex-start; /* 这将确保所有子元素对齐到容器的顶部 */
-    margin-bottom: 10px;
+    /* margin-bottom: 10px; */
 }
 
 .avatar {
@@ -95,7 +95,7 @@
 }
 .name{
     margin-left: 8px;
-    margin-bottom: 5px;
+   /*  margin-bottom: 5px; */
 }
 
 .message-content {
@@ -106,7 +106,7 @@
     padding-bottom: 0px; /* 上下左右的内边距 */
     max-width: calc(90% - 10px); /* 计算头像和间距 */
     border-radius: 7px; /* 边框圆角 */
-    margin-bottom: 10px; /* 和下一条消息之间的间距 */
+   /*  margin-bottom: 10px; */ /* 和下一条消息之间的间距 */
     /* 消息内容样式 */
     display: flex;
     flex-direction: column; /* 排列文本 */

+ 1 - 1
src/components/webAi/index.vue

@@ -19,7 +19,7 @@
             <div class="name">
               <span class="sender-name" style="color: #666666;" v-if="message.user === 'user'">你</span>
               <span class="sender-name" v-if="message.user === 'bot'"
-                >轻良AI助理</span
+                >AI助理</span
               >
             </div>
           </div>

+ 1 - 1
src/components/webAi/js/ChatBox.js

@@ -15,7 +15,7 @@ export default {
         {
           user: "bot",
           messageType: "TEXT",
-          message: "欢迎使用轻良智能AI助理",
+          message: "欢迎使用智能AI助理",
           html: "",
           time: "",
           done: true,

+ 1 - 1
src/views/knowledgeMenu/category/knowledgeSet.vue

@@ -112,7 +112,7 @@
           </el-table-column>
           <el-table-column label="操作" align="center" width="330">
             <template #default="scope">
-              <div class="btns">
+              <div >
                 <el-tooltip
                   class="item"
                   effect="dark"

+ 10 - 4
src/views/knowledgeMenu/knowledgeList.vue

@@ -51,7 +51,10 @@
                     />
                   </div>
                   <el-popover placement="bottom" trigger="hover">
-                    <el-button type="danger" icon="el-icon-delete" @click="delect(item)"
+                    <el-button
+                      type="danger"
+                      icon="el-icon-delete"
+                      @click="delect(item)"
                       >删除</el-button
                     >
                     <div class="header_right" slot="reference">
@@ -237,9 +240,12 @@ export default {
 };
 </script>
   <style lang="scss" scoped>
-  ::v-deep .el-card{
-    border-radius: 10px
-  }
+::v-deep .el-card {
+  border-radius: 10px;
+}
+::v-deep .el-col-offset-1 {
+  margin-left: 2%;
+}
 @import "./index.scss";
 </style>
   

+ 3 - 2
src/views/login/index.scss

@@ -46,8 +46,9 @@ $light_gray:#eee;
 
 .login-container {
  
-  background-image: url("../../assets/images/微信图片_20240924181537.png");
-  background-size: contain;
+  background-image: url("../../assets/images/aiBgimg.jpg");
+  background-size: 60% 100%;
+  background-repeat: no-repeat;
   min-height: 100%;
   width: 100%;
  /*  background-color: $bg; */

+ 5 - 5
src/views/login/index.vue

@@ -68,7 +68,7 @@
           </div>
           <el-button
             :loading="loading"
-            class="btns"
+            class="login_btns"
             type="primary"
             style="width: 100%; margin-bottom: 30px"
             @click="handleLogin"
@@ -189,7 +189,7 @@
           <el-button
             :loading="loading"
             type="primary"
-            class="btns"
+            class="login_btns"
             style="width: 100%; margin-bottom: 30px"
             @click="retPass"
             >重置密码</el-button
@@ -595,7 +595,7 @@ export default {
 /* 修复input 背景不协调 和光标变色 */
 /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
 @import "./index.scss";
-.btns {
+.login_btns {
   width: 100%;
   font-size: 16px;
   display: flex;
@@ -612,10 +612,10 @@ export default {
   border: none;
   box-shadow: none;
 }
-.btns:hover {
+.login_btns:hover {
   background-image: linear-gradient(to left, #3b82f6, #6366f1) !important;
 }
-.btns:focus {
+.login_btns:focus {
   border-color: #3b82f6 !important;
   background-image: linear-gradient(to left, #3b82f6, #6366f1) !important;
 }

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff