Browse Source

测试内容修改

黄琪勇 1 month ago
parent
commit
fe88fa690d
3 changed files with 6 additions and 2 deletions
  1. 1 1
      .env.development
  2. 4 0
      index.html
  3. 1 1
      src/views/rhythm/rhythm.vue

+ 1 - 1
.env.development

@@ -1,2 +1,2 @@
 
-VITE_APP_URL = "http://localhost:9525/rhythmApi"
+VITE_APP_URL = "http://192.168.0.140:9525/rhythmApi"

+ 4 - 0
index.html

@@ -75,4 +75,8 @@
       </div>
       <script type="module" src="/src/main.ts"></script>
    </body>
+   <!-- <script src="https://unpkg.com/vconsole@latest/dist/vconsole.min.js"></script>
+   <script>
+      var vConsole = new window.VConsole()
+   </script> -->
 </html>

+ 1 - 1
src/views/rhythm/rhythm.vue

@@ -23,7 +23,7 @@ const measuresData = ref<measuresType[]>([])
 async function init() {
    // const xmlStringRes = await axios.get("https://oss.dayaedu.com/gyt/example/%E5%8D%A2%E6%B2%9F%E6%A1%A5-%E6%80%BB%E8%B0%B1-%E7%AC%AC5%E7%A8%BF.xml")
    // const xmlStringRes = await axios.get("https://oss.dayaedu.com/gyt/example/%E5%8D%A2%E6%B2%9F%E6%A1%A5-%E6%80%BB%E8%B0%B1-%E7%AC%AC5%E7%A8%BF.xml")
-   const xmlStringRes = await axios.get("http://localhost:9525/1.xml")
+   const xmlStringRes = await axios.get("http://192.168.0.140:9525/1.xml")
    measuresData.value = parseMusicXML(xmlStringRes.data)
 }
 init()