| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <link href="./css/bootstrap.min14ed.css?v=3.3.6" rel="stylesheet">
- <link href="./css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
- <link href="./css/animate.min.css" rel="stylesheet">
- <link href="./css/style.min862f.css?v=4.1.0" rel="stylesheet">
- <link href="./css/bootstrap-treeview.css" rel="stylesheet">
- <link rel="stylesheet" href="./css/layer/skin/default/layer.css" />
- <style>
- .layui-layer-title {
- background-color: #f0ad4e;
- }
-
- .form {
- margin: auto;
- }
-
- .form .formTitle {
- position: relative;
- left: 0px;
- text-align: right;
- white-space: nowrap;
- font-weight: normal;
- width: 90px;
- padding-right: 15px;
- }
-
- .form .formValue input.form-control {
- height: 30px;
- line-height: 30px;
- padding-top: 0px;
- padding-bottom: 0px;
- padding-right: 0px;
- padding-left: 5px;
- resize: none;
- border-radius: 0px;
- box-shadow: none;
- }
-
- .form-control {
- display: block;
- height: 34px;
- padding: 6px 12px;
- line-height: 1.42857143;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ddd;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- display: -webkit-inline-box;
- }
-
- .form .formValue {
- position: relative;
- padding: 5px;
- width: auto;
- width: 100%;
- }
-
- #F_OrganizeId {
- width: 100%;
- }
-
- #F_FullName {
- width: 100%;
- }
-
- .ibox-title {
- position: relative;
- }
-
- .ibox-titles {
- background-color: #fff;
- border-color: #e7eaec;
- -webkit-border-image: none;
- -o-border-image: none;
- border-image: none;
- border-style: solid solid none;
- border-width: 4px 0 0;
- color: inherit;
- margin-bottom: 0;
- padding: 14px 15px 7px;
- min-height: 48px;
- position: absolute;
- /*width: 100%;*/
- top: 0;
- left: 0;
- display: none;
- }
-
- .ibox-toolss {
- display: inline-block;
- float: left;
- margin-top: 0;
- position: relative;
- padding: 0;
- }
-
- .btn_box {
- display: block;
- /*margin: auto;*/
- text-align: center;
- margin-top: 15px;
- }
-
- .bh {
- text-decoration: none;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- <div style="padding:20px;">
- <table class="form">
- <tbody>
- <tr>
- <th class="formTitle">所属分类</th>
- <td class="formValue">
- <select id="F_OrganizeId" name="F_OrganizeId" class="form-control required select2-hidden-accessible" tabindex="-1" aria-hidden="true">
- <option value="">服务亲和力</option>
- <option value="">沟通技巧</option>
- <option value="">在线处理</option>
- </td>
- </tr>
- <tr>
- <th class="formTitle">分类名称</th>
- <td class="formValue">
- <input id="F_FullName" name="F_FullName" type="text" class="form-control required">
- </td>
- </tr>
- </tbody>
- </table>
- <div class="btn_box">
- <button class="btn btn-info">确认</button>
- <button class="btn btn-danger">取消</button>
- </div>
- </body>
- <script src="./js/jquery.min.js"></script>
- <script src="./js/bootstrap.min.js?v=3.3.6"></script>
- <script src="./js/content.min.js?v=1.0.0"></script>
- <script src="./css/layer/layer.js"></script>
- <script>
- var index = parent.layer.getFrameIndex(window.name);
- var add = $("#F_FullName").val();
- $(".btn-info").on("click", function() {
- parent.$(".node-selected").html($("#F_FullName").val());
- })
- </script>
- </html>
|