Browse Source

✨ feat: 更新部分内容

Pchen. 10 months ago
parent
commit
0a60c06b37
4 changed files with 15 additions and 7 deletions
  1. 1 1
      index.html
  2. 3 3
      src/pages/Main/components/section2.vue
  3. 10 2
      src/pages/lepao/accountList/index.vue
  4. 1 1
      src/router/index.js

+ 1 - 1
index.html

@@ -5,7 +5,7 @@
     <link rel="icon" type="image/svg+xml" href="/logo.svg" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <meta name="viewport" content="width=1280">
-    <title>RunForge - 让跑步的意义由技术重新定义</title>
+    <title>RunForge - 智能自助校园乐跑平台</title>
   </head>
   <body>
     <div id="app"></div>

+ 3 - 3
src/pages/Main/components/section2.vue

@@ -26,21 +26,21 @@ const cards = [
         title: '全自动乐跑体验',
         icon: new URL('@/assets/img/homePage/icons/visualization.svg', import.meta.url).href,
         dec: '自动上传跑步数据,无需手动操作,轻松完成乐跑任务',
-        img: new URL('https://cloud.vite.net.cn/view.php/6cf4d3d8f5d9e6b41c525541c8949329.png').href,
+        img: new URL('http:\/\/lepao-cloud.xxoo365.top\/view.php\/f9192f9d310b16a7e8e4ef2f71ac8629.png').href,
         reverse: false
     },
     {
         title: '智能成绩上传系统',
         icon: new URL('@/assets/img/homePage/icons/ai.svg', import.meta.url).href,
         dec: '支持夜间上传与异常修复,忘跑也能及时补救,成绩无忧',
-        img: new URL('https://cloud.vite.net.cn/view.php/6cf4d3d8f5d9e6b41c525541c8949329.png').href,
+        img: new URL('http:\/\/lepao-cloud.xxoo365.top\/view.php\/6cf4d3d8f5d9e6b41c525541c8949329.png').href,
         reverse: true
     },
     {
         title: '自由跑区与贴心服务',
         icon: new URL('@/assets/img/homePage/icons/quality.svg', import.meta.url).href,
         dec: '支持自定义跑步区域与乐跑时段,体验便捷又人性化',
-        img: new URL('https://cloud.vite.net.cn/view.php/6cf4d3d8f5d9e6b41c525541c8949329.png').href,
+        img: new URL('http:\/\/lepao-cloud.xxoo365.top\/view.php\/3132165c9476e659c710114f963e6814.png').href,
         reverse: false
     }
 ]

+ 10 - 2
src/pages/lepao/accountList/index.vue

@@ -14,11 +14,18 @@
 
       <a-button size="large" @click="download" style="margin-left: 10px;">
         <template #icon>
-          <IconInfoCircle />
+          <icon-question-circle />
         </template>
         操作说明
       </a-button>
 
+      <a-button size="large" @click="$router.push('/download/down')" style="margin-left: 10px;" v-if="!isElectron()">
+        <template #icon>
+          <icon-download />
+        </template>
+        客户端/登录器下载
+      </a-button>
+
       <a-table :data="data" stripe hoverable column-resizable class="table" :loading="loading" :scroll="{
         x: 1600
       }" :pagination="{ showPageSize: true, showJumper: true, defaultPageSize: 15 }">
@@ -217,6 +224,7 @@ import { getCount } from '@/api/goods'
 import { Modal, Notification, Message } from '@arco-design/web-vue'
 import { IconSearch } from '@arco-design/web-vue/es/icon'
 import userCard from './components/userCard.vue'
+import { isElectron } from '@/utils/electron'
 
 const area = ["兰花湖校区跑区", "主校区北跑区", "主校区南跑区"]
 const distance = [
@@ -279,7 +287,7 @@ const form = reactive({
 
 const download = () => {
   const a = document.createElement('a');
-  a.href = 'https://cloud.vite.net.cn/down.php/945623b0bfe7c3acc521abe11f5b3afc.pdf';
+  a.href = 'http:\/\/lepao-cloud.xxoo365.top\/down.php\/682d99f9694c6fe76b64b86c5741a2d8.pdf';
   a.download = 'RunForge操作说明.pdf'
   document.body.appendChild(a);
   a.click();

+ 1 - 1
src/router/index.js

@@ -377,7 +377,7 @@ router.beforeEach(async (to, from, next) => {
     }
 
     if (!to.meta.title) {
-        document.title = 'RunForge - 让跑步的意义由技术重新定义'
+        document.title = 'RunForge - 智能自助校园乐跑平台'
     } else {
         document.title = to.meta.title + ' - RunForge'
     }