vhis.js
2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import { mapState } from "vuex";
import api from '@/api/api'
import { httpPost } from '@/api/fetch-api.js'
import Auth from '@components/auth/auth.vue';
import JsEncrypt from "jsencrypt";
let key = process.env.VUE_APP_CONTENT_ENCRYPT_KEY;
let rsa = new JsEncrypt();
rsa.setPublicKey(key);
function encryptContent(obj) {
let str = JSON.stringify(obj);
let securityContent = rsa.encrypt(str);
return securityContent;
};
export default {
data() {
return {
key: 'value',
outsideUrl: "",
information: {},
}
},
components: {
Auth
},
computed: {
...mapState({
userInfo: state => state.userInfo
}),
},
methods: {
init() {
if (this.isLogin()) {
httpPost({ url: api.profile, sid: true }).then(content => {
if (content) {
this.information = content;
this.gotoVhis();
}
})
} else {
this.gotoVhis();
}
},
userLogout(){
this.gotoVhis();
},
isLogin() {
return this.userInfo && this.userInfo.sid;
},
gotoVhis() {
let url = process.env.VUE_APP_VHIS_INDEX;
let lan = this.$i18n.locale;
switch (lan) {
case 'zh':
url += "?language=zh-cn";
break;
case 'en':
url += "?language=en";
break;
default:
url += "?language=zh-hk";
break;
}
url += "&partnerId=PA001&productCode=VHIS001";
if (this.information && this.information.idType && this.information.idNo) {
let data = {
name: this.information.fullName,
gender: this.information.sex,
birthday: this.information.birthDate,
certiType: this.information.policyIdType,
certiNo: this.information.idNo
};
url += "&data=" + encryptContent(data);
}
// url = "http://www.baidu.com"
// console.log("vhis:", url);
this.outsideUrl = url;
}
},
watch: {
},
mounted() {
this.init();
// let url = this.$route.query.p;
// if (url) {
// this.outsideUrl = url;
// setTimeout(() => {
// var iframe = document.getElementById("myiframe");
// try {
// var bHeight = iframe.contentWindow.document.body.scrollHeight;
// var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
// var height = Math.min(bHeight, dHeight);
// iframe.height = height + 50;
// } catch (ex) {
// }
// }, 500);
// }
},
created() {
}
}