关注接口预留

This commit is contained in:
Dragon
2023-08-18 19:21:30 +08:00
parent de77feec19
commit 3c0879357e

View File

@@ -289,6 +289,27 @@ $('.userNull .userNull_in .but').click(function () {
bodyScroolFun(false);
$('.userNull').hide();
})
// 关注接口
function fansLike () {
// showLoading();
networkRequest({
type: 'POST',
url: urlPrefix + '/fans/like',
data: {},
success: function (res) {
if (res.code == 200) {
} else {
toastMsg(res.message);
}
hideLoading(layerIndex);
},
error (err) {
hideLoading(layerIndex);
toastMsg('網絡錯誤');
}
});
}
// 代充列表接口
function rechargeUserList (regionCode) {
showLoading();