| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link href="../css/init.css" rel="stylesheet" />
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/WorkOrder/jquery.editable-select.css" />
- <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="../css/WorkOrder/NewAddWorkOrder.css" />
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link href="../css/WorkOrder/Search.css" rel="stylesheet">
- <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
- <link href="../css/init.css" rel="stylesheet" />
- <title></title>
- <style>
- ul li {
- float: initial;
- list-style: none;
- }
-
- .ckxq .ckxq_ul li{
- display: inline-block;
- }
-
- .repeat-btn{
- width: 100%;
- margin: 30px 0 0 0;
- text-align: center;
- }
- .common {
- width: 100%;
- text-align: center;
- padding: 10px 15px 0 0;
- }
- .common table {
- width: 100%;
- }
- .common table th {
- text-align: center;
- width: 20%;
- }
- .common table td {
- padding: 6px 5px 5px 10px;
- text-align: left;
- color: #717171;
- /* line-height: 200%; */
- }
- .common table td textarea {
- width: 80%;
- vertical-align: middle;
- resize: none;
- outline: none;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="ckxq">
- <div class="gdxq">
- <div class="">
- <table id="gdxq_table" border="0" class="table table-bordered table-hover " style="width: 100%;">
- <tbody class="tbodys">
- <tr>
- <th>会诊时间:</th>
- <td>
- <span id="Hzsj"></span>
- </td>
- <th>申请会诊机构:</th>
- <td>
- <span id="Sqhzjg"></span>
- </td>
- </tr>
- <tr>
- <th>申请会诊医师:</th>
- <td>
- <span id="Sqhzys"></span>
- </td>
- <th>患者姓名:</th>
- <td>
- <span id="Hzname"></span>
- </td>
- <th>联系方式:</th>
- <td>
- <span id="Lxfs"></span>
- </td>
- </tr>
- <tr>
- <th>会诊专家:</th>
- <td>
- <span id="Hzzj"></span>
- </td>
- <th>状态:</th>
- <td>
- <span id="ifsuccess"></span>
- </td>
- </tr>
- <tr>
- <th>诊后追踪服务:</th>
- <td>
- <span id="Syzzzhzzfw"></span>
- </td>
- <th>责任人:</th>
- <td>
- <span id="Syzzzrrss"></span>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <!-- <div>
- <img src="./img/1 (5).jpg" width="180" height="240">
- <img src="./img/1 (6).jpg" width="180" height="240">
- <img src="./img/1 (7).jpg" width="180" height="240">
- <img src="./img/1 (8).jpg" width="180" height="240">
- <img src="./img/1 (9).jpg" width="180" height="240">
- </div> -->
- <div class="gdxq" style="display:none;">
- <div class="">
- <table id="workOrderRecord" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="F_WoState" data-width="20%" data-align="left" data-formatter="formatterWorkOrderRecordStatus">工单状态</th>
- <th data-field="F_OptContent" data-align="left">内容</th>
- <th data-field="F_CreateTime" data-width="10%" data-align="center">创建时间</th>
- </tr>
- </thead>
- </table>
- </div>
- </div>
- </div>
- <!-- <script src="../js/WorkOrder/WorkOrderDetails.js"></script> -->
- <script src="../js/download/download.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- var ids = helper.request.queryString("detail_id");
- getValue(ids);
- });
- //获取详情
- function getValue(ids) {
- $.ajax({
- type: "get",
- url: huayi.config.callcenter_url + "testusertypeapi/api/TestUserType/GetHzapsbyid",
- async: true,
- dataType: 'json',
- data: {
- id: ids
- },
- success: function(data) {
- if (data.state.toLowerCase() == 'success') {
- $('#Hzsj').text(data.data[0].Hzsj); //
- $('#Sqhzjg').text(data.data[0].Sqhzjg); //
-
- $('#Sqhzys').text(data.data[0].Sqhzys); //
- $('#Lxfs').text(data.data[0].Lxfs); //
- $('#Hzzj').text(data.data[0].Hzzj); //
- $('#ifsuccess').text(data.data[0].ifsuccess); //
- $('#Syzzzhzzfw').text(data.data[0].Syzzzhzzfw); //
- $('#Syzzzrrss').text(data.data[0].Syzzzrrss); //
- }
-
- }
- });
- }
- </script>
- </body>
- </html>
|