【代理商需求】
https://www.tapd.cn/tapd_fe/67163502/story/detail/1167163502001000123
This commit is contained in:
@@ -435,6 +435,43 @@
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4>九、解除账号腾讯限制(仅限于<span style="font-weight: bold;">极狐、猎豹、极光、蘑菇</span>)</h4>
|
||||
<h5 style="color:red;">使用此权限请务必做好监管义务,如与用户签署或用户同意《网络信息安全承诺书》,上传手持身份证等措施,因您方监管不利导致的一切后果自负,使用此接口即视为默认同意此条款!</h5>
|
||||
<h5>接口地址:/api/account/openlimit?apikey=1232455165&account=test&productId=29</h5>
|
||||
<h5>请求方式:GET </h5>
|
||||
<table class="table table-bordered text-center">
|
||||
<caption>请求参数:</caption>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>apikey</td>
|
||||
<td>唯一key值</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>account</td>
|
||||
<td>账号</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>productId</td>
|
||||
<td>产品ID</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table class="table table-bordered text-center">
|
||||
<caption>返回数据:</caption>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Code</td>
|
||||
<td colspan="2">10000 解除成功/其他 失败</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Message</td>
|
||||
<td colspan="2">返回提示</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -378,7 +378,7 @@
|
||||
<th>到期时间</th>
|
||||
<th>剩余时间</th>
|
||||
<th>在线及踢线</th>
|
||||
<th>选择地区</th>
|
||||
<!-- <th>选择地区</th> -->
|
||||
<th>操作</th>
|
||||
<th>软件下载</th>
|
||||
</tr>
|
||||
@@ -401,9 +401,9 @@
|
||||
<td class="redT">@(item.Status==AccountStatus.Refund?"已退货": item.RestTime)</td>
|
||||
@*<td class="greenT">查看</td>*@
|
||||
<td class="blueT"><a @@click="online(@item.ProductId,'@item.Account')">查看</a> </td>
|
||||
<td class="blueT"><a v-if="@item.ProductId==19||@item.ProductId==13||@item.ProductId==17||@item.ProductId==1" @@click="assign_address(@item.ProductId,'@item.Account','@item.Pwd')">切换地区</a> </td>
|
||||
<!-- <td class="blueT"><a v-if="@item.ProductId==19||@item.ProductId==13||@item.ProductId==17||@item.ProductId==1" @@click="assign_address(@item.ProductId,'@item.Account','@item.Pwd')">切换地区</a> </td> -->
|
||||
|
||||
<td class="blueT" ><a v-on:click="deleteacct(@item.Id)">删除</a></td>
|
||||
<td class="blueT" ><a v-on:click="deleteacct(@item.Id)">删除</a> </td>
|
||||
<td class="blueT"><a href="/product/soft">下载</a></td>
|
||||
</tr>
|
||||
} else {
|
||||
@@ -423,7 +423,7 @@
|
||||
<td class="redT">@(item.Status==AccountStatus.Refund?"已退货": item.RestTime)</td>
|
||||
@*<td class="greenT">查看</td>*@
|
||||
<td class="blueT"><a @@click="online(@item.ProductId,'@item.Account')">查看</a> </td>
|
||||
<td class="blueT"><a v-if="@item.ProductId==19||@item.ProductId==13||@item.ProductId==17||@item.ProductId==1" @@click="assign_address(@item.ProductId,'@item.Account','@item.Pwd')">切换地区</a> </td>
|
||||
<!-- <td class="blueT"><a v-if="@item.ProductId==19||@item.ProductId==13||@item.ProductId==17||@item.ProductId==1" @@click="assign_address(@item.ProductId,'@item.Account','@item.Pwd')">切换地区</a> </td> -->
|
||||
|
||||
<td class="blueT" ><a v-on:click="deleteacct('@item.Id')">删除</a></td>
|
||||
<td class="blueT"><a href="/product/soft">下载</a></td>
|
||||
@@ -669,22 +669,23 @@
|
||||
id: Id
|
||||
}
|
||||
|
||||
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'https://php-api.juip.com/manager/account/delete',
|
||||
dataType: "json",
|
||||
contentType: "application/json",
|
||||
data: JSON.stringify(data),
|
||||
beforeSend: function(xhr) {
|
||||
xhr.withCredentials = true;
|
||||
},
|
||||
crossDomain: true,
|
||||
success: function (res) {
|
||||
alert('删除成功');
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
if (confirm("您确定要删除该账号吗?")) {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'https://php-api.juip.com/manager/account/delete',
|
||||
dataType: "json",
|
||||
contentType: "application/json",
|
||||
data: JSON.stringify(data),
|
||||
beforeSend: function(xhr) {
|
||||
xhr.withCredentials = true;
|
||||
},
|
||||
crossDomain: true,
|
||||
success: function (res) {
|
||||
alert('删除成功');
|
||||
location.reload();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
change_ip(account_id,package,account,old_ip){
|
||||
this.province_city = [];
|
||||
|
||||
Reference in New Issue
Block a user