| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <title>政策专家</title>
- <style type="text/css">
- ul,
- li {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- .table tr td input[type="text"] {
- width: 100%;
- height: 34px;
- background: #f3f3f4;
- outline: none;
- border: 1px solid #e7e7e7;
- /*padding-left: 10px;*/
- }
- .radio-inline input[type=radio] {
- margin-top: 2px;
- }
- .table tr td textarea {
- width: 100%;
- height: 100%;
- background: #f3f3f4;
- border: 1px solid #e7e7e7;
- resize: none;
- padding: 0px;
- /*padding-left: 10px;*/
- }
- #scwj {
- background-color: #FFF;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 1px;
- color: inherit;
- padding: 6px 12px !important;
- }
- .files {
- padding: 5px !important;
- }
- .time-box {
- position: relative;
- width: 197px !important;
- height: 34px;
- margin: 0;
- }
- .tub+input {
- padding-right: 30px;
- border: 1px solid #e5e6e7 !important;
- }
- i.tub {
- position: absolute;
- right: 8px;
- top: 8px;
- font-size: 18px;
- color: #00a0ca;
- }
- .operation_bj {
- float: right;
- }
- .imgBox {
- display: inline-block;
- }
- .imgWrapper {
- position: relative;
- }
- .imgMask {
- display: none;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 20px;
- background: rgba(0, 0, 0, 0.8);
- }
- .del_file {
- position: absolute;
- top: 2px;
- right: 5px;
- color: #FFF;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="container-fluid wrapper-content animated fadeInRight">
- <div class="operation_bj">
- </div>
- <table class="table table-bordered table-condensed">
- <tr>
- <td width="100">专家姓名</td>
- <td><input type="text" id="name" autocomplete="off" readonly="readonly" /></td>
- <td width="100">地区</td>
- <td><input type="text" id="address" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">专家单位</td>
- <td><input type="text" id="unit" autocomplete="off" readonly="readonly" /></td>
- <td width="100">所属行业</td>
- <td><input type="text" id="industry" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">科室</td>
- <td><input type="text" id="department" autocomplete="off" readonly="readonly" /></td>
- <td width="100">生效时间</td>
- <td><input type="text" id="effectiveTime" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">职务</td>
- <td><input type="text" id="job" autocomplete="off" readonly="readonly" /></td>
- <td width="100">失效时间</td>
- <td><input type="text" id="expirationTime" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">手机号码</td>
- <td><input type="text" id="phoneNumber" autocomplete="off" readonly="readonly" /></td>
- <td width="100">发布时间</td>
- <td><input type="text" id="publishTime" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">办公电话</td>
- <td><input type="text" id="officePhone" autocomplete="off" readonly="readonly" /></td>
- <td width="100">发布人</td>
- <td><input type="text" id="publishPersonal" autocomplete="off" readonly="readonly" /></td>
- </tr>
- <tr>
- <td width="100">发布单位</td>
- <td><input type="text" id="publishUnit" autocomplete="off" readonly="readonly" /></td>
- <td width="100">头像</td>
- <td>
- <div class="imgBox">
- </div>
- <input type="hidden" id="file" />
- </td>
- </tr>
- <tr>
- <td width="100">标识编码</td>
- <td><input type="text" id="identifyEncoding" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100" height="100">专业领域简介</td>
- <td colspan="3" height="100"> <textarea name="" rows="" cols=""
- id="introductionFieldExpertise" readonly="readonly"></textarea></td>
- </tr>
- <tr>
- <td colspan="4" style="text-align: center; border: 0;">
- <button class="btns exportWord">导出word</button>
- </td>
- </tr>
- </table>
- </div>
- <script src="../js/adjustHeight.js"></script>
- <script src="../css/laydate/laydate.js"></script>
- <script src="js/detailZhiShiKuPolicyExpert.js"></script>
- </body>
- </html>
|