Browse Source

Merge remote-tracking branch 'origin/gzb' into wzl

gzb
wangzhonglu 8 months ago
parent
commit
972b414aa5

+ 18
- 1
src/assets/less/common.less View File

@@ -63,6 +63,9 @@ body,
63 63
 .ivu-table {
64 64
   color: #798cb5;
65 65
   background-color: #ffffff66;
66
+  .ivu-table-header {
67
+    background-color: #e9f0ff;
68
+  }
66 69
   .ivu-table-header,
67 70
   .ivu-table-fixed-header {
68 71
     thead tr {
@@ -136,6 +139,7 @@ body,
136 139
   }
137 140
   .ivu-table-cell {
138 141
     line-height: 1.6;
142
+    padding: 0 8px;
139 143
   }
140 144
   // .ivu-table-overflowX {
141 145
   //   overflow: visible;
@@ -168,6 +172,9 @@ body,
168 172
       color: #339cff;
169 173
     }
170 174
   }
175
+  .ivu-page-options-sizer {
176
+    margin-right: 0;
177
+  }
171 178
 }
172 179
 //按钮圆角
173 180
 .ivu-btn,
@@ -202,6 +209,17 @@ fieldset[disabled] .ivu-input,
202 209
   background-color: #f3f4fc;
203 210
   user-select: none;
204 211
 }
212
+//下拉组件全局样式
213
+.ivu-select-dropdown-list {
214
+  padding: 0 5px;
215
+  .ivu-select-item-selected{
216
+    border-radius: 6px;
217
+  }
218
+  .ivu-select-item:hover {
219
+    color: #2d8cf0;
220
+    border-radius: 6px;
221
+  }
222
+}
205 223
 // 二级路由页面全局样式
206 224
 .page_root {
207 225
   width: 100%;
@@ -388,7 +406,6 @@ fieldset[disabled] .ivu-input,
388 406
     align-items: center;
389 407
     color: #339dff;
390 408
     > div {
391
-      margin: 0 4px;
392 409
       padding: 0 4px;
393 410
       cursor: pointer;
394 411
       &.action_del {

+ 2
- 1
src/views/schoolSection/applicationStrategy/appStrategyManage.vue View File

@@ -44,7 +44,7 @@
44 44
           >
45 45
             修改
46 46
           </div>
47
-          <div v-if="searchForm.hasst" @click="toResetAppStrategy()">重置</div>
47
+          <div   style="font-size: 13px" v-if="searchForm.hasst" @click="toResetAppStrategy()">重置</div>
48 48
           <div @click="toSelectAppStrategy()">引用</div>
49 49
         </div>
50 50
       </div>
@@ -439,6 +439,7 @@ export default {
439 439
         display: flex;
440 440
         justify-content: flex-start;
441 441
         align-items: center;
442
+        font-size: 14px;
442 443
         > div {
443 444
           margin-left: 16px;
444 445
           cursor: pointer;

+ 4
- 1
src/views/schoolSection/strategy/publicStrategy.vue View File

@@ -2,7 +2,10 @@
2 2
   <div class="index1">
3 3
     <div class="operation">
4 4
       <span @click="curState = 2">修改</span>
5
-      <span v-if="curClass.type === strategyInfo.sttype" @click="Reset"
5
+      <span
6
+        style="font-size: 13px"
7
+        v-if="curClass.type === strategyInfo.sttype"
8
+        @click="Reset"
6 9
         >重置</span
7 10
       >
8 11
       <span @click="getstPad_list">引用</span>

Loading…
Cancel
Save