@@ -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