|
@@ -14,11 +14,18 @@
|
|
|
|
|
|
|
|
<a-button size="large" @click="download" style="margin-left: 10px;">
|
|
<a-button size="large" @click="download" style="margin-left: 10px;">
|
|
|
<template #icon>
|
|
<template #icon>
|
|
|
- <IconInfoCircle />
|
|
|
|
|
|
|
+ <icon-question-circle />
|
|
|
</template>
|
|
</template>
|
|
|
操作说明
|
|
操作说明
|
|
|
</a-button>
|
|
</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="{
|
|
<a-table :data="data" stripe hoverable column-resizable class="table" :loading="loading" :scroll="{
|
|
|
x: 1600
|
|
x: 1600
|
|
|
}" :pagination="{ showPageSize: true, showJumper: true, defaultPageSize: 15 }">
|
|
}" :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 { Modal, Notification, Message } from '@arco-design/web-vue'
|
|
|
import { IconSearch } from '@arco-design/web-vue/es/icon'
|
|
import { IconSearch } from '@arco-design/web-vue/es/icon'
|
|
|
import userCard from './components/userCard.vue'
|
|
import userCard from './components/userCard.vue'
|
|
|
|
|
+import { isElectron } from '@/utils/electron'
|
|
|
|
|
|
|
|
const area = ["兰花湖校区跑区", "主校区北跑区", "主校区南跑区"]
|
|
const area = ["兰花湖校区跑区", "主校区北跑区", "主校区南跑区"]
|
|
|
const distance = [
|
|
const distance = [
|
|
@@ -279,7 +287,7 @@ const form = reactive({
|
|
|
|
|
|
|
|
const download = () => {
|
|
const download = () => {
|
|
|
const a = document.createElement('a');
|
|
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'
|
|
a.download = 'RunForge操作说明.pdf'
|
|
|
document.body.appendChild(a);
|
|
document.body.appendChild(a);
|
|
|
a.click();
|
|
a.click();
|