function workorderNotice()
{
$('.product_badge').remove();
$.ajax({
url: '/'+window.location.pathname.split('/')[1]+'/product_audit',
type: 'POST',
data: {},
dataType: 'json',
success: function (res) {
let total = res.total ? res.total : '';
let cloud = res.cloud ? res.cloud : '';
let industry = res.industry ? res.industry : '';
let demand = res.demand ? res.demand : '';
if (total > 0) {
$('a[href*="product/audit"] p').parent().parent().parent().parent().parent().parent().children("a").append(''+total+'');
}
if (cloud > 0) {
$('a[href*="product/audit"] p').parent().parent().parent().parent().parent().parent().children("ul").children(":first-child").children("ul").children("li:eq(1)").children(":first-child").append(''+cloud+'');
}
if (industry > 0) {
$('a[href*="product/audit"] p').parent().parent().parent().parent().parent().parent().children("ul").children(":eq(1)").children("ul").children("li:eq(1)").children(":first-child").append(''+industry+'');
}
if (demand > 0) {
$('a[href*="product/audit"] p').parent().parent().parent().parent().parent().parent().children("ul").children(":eq(2)").children(':first-child').append(''+demand+'');
}
},
error: function (error) {
}
});
}
$(document).ready(function () {
workorderNotice();
});
// const workordertimer = setInterval(function () {
// workorderNotice()
// }, 5000);