Browse Source

丰富可下载内容

lighter 2 years ago
parent
commit
5379d0b67d
1 changed files with 12 additions and 0 deletions
  1. 12 0
      src/layout/HeaderV2/function-list/Download.vue

+ 12 - 0
src/layout/HeaderV2/function-list/Download.vue

@@ -9,7 +9,10 @@
           <el-dropdown-item command="thcardreader">读卡插件安装包</el-dropdown-item>
           <el-dropdown-item command="framework" divided>.Net Framework</el-dropdown-item>
           <el-dropdown-item command="chrome90" divided>高版本Chrome浏览器</el-dropdown-item>
+          <el-dropdown-item command="google" divided>Chrome浏览器免安装</el-dropdown-item>
           <el-dropdown-item command="lodop" divided>LODOP打印插件</el-dropdown-item>
+          <el-dropdown-item command="7z32" divided>7zip解压缩32位</el-dropdown-item>
+          <el-dropdown-item command="7z64" divided>7zip解压缩64位</el-dropdown-item>
         </el-dropdown-menu>
       </template>
     </el-dropdown>
@@ -40,9 +43,18 @@ function downloadReadCard(command) {
     case 'chrome90':
       filename = 'chrome90.exe'
       break
+    case 'google':
+      filename = 'google.rar'
+      break
     case 'lodop':
       filename = 'LODOP/CLodop_Setup_for_Win32NT.exe'
       break
+    case '7z32':
+      filename = '7zip/7z2201-x32.exe'
+      break
+    case '7z64':
+      filename = '7zip/7z2201-x64.exe'
+      break
   }
   window.open(`http://webhis.thyy.cn:8080/download/${filename}`, '_blank')
 }