diff --git a/index.html b/index.html index 179af6a..335e17b 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,9 @@ - + + content="智聪科技"/> diff --git a/src/views/HomePage.vue b/src/views/HomePage.vue index 75e67c7..090aac1 100644 --- a/src/views/HomePage.vue +++ b/src/views/HomePage.vue @@ -5,7 +5,7 @@

  记账平台   健康档案 -   茅台预约 +   茅台预约

◄目录►
@@ -101,10 +101,10 @@
-->

- 智聪科技 技术领先 服务周到 诚信赢天下 + 智聪科技 技术领先 想您所想

- 提供个人资产记账、健康档案管理、i茅台APP自动预约系统解决方案 + 提供个人资产记账、健康档案管理、i茅台预约服务

diff --git a/src/views/callus.vue b/src/views/callus.vue index 29adfd7..703a4b7 100644 --- a/src/views/callus.vue +++ b/src/views/callus.vue @@ -5,7 +5,7 @@

  记账平台   健康档案 -   茅台预约 +   茅台预约

◄目录►
diff --git a/src/views/resource.vue b/src/views/resource.vue index 6a1fcd3..f8c3f71 100644 --- a/src/views/resource.vue +++ b/src/views/resource.vue @@ -3,9 +3,9 @@

-   记账平台 +   记账平台   健康档案 -   茅台预约 +   茅台预约

◄目录►
@@ -37,24 +37,32 @@

记账平台

- 系统介绍   - 使用手册下载 + 系统介绍   + PC手册   + H5手册   +

  • 健康档案

    - 系统介绍   - 使用手册下载 + 系统介绍   + 使用手册   +

  • 茅台预约

    - 系统介绍   - 使用手册下载 + 系统介绍   + 使用手册   +

  • @@ -146,6 +154,45 @@ gohealth: function () { window.open("http://152.136.151.187:89/#/", '_blank'); }, + // 授权书下载 +download(type) { + + // 通过a标签来实现下载 + var a = document.createElement("a") //创建一个标签 + if(type===1){ + a.href = "/static/download/invest/intcInvest-Introduction.pdf" + a.download = "智聪记账平台系统介绍.pdf" + } + if(type===2){ + a.href = "/static/download/invest/intcInvest-Manual.pdf" + a.download = "智聪记账平台PC用户使用手册V1.0.pdf" + } + if(type===3){ + a.href = "/static/download/invest/intcInvestH5-Manual.pdf" + a.download = "智聪记账平台H5用户使用手册V1.0.pdf" + } + if(type===4){ + a.href = "/static/download/health/intcHealth-Introduction.pdf" + a.download = "智聪健康平台系统介绍.pdf" + } + if(type===5){ + a.href = "/static/download/health/intcHealth-Manual.pdf" + a.download = "智聪健康平台用户使用手册V1.0.pdf" + } + if(type===6){ + a.href = "/static/download/imaotai/intcImaotai-Introduction.pdf" + a.download = "智聪茅台预约平台系统介绍.pdf" + } + if(type===7){ + a.href = "/static/download/imaotai/intcImaotai-Manual.pdf" + a.download = "智聪茅台预约平台用户使用手册V1.0.pdf" + } + a.style.display = "none" //隐藏a标签 + document.body.append("a") //将a标签追加到document.body中 + a.click() //模拟点击a标签,会触发a标签的href的读取,浏览器就会自动下载了 + a.remove() // 删除a标签(一次性的) + +}, init: function () { if((Util.os.android || Util.os.iPhone|| Util.os.mobile|| Util.os.isapp|| Util.os.harmonyOS)){ this.webShow=false diff --git a/static/download/health/intcHealth-Introduction.pdf b/static/download/health/intcHealth-Introduction.pdf new file mode 100644 index 0000000..b94fb59 Binary files /dev/null and b/static/download/health/intcHealth-Introduction.pdf differ diff --git a/static/download/health/intcHealth-Manual.pdf b/static/download/health/intcHealth-Manual.pdf new file mode 100644 index 0000000..380588b Binary files /dev/null and b/static/download/health/intcHealth-Manual.pdf differ diff --git a/static/download/imaotai/intcImaotai-Introduction.pdf b/static/download/imaotai/intcImaotai-Introduction.pdf new file mode 100644 index 0000000..30f5731 Binary files /dev/null and b/static/download/imaotai/intcImaotai-Introduction.pdf differ diff --git a/static/download/imaotai/intcImaotai-Manual.pdf b/static/download/imaotai/intcImaotai-Manual.pdf new file mode 100644 index 0000000..7548da5 Binary files /dev/null and b/static/download/imaotai/intcImaotai-Manual.pdf differ diff --git a/static/download/invest/intcInvest-Introduction.pdf b/static/download/invest/intcInvest-Introduction.pdf new file mode 100644 index 0000000..726e297 Binary files /dev/null and b/static/download/invest/intcInvest-Introduction.pdf differ diff --git a/static/download/invest/intcInvest-Manual.pdf b/static/download/invest/intcInvest-Manual.pdf new file mode 100644 index 0000000..eb68075 Binary files /dev/null and b/static/download/invest/intcInvest-Manual.pdf differ diff --git a/static/download/invest/intcInvestH5-Manual.pdf b/static/download/invest/intcInvestH5-Manual.pdf new file mode 100644 index 0000000..7c67ca9 Binary files /dev/null and b/static/download/invest/intcInvestH5-Manual.pdf differ