|
@@ -52,13 +52,44 @@
|
|
|
.acClass {
|
|
|
background-color: #eeeeee;
|
|
|
}
|
|
|
- /*.bs-bars{*/
|
|
|
- /* margin-left: 17%;*/
|
|
|
- /*}*/
|
|
|
- .nav-pills li a{
|
|
|
- width: 129px;
|
|
|
- text-align: center;
|
|
|
+ .ac {
|
|
|
+ background-color: #f9fafc;
|
|
|
+ color: #4377FE!important;
|
|
|
+ font-weight: 700;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
|
|
|
+ .ac::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ width: 16px;
|
|
|
+ height: 4px;
|
|
|
+ border-radius: 2px;
|
|
|
+ background-color: #4377FE;
|
|
|
+ bottom: 8px;
|
|
|
+ left: 50%;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-pills > .ac > a {
|
|
|
+ color: #4377FE!important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bs-bars {
|
|
|
+ margin-left: 17%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-pills li{
|
|
|
+ width: 100%;
|
|
|
+ height: 60px;
|
|
|
+ line-height: 60px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-pills li a {
|
|
|
+ /* width: 130px; */
|
|
|
+ text-align: center;
|
|
|
+ color: #333;
|
|
|
}
|
|
|
|
|
|
.btn_ {
|
|
@@ -398,7 +429,8 @@
|
|
|
</head>
|
|
|
|
|
|
<div class="bg-EBEFFA padding-30">
|
|
|
- <form class="form-horizontal m" id="form-postChange-edit" th:object="${declaration}">
|
|
|
+ <div class="bg-9ac" style="padding: 18px;">
|
|
|
+ <form class="form-horizontal" id="form-postChange-edit" th:object="${declaration}">
|
|
|
<input id="declarationId" type="hidden" th:field="*{declarationId}">
|
|
|
<input name="taskId" type="hidden" th:field="*{taskId}">
|
|
|
|
|
@@ -406,39 +438,19 @@
|
|
|
|
|
|
<!-- 导航 -->
|
|
|
<div class="need-fill-gap"></div>
|
|
|
- <div id="dingwei" class="need-fixed-top-tab" style="padding-bottom: 0;">
|
|
|
- <ul class="top-file-nav bg-white width-100 flex">
|
|
|
- <li id="li_post1" class="li-a-active" onclick="chooseLi(this)">
|
|
|
- <a href="#post1">办理信息</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post2" class="" onclick="chooseLi(this)">
|
|
|
- <a href="#post2">增员</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post3" class="" onclick="chooseLi(this)">
|
|
|
- <a href="#post3">岗位变动</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post4" class="" onclick="chooseLi(this)">
|
|
|
- <a href="#post4">减员</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post5" class="" onclick="chooseLi(this)" th:if="${declaration.declarationStatus != '3' and declaration.declarationStatus != '5'}">
|
|
|
- <a href="#post5">岗位设置备案表</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post6" class="" onclick="chooseLi(this)">
|
|
|
- <a href="#post6">来文</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- <li id="li_post7" class="" onclick="chooseLi(this)" th:if="${filePermissions} != '1'">
|
|
|
- <a href="#post7">意见</a>
|
|
|
- <div class="gwbdNum nav-counter"></div>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
+ <div id="dingwei" class="need-fixed-top-tab" style="padding: 0;background-color: white;">
|
|
|
+ <ul class="nav-pills width-100 flex justify-around align-center">
|
|
|
+ <li id="li_post1" class="ac"><a href="#post1">办理信息</a></li>
|
|
|
+ <li id="li_post2"><a href="#post2">增员</a></li>
|
|
|
+ <li id="li_post3"><a href="#post3">岗位变动</a></li>
|
|
|
+ <li id="li_post4"><a href="#post4" class="">减员</a></li>
|
|
|
+ <li id="li_post5" th:if="${declaration.declarationStatus != '3' and declaration.declarationStatus != '5'}"><a href="#post5" class="">岗位设置备案表</a></li>
|
|
|
+ <li id="li_post6"><a href="#post6" class="">来文</a></li>
|
|
|
+ <li id="li_post7" th:if="${filePermissions} != '1'"><a href="#post7" class="">意见</a></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
-
|
|
|
+ <div style="width: 100%;height: 20px"></div>
|
|
|
<!--办理信息-->
|
|
|
<div class="row ibox border-none" style="box-shadow: none;border: none;" id="post1">
|
|
|
<div class="ibox-title flex justify-between align-center width-100">
|
|
@@ -688,7 +700,7 @@
|
|
|
</td>
|
|
|
<td colspan="2" class="bg-fa">事业单位备注</td>
|
|
|
<td colspan="5">
|
|
|
- <input id="remark" th:field="*{remark}" readonly name="note" class="form-control" type="text">
|
|
|
+ <input id="remark" th:field="*{remark}" readonly style="background: none;" name="note" class="form-control" type="text">
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@@ -723,12 +735,9 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
</div>
|
|
|
</form>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<!--<div class="col-sm-12 div-ul">-->
|
|
@@ -1028,7 +1037,7 @@
|
|
|
lis[i].onclick = function (e) {
|
|
|
let li = document.getElementsByClassName('ac')[0];
|
|
|
li.classList.remove('ac')
|
|
|
- e.target.classList.add('ac')
|
|
|
+ // e.target.classList.add('ac')
|
|
|
}
|
|
|
}
|
|
|
|