function easyAjax() {
$.ajax({
type: "post",
// url: "/api/app/portal/partner/type",
url: ajaxUrl + "/api/app/portal/partner/type",
dataType: "json",
beforeSend: function () {
},
error: function (err) {
},
success: function (res) {
let a = res.data.map((item) => {
return `<a href="second.html?ID=${item.ID}">
<dl>
<dd>
<h4 class="name">${item.TypeName}</h4>
</dd>
</dl>
</a >
`
});
$('.integral').append(a.join(''));
}
})
}