Commit 4fe1e99e630f4504ee9f5b4f75a9b320b0721aec
1 parent
70485e64
无锡微信公众号
Showing
2 changed files
with
10 additions
and
5 deletions
src/utils/utils.js
| ... | ... | @@ -156,13 +156,13 @@ export default { |
| 156 | 156 | // ny1u72b6k374sg379z0kqjgfxe2ycnpw 新的签名 |
| 157 | 157 | myVarAppid: "65grtq5tv0wewec05xfeau39jyghhjm",// 公共请求Appid |
| 158 | 158 | myDeviceInfo: "BC0703A4-AFB0-4B51-9089-9B7487C0CC6E", // 公共请求设备信息 80ac1a4218beb19a BC0703A4-AFB0-4B51-9089-9B7487C0CC6E |
| 159 | - myVxAppId: "wxdfb0276f85514ea3", | |
| 159 | + myVxAppId: "wx1e9001e5940605b1", | |
| 160 | 160 | // 测试环境 微信赤峰 appid wxff4cebaedbf4f886 |
| 161 | 161 | // 微信赤峰 appid wx2af2bab90d433c86 |
| 162 | 162 | // 黄石 appid wxa1a66cc7d263afe6 |
| 163 | 163 | // 阳明 wxdfb0276f85514ea3 |
| 164 | 164 | // 无锡 wx1e9001e5940605b1 |
| 165 | - myOrgId: "10193", // 归属地 赤峰id 10003 黄石 10079 无锡10005 扬明10193 | |
| 165 | + myOrgId: "10005", // 归属地 赤峰id 10003 黄石 10079 无锡10005 扬明10193 | |
| 166 | 166 | myGetSign: function(objb) { // 获取签名 |
| 167 | 167 | var compare = function(obj1, obj2) { |
| 168 | 168 | var val1 = obj1.keyname; | ... | ... |
src/views/mySelf/selfNav.vue
| ... | ... | @@ -258,9 +258,14 @@ export default { |
| 258 | 258 | toMemu(path) { |
| 259 | 259 | let _token = sessionStorage.getItem("wx_Token"); |
| 260 | 260 | if (_token) { |
| 261 | - this.$router.push({ | |
| 262 | - path: path | |
| 263 | - }); | |
| 261 | + if(path=='plateNumber'){ | |
| 262 | + window.location.href = 'http://wxgzh.renniting.cn/wechatwuxi/WuXi/gzh/index.html' | |
| 263 | + }else{ | |
| 264 | + this.$router.push({ | |
| 265 | + path: path | |
| 266 | + }) | |
| 267 | + } | |
| 268 | + | |
| 264 | 269 | } else { |
| 265 | 270 | this.$vux.toast.text("请先绑定手机号", "top"); |
| 266 | 271 | this.$router.push({ | ... | ... |