No Description

detail9.html 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="../css/init.css" rel="stylesheet" />
  7. <script src="../Script/Common/huayi.load.js"></script>
  8. <script src="../Script/Common/huayi.config.js"></script>
  9. <link rel="stylesheet" href="../css/WorkOrder/jquery.editable-select.css" />
  10. <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
  11. <link rel="stylesheet" href="../css/init.css" />
  12. <link rel="stylesheet" href="../css/WorkOrder/NewAddWorkOrder.css" />
  13. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  14. <link href="../css/WorkOrder/Search.css" rel="stylesheet">
  15. <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
  16. <link href="../css/init.css" rel="stylesheet" />
  17. <title></title>
  18. <style>
  19. ul li {
  20. float: initial;
  21. list-style: none;
  22. }
  23. .ckxq .ckxq_ul li{
  24. display: inline-block;
  25. }
  26. .repeat-btn{
  27. width: 100%;
  28. margin: 30px 0 0 0;
  29. text-align: center;
  30. }
  31. .common {
  32. width: 100%;
  33. text-align: center;
  34. padding: 10px 15px 0 0;
  35. }
  36. .common table {
  37. width: 100%;
  38. }
  39. .common table th {
  40. text-align: center;
  41. width: 20%;
  42. }
  43. .common table td {
  44. padding: 6px 5px 5px 10px;
  45. text-align: left;
  46. color: #717171;
  47. /* line-height: 200%; */
  48. }
  49. .common table td textarea {
  50. width: 80%;
  51. vertical-align: middle;
  52. resize: none;
  53. outline: none;
  54. }
  55. </style>
  56. </head>
  57. <body class="gray-bg">
  58. <div class="ckxq">
  59. <div class="gdxq">
  60. <div class="">
  61. <table id="gdxq_table" border="0" class="table table-bordered table-hover " style="width: 100%;">
  62. <tbody class="tbodys">
  63. <tr>
  64. <th>项目:</th>
  65. <td>
  66. <span id="Gzlrbxm"></span>
  67. </td>
  68. <th>分类:</th>
  69. <td>
  70. <span id="Gztype"></span>
  71. </td>
  72. </tr>
  73. <tr>
  74. <th>人次:</th>
  75. <td>
  76. <span id="Gzrc"></span>
  77. </td>
  78. <th>备注:</th>
  79. <td>
  80. <span id="Gzmemo"></span>
  81. </td>
  82. </tr>
  83. </tbody>
  84. </table>
  85. </div>
  86. </div>
  87. <!-- <div>
  88. <img src="./img/1 (5).jpg" width="180" height="240">
  89. <img src="./img/1 (6).jpg" width="180" height="240">
  90. <img src="./img/1 (7).jpg" width="180" height="240">
  91. <img src="./img/1 (8).jpg" width="180" height="240">
  92. <img src="./img/1 (9).jpg" width="180" height="240">
  93. </div> -->
  94. <div class="gdxq" style="display:none;">
  95. <div class="">
  96. <table id="workOrderRecord" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
  97. <thead>
  98. <tr>
  99. <th data-field="F_WoState" data-width="20%" data-align="left" data-formatter="formatterWorkOrderRecordStatus">工单状态</th>
  100. <th data-field="F_OptContent" data-align="left">内容</th>
  101. <th data-field="F_CreateTime" data-width="10%" data-align="center">创建时间</th>
  102. </tr>
  103. </thead>
  104. </table>
  105. </div>
  106. </div>
  107. </div>
  108. <!-- <script src="../js/WorkOrder/WorkOrderDetails.js"></script> -->
  109. <script src="../js/download/download.js"></script>
  110. <script type="text/javascript">
  111. $(document).ready(function() {
  112. var ids = helper.request.queryString("detail_id");
  113. getValue(ids);
  114. });
  115. //获取详情
  116. function getValue(ids) {
  117. $.ajax({
  118. type: "get",
  119. url: huayi.config.callcenter_url + "testusertypeapi/api/TestUserType/GetGzlrbsbyid",
  120. async: true,
  121. dataType: 'json',
  122. data: {
  123. id: ids
  124. },
  125. success: function(data) {
  126. if (data.state.toLowerCase() == 'success') {
  127. $('#Gzlrbxm').text(data.data[0].Gzlrbxm); //
  128. $('#Gztype').text(data.data[0].Gztype); //
  129. $('#Gzrc').text(data.data[0].Gzrc); //
  130. $('#Gzmemo').text(data.data[0].Gzmemo); //
  131. }
  132. }
  133. });
  134. }
  135. </script>
  136. </body>
  137. </html>