更新后退bug问题

This commit is contained in:
2021-09-18 16:51:37 +08:00
parent 61e6a198f1
commit 3f1c64f9d4
12 changed files with 196 additions and 41 deletions

View File

@@ -299,7 +299,7 @@ export default {
totalCount: 0
}
},
ticket: "8a1189377bdad67c017bf66039d76376-ticket"
ticket: "8a11885a7bda783f017bf73e5e095219-ticket"
};
},
async created() {
@@ -362,7 +362,7 @@ export default {
pageJump(id) {
this.$router.push({
name: "policyInfo",
params: { ticket: this.ticket, id: id },
params: { ticket: this.ticket, id: id }
});
},
setZwUserAplus(Userid, userName) {
@@ -388,12 +388,12 @@ export default {
ZWJSBridge.onReady(() => {
console.log("初始化完成后执行bridge方法");
ZWJSBridge.getUserType()
.then((result1) => {
.then(result1 => {
console.log("getUserType():" + JSON.stringify(result1));
console.log("result1.userType:" + result1.userType);
//经纬度
ZWJSBridge.getLocation()
.then((result2) => {
.then(result2 => {
console.log("getLocation():" + JSON.stringify(result2));
console.log("result2.longitude:" + result2.longitude);
console.log("result2.latitude:" + result2.latitude);