Browse Source

更新下载地址

lex 1 year ago
parent
commit
4dcb28d394
3 changed files with 32 additions and 13 deletions
  1. 9 6
      src/views/download/index.tsx
  2. 21 5
      src/views/download/transfer.tsx
  3. 2 2
      vite.config.ts

+ 9 - 6
src/views/download/index.tsx

@@ -11,7 +11,8 @@ export default defineComponent({
   name: 'download',
   setup() {
     const state = reactive({
-      wxStatus: false
+      wxStatus: false,
+      androidUrl: ''
     });
 
     const onDownload = () => {
@@ -25,11 +26,10 @@ export default defineComponent({
       if (location.origin.indexOf('kt.colexiu.com') > -1) {
         urlIos =
           'https://apps.apple.com/us/app/%E9%9F%B3%E4%B9%90%E6%95%B0%E5%AD%97%E8%AF%BE%E5%A0%82/id6452725878';
-        urlAndroid =
-          'https://oss.dayaedu.com/appstore/kt_cooleshow_student.apk';
+        urlAndroid = state.androidUrl; //'https://oss.dayaedu.com/appstore/kt_cooleshow_student.apk';
       } else {
         urlIos = 'https://www.pgyer.com/dzRRNN';
-        urlAndroid = 'https://www.pgyer.com/2meenh';
+        urlAndroid = state.androidUrl; //'https://www.pgyer.com/2meenh';
       }
 
       if (
@@ -48,10 +48,13 @@ export default defineComponent({
         const { data } = await request.get(
           '/edu-app/open/appVersionInfo/queryLatestByPlatform',
           {
-            platform: 'android-kt'
+            params: {
+              platform: 'android-student',
+              status: 'history'
+            }
           }
         );
-        console.log(data);
+        state.androidUrl = data.downloadUrl;
       } catch {
         //
       }

+ 21 - 5
src/views/download/transfer.tsx

@@ -7,15 +7,32 @@ import qs from 'query-string';
 import student from './images/student-center.png';
 import teacher from './images/teacher-center.png';
 import manage from './images/manage-center.png';
+import request from '@/helpers/request';
 
 export default defineComponent({
   name: 'download-transfer',
   data() {
     return {
-      wxStatus: false
+      wxStatus: false,
+      androidUrl: ''
     };
   },
-  mounted() {
+  async mounted() {
+    try {
+      const { data } = await request.get(
+        '/edu-app/open/appVersionInfo/queryLatestByPlatform',
+        {
+          params: {
+            platform: 'android-student',
+            status: 'history'
+          }
+        }
+      );
+      this.androidUrl = data.downloadUrl;
+    } catch (e) {
+      //
+      console.log(e);
+    }
     const { pn, url, action, pageTag, ...rest } = this.$route.query;
     const { origin, pathname } = location;
     let tempPathname = pathname;
@@ -60,11 +77,10 @@ export default defineComponent({
       if (location.origin.indexOf('kt.colexiu.com') > -1) {
         urlIos =
           'https://apps.apple.com/us/app/%E9%9F%B3%E4%B9%90%E6%95%B0%E5%AD%97%E8%AF%BE%E5%A0%82/id6452725878';
-        urlAndroid =
-          'https://oss.dayaedu.com/appstore/kt_cooleshow_student.apk';
+        urlAndroid = this.androidUrl; //'https://oss.dayaedu.com/appstore/kt_cooleshow_student.apk';
       } else {
         urlIos = 'https://www.pgyer.com/dzRRNN';
-        urlAndroid = 'https://www.pgyer.com/2meenh';
+        urlAndroid = this.androidUrl; //'https://www.pgyer.com/2meenh';
       }
 
       if (

+ 2 - 2
vite.config.ts

@@ -13,8 +13,8 @@ function resolve(dir: string) {
 }
 // https://vitejs.dev/config/
 // https://github.com/vitejs/vite/issues/1930 .env
-const proxyUrl = 'https://dev.lexiaoya.cn/';
-// const proxyUrl = 'https://dev.kt.colexiu.com/';
+// const proxyUrl = 'https://dev.lexiaoya.cn/';
+const proxyUrl = 'https://dev.kt.colexiu.com/';
 // const proxyUrl = 'http://192.168.3.143:7989/';
 export default defineConfig({
   base: './',