lilei hace 4 años
padre
commit
5727a0f93f

+ 1 - 1
src/views/evaluation/evaluationItem/AddEvaIndexModal.vue

@@ -27,7 +27,7 @@
             </a-form-item>
           </a-col>
         </a-row>
-        <a-form-item :wrapper-col="{ span: 24, offset: 10 }">
+        <a-form-item :wrapper-col="{ span: 15, offset: 9 }">
           <a-button :loading="loading" id="addEvaIndexModal-submit" type="primary" @click="handleSubmit()">
             保存
           </a-button>

+ 1 - 1
src/views/evaluation/evaluationItem/AddEvaItemModal.vue

@@ -45,7 +45,7 @@
             </a-form-item>
           </a-col>
         </a-row>
-        <a-form-item :wrapper-col="{ span: 24, offset: 10 }">
+        <a-form-item :wrapper-col="{ span: 15, offset: 9 }">
           <a-button :loading="loading" id="addEvaItemModal-submit" type="primary" @click="handleSubmit()">
             保存
           </a-button>

+ 6 - 6
src/views/evaluation/evaluationItem/SetEvaItemModal.vue

@@ -9,8 +9,8 @@
       @cancle="cancel"
       :width="'60%'">
       <a-row :gutter="24" class="header">
-        <span>请给考评项目为【{{ itemName }}】设置考评指标</span>
-        <a-button id="setEvaItemModal-add" type="primary" @click="openModal">新增</a-button>
+        <div>请给考评项目为【{{ itemName }}】设置考评指标</div>
+        <a-button id="setEvaItemModal-add" type="primary" @click="openModal">新增考评指标</a-button>
       </a-row>
       <a-table
         ref="table"
@@ -86,7 +86,7 @@ export default {
       {
         title: '考评指标名称',
         dataIndex: 'name',
-        width: 200,
+        width: 300,
         align: 'center'
       },
       {
@@ -162,10 +162,10 @@ export default {
 	.header {
 		font-size: 16px;
 		font-weight: 600;
-		margin-bottom: 20px;
+    padding: 0 15px 20px 15px;
 	}
 
-	.header span {
-		margin-right: 20px;
+	.header div {
+		margin-bottom: 20px;
 	}
 </style>