123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- $(document).ready(function() {
- $(".onlogin .headnavbtn li").eq(0).addClass("navcurrent");
- $(".workmenu>ul>li.serIcon").addClass("nowLi");
- var orgId = $.cookie('orgId');
- if(orgId == "" || orgId == null || orgId == "null") {
- location.href = "cmp-settled-log.html";
- }
- var resourceId;
- $(".issueSpan").click(function(e){
- UnauthorizedUser()
- e.preventDefault();
- })
- function UnauthorizedUser() {
- $.ajax({
- url: "/ajax/professor/qaOrgAuth",
- type: "GET",
- timeout: 10000,
- dataType: "json",
- async:"true",
- data: {
- "orgId": orgId,
- "orgAuth": 1
- },
- success: function(data, textState) {
- if(data.success) {
- if(data.data.length==0) {
- $.MsgBox.Confirm("提示", "请至少认证1位员工?", function(){
- location.href="cmp-UnstaffList.html";
- });
- $("#mb_btn_no").val("稍后再说");
- $("#mb_btn_ok").val("去认证");
- }else if(data.data.length>0){
- window.open("cmp-sevriceIssue.html")
- }
- }
- },
- error: function(XMLHttpRequest, textStats, errorThrown) {
- $.MsgBox.Alert('提示', '服务器请求失败')
- }
- })
- }
-
- function getRecourceMe(n,isbind,num) {
- var resourceNameVa=$("#resouceName").val();
- var $info={};
- $info.oid=orgId;
- $info.pageSize=10;
- if(resourceNameVa !="") {
- $info.key=resourceNameVa;
- }
- $info.pageNo=n;
- $.ajax({
- "url": "/ajax/ware/pq/org/search",
- "type": "GET",
- "success": function(data) {
- if(data.success) {
- $("#resourceList").html("");
- if(num==1) {
- if(data.data.total==0) {
- $("#noresource").removeClass("displayNone");
- $(".noContip").text("您还未发布任何服务");
- return;
- }else{
- $("#noresource").addClass("displayNone");
- }
- }else{
- if(data.data.data.length==0) {
- $("#noresource").removeClass("displayNone");
- $(".noContip").text("没有符合该搜索条件的内容");
- return;
- }else{
- $("#noresource").addClass("displayNone");
- }
- }
- resourceHtml(data.data.data);
- if(isbind == true) {
- $(".tcdPageCode").createPage({
- pageCount: Math.ceil(data.data.total / 10),
- current: data.data.pageNo,
- backFn: function(p) {
- getRecourceMe(p,false);
- }
- });
- }
- }
- },
- "data": $info,
- dataType: "json",
- 'error': function() {
- $.MsgBox.Alert('提示', '服务器连接超时!');
- }
- });
- }
- getRecourceMe(1,true,1);
- function resourceHtml($data) {
- for(var i = 0; i < $data.length; i++) {
- var imgSrc="../images/default-service.jpg";
- var oTime,pageview="",draftLable="",oHtml,oLi='';
- if($data[i].images) {
- imgSrc="/data/ware"+$data[i].images.split(",")[0]
- }
- if($data[i].state=='2') {
- console.log($data[i].modifyTime)
- oTime="修改于 "+TimeTr($data[i].modifyTime);
- draftLable='<span class="draftLable">草稿</span>';
- oHtml="cmp-sevriceIssue.html";
- oLi="class='draftList'"
- }else if($data[i].state=='1'){
- console.log($data[i].createTime)
- oTime="发布于 "+TimeTr($data[i].createTime);
- pageview='<li><span>浏览量 '+$data[i].pageViews+'</span></li>';
- oHtml="../sevriceShow.html"
- }
- var oStr='<li '+oLi+'>'+
- '<a href="'+oHtml+'?sevriceId='+$data[i].id+'" target="_blank">'+
- '<div class="madiaHead resouseHead" style="background-image: url('+imgSrc+');"></div>' +
- '<div class="madiaInfo">'+
- '<p class="h1Font ellipsisSty">'+$data[i].name+'</p>'+
- '<ul class="showliTop h2Font clearfix">'+
- '<li><span>'+oTime+'</span></li>'+pageview+'<li><span id="oop" style="color:#e03b43;"></span></li>' +
- '</ul><p><span>'+draftLable+'</span><span class="crel" style="margin-left:10px"></span></p>' +
- '</div>'+
- '</a>'+
- '<ul class="madiaEdit">'+
- '<li><span class="deteleThis2" data-id="'+$data[i].id+'"></span></li>'+
- '<li><span class="editThis" data-id="'+$data[i].id+'"></span></li>'+
- '</ul>'+
- '</li>'
- var $os = $(oStr);
- $("#resourceList").append($os);
- if($data[i].status == 2) {
- if($data[i].num==0)
- $os.find(".crel").text("未设置联系人");
- } else {
- if($data[i].num==0)
- $os.find("#oop").text("未设置联系人");
- }
- }
- }
-
- $("#resourceList").on("click",".editThis",function(){
- location.href="cmp-sevriceIssue.html?sevriceId="+$(this).attr("data-id");
- })
-
- $("#resourceList").on("click",".deteleThis2",function(){
- resourceId=$(this).attr("data-id");
- $.MsgBox.Confirm("提示", "确认删除该资源?",deleResource);
- })
-
- function deleResource() {
- $.ajax({
- "url": "/ajax/ware/delete",
- "type": "POST",
- "success": function(data) {
- if(data.success) {
- getRecourceMe(1,false);
- }
- },
- "data": {"id":resourceId},
- "beforeSend": function() { },
- "contentType": "application/x-www-form-urlencoded",
- dataType: "json"
- });
- }
-
- $("#resouceName").bind({
- keyup: function() {
- if($(this).val().length > 30) {
- $(this).val($(this).val().substr(0, 30));
- }
- }
- });
-
- $(".searchSpan").click(function(){
- $(".tcdPageCode").remove();
- $(".aboutRes").append('<div class="tcdPageCode"></div>');
- getRecourceMe(1,true);
- })
- })
|