业务展示:
function Business() {
$.ajax({
url: site_url + "get_biz",
type: "GET",
success: function (res) {
console.log(res)
var html = '';
for (let i = 0; i < res.message.length; i++) {
html += '<option value=\'' + res.message[i].bk_biz_name + '\' >' + res.message[i].bk_biz_name + '</option>';
}
$("#Business").html(html);
if (res['state'] == 'success') {
alert("调用成功")
} else {
//alert(res.message)
}
},
error: function (xhr, msg, e) {
// alert(msg.toString());
console.log(res)
}
});
}