$(document).ready(function() {
$(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
var id = $.cookie('orgId');
if(id == "" || id == null || id == "null"){
location.href = "cmp-settled-log.html";
}
resMgr(id);
demandList(true,10, 1);
/*查询企业认证状态*/
function companyAuthentState() {
$.ajax({
url: '/ajax/org/authStatus',
type: "GET",
timeout: 10000,
dataType: "json",
data: {
"id": id
},
beforeSend: function() {},
success: function(data, textState) {
if(data.success) {
console.log(data);
if(data.data == 3) {
$("#companyDemandList").show();
} else {
$("#identityState").show();
}
}
},
error: function(XMLHttpRequest, textStats, errorThrown) {
$.MsgBox.Alert('提示', '服务器请求失败')
}
})
}
companyAuthentState();
$("#cmpneedList").on("click",".closeThis",function(){//关闭
var dataId=$(this).parents("li").find(".urlHref").attr("data-id");
$.MsgBox.Confirm("提示", "确认要关闭该需求?",function(){
$.ajax({
"url": "/ajax/demand/close",
"type": "POST",
"async": true,
"data":{
"id":dataId,
"uid":id
},
"success": function(data) {
if(data.success && data.data) {
console.log(data);
$(".madiaEdit").remove();
demandList(true,10, 1);
}
}
});
});
})
/*需求列表*/
function demandList(isbind, pageSize, pageNo) {
$.ajax({
url: "/ajax/demand/pq",
type: "GET",
timeout: 10000,
dataType: "json",
data: {
"oid": id,
"pageNo": pageNo,
"pageSize": pageSize
},
"beforeSend": function() {
$("#cmpneedList").append('');
},
success: function(data, textState) {
if(data.success) {
console.log(data);
$("#cmpneedList").html("");
var $info = data.data.data;
if($info.length > 0){
for(var i = 0; i < $info.length; i++) {
var liStr=$("
'+ $data.title +'
' strCon+='