Browse Source

Merge branch 'develop' into feature-v1.0

feature/feature-compatible
huangww 7 years ago
parent
commit
a5814487ca
1 changed files with 1 additions and 1 deletions
  1. 2
      src/view/put-money.vue

2
src/view/put-money.vue

@ -101,7 +101,7 @@
getParam(name) { getParam(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg); var r = window.location.search.substr(1).match(reg);
this.$vux.toast.text(window.location.search,'middle')
this.$vux.toast.text(window.location,'middle')
// this.$vux.toast.text(r,'middle') // this.$vux.toast.text(r,'middle')
if (r != null) return unescape(r[2]); if (r != null) return unescape(r[2]);
return null; return null;

Loading…
Cancel
Save