|
|
@ -392,6 +392,23 @@ async function GetRewrite () { |
|
|
|
resetStore(upuid); |
|
|
|
$.msg(jsname + ` restore ${upuid}`) |
|
|
|
} |
|
|
|
else if ($request.url.indexOf(`fast_reada`) > -1) { |
|
|
|
//http://m.isehrp.bar/fast_reada?upuid=6769481
|
|
|
|
let body = $response.body; |
|
|
|
var reg = /uid:(\d{3,10})/;//没有g
|
|
|
|
var rs_match = body.match(reg); |
|
|
|
if(rs_match) |
|
|
|
{ |
|
|
|
var upuid=rs_match[1]; |
|
|
|
resetStore(upuid); |
|
|
|
$.msg(jsname + ` restore ${upuid}`) |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
$.msg(jsname + ` 获取upuid失败`) |
|
|
|
} |
|
|
|
} |
|
|
|
let body = JSON.parse($response.body); |
|
|
|
} |
|
|
|
|
|
|
|
// {
|
|
|
|