result.js
841 Bytes
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
const util = new window.publicMethod() ;
(function($$) {
"use strict";
let vm
function init() {
vm = new Vue({
el: '#pageDiv',
data: {
info: {}
},
created: function() {
this.info = {
campaignId: '1334567687633555',
accNbr: '13466789999',
address: '江苏省淮安市幸福街道流星家园小区1号楼一单元202'
}
},
methods: {
goAdd(){
location.href = 'addBusi.html?source=zhijian'
},
goBack(){
history.go(-1)
}
}
})
}
init()
window.vm = vm
})(window.jQuery)
window.addEventListener('load', function () {
document.getElementById('pageDiv').style.display = 'block'; // 显示内容
});