|
@@ -412,7 +412,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
const chatId = this.getUuid();
|
|
|
- const wsUrl = `${"http://192.168.66.187:8082"}/chatbot/multimodal`; //process.env.VUE_APP_BASE_AI_API
|
|
|
+ const wsUrl = `${process.env.VUE_APP_BASE_AI_API}/chatbot/multimodal`; //process.env.VUE_APP_BASE_AI_API
|
|
|
let message = this.userInput.trim();
|
|
|
|
|
|
const imageUrls = this.uploadFiles
|
|
@@ -515,7 +515,7 @@ export default {
|
|
|
console.log("Sending to backend:", JSON.stringify(idObject));
|
|
|
|
|
|
const response = await axios.post(
|
|
|
- `${"http://192.168.66.187:8082"}/milvus/getMinioURl`,
|
|
|
+ `${process.env.VUE_APP_BASE_AI_API}/milvus/getMinioURl`,
|
|
|
idObject,
|
|
|
{
|
|
|
headers: {
|
|
@@ -1009,7 +1009,7 @@ export default {
|
|
|
left: 50%;
|
|
|
transform: translateX(-50%);
|
|
|
width: 90%; /* 设置宽度为弹窗宽度的90% */
|
|
|
- max-width: 800px; /* 设置最大宽度 */
|
|
|
+ max-width: 1170px; /* 设置最大宽度 */
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: flex-start;
|
|
@@ -1077,15 +1077,14 @@ textarea {
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
gap: 10px;
|
|
|
- margin-bottom: 10px;
|
|
|
max-height: 100px;
|
|
|
overflow-y: auto;
|
|
|
}
|
|
|
|
|
|
.preview-item {
|
|
|
position: relative;
|
|
|
- width: 80px;
|
|
|
- height: 80px;
|
|
|
+ width: 60px;
|
|
|
+ height: 20px;
|
|
|
border-radius: 4px;
|
|
|
overflow: hidden;
|
|
|
border: 1px solid #e0e0e0;
|