| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <!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" />
- <link rel="stylesheet" href="./css/reflectCategory.css">
- <link rel="stylesheet" href="../js/layui/css/layui.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;
- }
- .msg_time {
- max-width: 240px;
- min-width: 190px;
- }
- </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 width="40%" class="reflectCategory-wrapper">
- <input type="text" id="reflectCategory" class="" autocomplete="off"/>
- <input type="hidden" id="keyId">
- <div class="reflectCategoryList-wrapper">
- <ul id="reflectCategoryList">
- </ul>
- </div>
- </td>
- <td width="100">发布单位</td>
- <td width="40%"><input type="text" id="publishUnit" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">发布人</td>
- <td><input type="text" id="publishPersonal" autocomplete="off" /></td>
- <td width="100">所属行业</td>
- <td><input type="text" id="industry" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">地区</td>
- <td><input type="text" id="address" autocomplete="off" /></td>
- <td width="100">发布时间</td>
- <td><input type="text" id="publishTime" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">生效时间</td>
- <td><input type="text" id="effectiveTime" autocomplete="off" /></td>
- <td width="100">失效时间</td>
- <td><input type="text" id="invalidTime" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">发文文号</td>
- <td><input type="text" id="documentNumber" autocomplete="off" /></td>
- <td width="100">发文单位</td>
- <td><input type="text" id="documentUnit" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">标识编码</td>
- <td><input type="text" id="identifyEncoding" autocomplete="off" /></td>
- <td width="100">附件</td>
- <td>
- <div class="fileBox">
- <!--<span class="files">文件1<i class="fa fa-remove"></i></span>-->
- </div>
- <input class="input" type="file" name="upFile" id="upFile" multiple="multiple" style="display: none;">
- <input class="input" type="button" value="上传" id="scwj" />
- <input class="input" type="button" value="删除附件" id="scfj" style="display:none;" />
- <input type="hidden" id="file" />
- <span style="color:#FF0000; border: none;">
- (文件格式为png,jpg,mp4,mp3,pdf,doc,docx,xls,xlsx)
- </span>
- <!-- <input type="text" id="" autocomplete="off" /> -->
- </td>
- </tr>
- <tr>
- <td width="100">政策名称</td>
- <td colspan="3"><input type="text" id="policyName" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100">解答单位</td>
- <td colspan="3"><input type="text" id="answeringUnit" autocomplete="off" /></td>
- </tr>
- <tr>
- <td width="100" height="100">热点问题/名词解释</td>
- <td colspan="3" height="100"> <textarea name="" rows="" cols="" id="hotIssues"></textarea></td>
- </tr>
- <tr>
- <td width="100" height="100">内容解答</td>
- <td colspan="3" height="100"> <textarea name="" rows="" cols="" id="contentAnswer"></textarea></td>
- </tr>
- </table>
- <p style="text-align: center;">
- <button class="btns save">保存</button>
- </p>
- </div>
- <script src="../js/layui/layui.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script src="../css/laydate/laydate.js"></script>
- <script src="./js/reflectCategory.js"></script>
- <script src="js/addOrEditZhiShiKuHotLssues.js"></script>
- </body>
- </html>
|