|
@@ -55,7 +55,6 @@
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
import asyncRequest from "@/api/index"
|
|
import asyncRequest from "@/api/index"
|
|
-import { getParameterByName } from "../utils/auth"
|
|
|
|
export default {
|
|
export default {
|
|
name:'report',
|
|
name:'report',
|
|
data() {
|
|
data() {
|
|
@@ -87,47 +86,41 @@ export default {
|
|
},
|
|
},
|
|
async initWechatSdk(){
|
|
async initWechatSdk(){
|
|
try{
|
|
try{
|
|
- const code = getParameterByName('code')
|
|
|
|
- const result = await asyncRequest({code})
|
|
|
|
|
|
+ const result = await asyncRequest.signature({url: "http://depart.test241.wanyuhengtong.com"})
|
|
|
|
|
|
switch(Number(result.code)){
|
|
switch(Number(result.code)){
|
|
case 0:
|
|
case 0:
|
|
- // 配置微信JSSDK
|
|
|
|
wx.config({
|
|
wx.config({
|
|
- debug: true,
|
|
|
|
- appId: result.data.appId,
|
|
|
|
|
|
+ debug: false,
|
|
|
|
+ appId: result.data.appid,
|
|
timestamp: result.data.timestamp,
|
|
timestamp: result.data.timestamp,
|
|
- nonceStr: result.data.nonceStr,
|
|
|
|
|
|
+ nonceStr: result.data.noncestr,
|
|
signature: result.data.signature,
|
|
signature: result.data.signature,
|
|
- jsApiList: ['checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage']
|
|
|
|
|
|
+ jsApiList: ['login']
|
|
})
|
|
})
|
|
|
|
|
|
wx.ready(function(){
|
|
wx.ready(function(){
|
|
- wx.webckJsApi({
|
|
|
|
- jsApiList:['getUserInfo'],
|
|
|
|
- success:function(res){
|
|
|
|
- console.log(res)
|
|
|
|
- //用户信息...
|
|
|
|
- },
|
|
|
|
- fail:function(){
|
|
|
|
- //..处理获取用户失败情况
|
|
|
|
- //this.$router.push('/lo')
|
|
|
|
- alert('get userinfo fail')
|
|
|
|
- }
|
|
|
|
|
|
+ wx.checkJsApi({
|
|
|
|
+ jsApiList: ['login'],
|
|
|
|
+ success:function(res){
|
|
|
|
+ const code = res.code
|
|
|
|
+ alert(code)
|
|
|
|
+ },
|
|
|
|
+ fail:function(res){
|
|
|
|
+ alert('line-109')
|
|
|
|
+ }
|
|
})
|
|
})
|
|
})
|
|
})
|
|
-
|
|
|
|
- wx.error(function () {
|
|
|
|
- alert('wx error')
|
|
|
|
- // this.$router.push('/login')
|
|
|
|
|
|
+
|
|
|
|
+ wx.error(function (res) {
|
|
|
|
+ alert(JSON.stringify(res) + '115')
|
|
})
|
|
})
|
|
break
|
|
break
|
|
default:
|
|
default:
|
|
- // this.$router.push('/login')
|
|
|
|
break
|
|
break
|
|
}
|
|
}
|
|
}catch(error){
|
|
}catch(error){
|
|
- // this.$router.push('/login')
|
|
|
|
|
|
+ console.log(error)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
}
|
|
}
|