虞城12345_前端

chaxun.js 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //查询zonghe
  2. $(".CXS").click(function(){
  3. CX();
  4. })
  5. function CX(){
  6. $.getJSON(huayi.config.callcenter_url + "web/CheckWebPassword?",
  7. {workorderid:$("#SLBH").val(),
  8. password:$("#CXMM").val()
  9. }
  10. ,function (result) {
  11. if (result.state.toLowerCase() == "success") {
  12. var content = result.data;
  13. console.log(content[0].F_WorkOrderId);
  14. $("#d_n").text(content[0].F_WorkOrderId);
  15. $("#d_u").text(content[0].StateName);
  16. $("#d_w").text(content[0].F_EnableTime);//受理时间
  17. $("#d_t").text(content[0].TypeName1); //反映类别
  18. $("#d_f").text(content[0].DeptName);//承办单位 F_ComContentF_Result
  19. $("#d_c").text(content[0].F_ComContent);//内容
  20. $("#d_g").text(content[0].F_Result);
  21. $("#d_d").text(content[0].F_ComTitle);
  22. $("#d_s").text(content[0].F_EndTime);
  23. }
  24. // confirm(result.message);
  25. })
  26. }
  27. //getClient();
  28. //获取客户端地址并转成二维码
  29. //顶部hover
  30. $('.topbarWx').hover(function() {
  31. $('.topbarWx .topbarWx-box').css('left', $(this).offset().left);
  32. });
  33. $('.topbarClient').hover(function() {
  34. $('.topbarClient .topbarClient-box').css('left', $(this).offset().left);
  35. });