Sfoglia il codice sorgente

Merge branch 'develop'

whh 9 mesi fa
parent
commit
71237a3376
5 ha cambiato i file con 8 aggiunte e 2 eliminazioni
  1. 1 1
      .env.production
  2. 4 0
      .env.test
  3. 1 0
      package.json
  4. 2 0
      src/components/Chat/ChatText.vue
  5. 0 1
      src/views/analyse/ForecastView.vue

+ 1 - 1
.env.production

@@ -1,4 +1,4 @@
 # 请求地址
-VITE_BASE_URL=http://10.0.0.28:8080
+VITE_BASE_URL=http://192.168.9.54:8080
 # 请求前缀
 VITE_BASE_PREFIX='' 

+ 4 - 0
.env.test

@@ -0,0 +1,4 @@
+# 请求地址
+VITE_BASE_URL=http://10.0.0.28:8080
+# 请求前缀
+VITE_BASE_PREFIX='' 

+ 1 - 0
package.json

@@ -6,6 +6,7 @@
   "scripts": {
     "dev": "vite",
     "build": "vite build",
+    "build:test": "vite build  --mode test",
     "build-lint": "run-p type-check \"build-only {@}\" --",
     "preview": "vite preview",
     "build-only": "vite build",

+ 2 - 0
src/components/Chat/ChatText.vue

@@ -66,6 +66,8 @@ const text = computed(() => {
 }
 
 .markdown-body {
+  word-break: break-word;
+
   .custom-table-wrapper {
     width: 710px;
     padding: 10px 10px 4px 10px;

+ 0 - 1
src/views/analyse/ForecastView.vue

@@ -68,7 +68,6 @@ const createLineChat = (data) => {
 
   const seriesPast = replaceArray([...yData], yData.length - 3, 3, null);
   const seriesFuture = replaceArray([...yData], 0, 5, null);
-  console.log( {xAxisData, seriesList: [seriesPast, seriesFuture]} );
   const option = getAreaOptions({xAxisData, seriesList: [seriesPast, seriesFuture]});
   chart.setOption(option);
 }