<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>正在跳转</title>
|
<script src="http://img.flqapp.com/resource/js/app20200521.js"></script>
|
<script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
|
</head>
|
<body>
|
|
|
<script type="text/javascript">
|
$(function() {
|
//获取链接
|
function getQueryString(name) {
|
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
|
var r = window.location.search.substr(1).match(reg);
|
if (r != null) return unescape(r[2]);
|
return null;
|
}
|
var resourceType = getQueryString("resourceType");
|
var channelType = getQueryString("channelType");
|
var params = {};
|
if (resourceType) {
|
params.resourceType = resourceType
|
}
|
if (channelType) {
|
params.channelType = channelType
|
}
|
|
params = yesApp.getRequestBaseParams(params);
|
$.ajax({
|
type: "POST",
|
data: JSON.parse(params),
|
url: "http://api.flqapp.com/fanli/api/v2/goods/convertPDDLink",
|
dataType: "json",
|
async: false,
|
success: function(result) {
|
if (result.code == 0) {
|
var wxxcxJumpInfo = result.data.wxxcxJumpInfo;
|
yestv.jumpWXXCX(wxxcxJumpInfo.userName, wxxcxJumpInfo.path);
|
}
|
setTimeout(function() {
|
yesApp.finishPage();
|
}, 1000);
|
}
|
});
|
|
|
});
|
</script>
|
|
</body>
|
</html>
|