| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //查询zonghe
- $(".CXS").click(function(){
- CX();
- })
- function CX(){
- $.getJSON(huayi.config.callcenter_url + "web/CheckWebPassword?",
- {workorderid:$("#SLBH").val(),
- password:$("#CXMM").val()
- }
- ,function (result) {
- if (result.state.toLowerCase() == "success") {
- var content = result.data;
- console.log(content[0].F_WorkOrderId);
- $("#d_n").text(content[0].F_WorkOrderId);
- $("#d_u").text(content[0].StateName);
- $("#d_w").text(content[0].F_EnableTime);//受理时间
- $("#d_t").text(content[0].TypeName1); //反映类别
- $("#d_f").text(content[0].DeptName);//承办单位 F_ComContentF_Result
- $("#d_c").text(content[0].F_ComContent);//内容
- $("#d_g").text(content[0].F_Result);
- $("#d_d").text(content[0].F_ComTitle);
- $("#d_s").text(content[0].F_EndTime);
-
-
-
- }
- // confirm(result.message);
- })
- }
- //getClient();
- //获取客户端地址并转成二维码
- //顶部hover
- $('.topbarWx').hover(function() {
- $('.topbarWx .topbarWx-box').css('left', $(this).offset().left);
- });
- $('.topbarClient').hover(function() {
- $('.topbarClient .topbarClient-box').css('left', $(this).offset().left);
- });
|