Browse Source

input 上下左右居中

chenlei1231 1 month ago
parent
commit
b746eca13e
1 changed files with 6 additions and 2 deletions
  1. 6 2
      src/views/adweb/subscribePlan/components/SubscribePlanForm.vue

+ 6 - 2
src/views/adweb/subscribePlan/components/SubscribePlanForm.vue

@@ -36,7 +36,7 @@
               </a-form-item>
             </a-col>
 
-            <div class="ant-modal-title" id="vcDialogTitle0" style="margin-bottom: 15px;">SEO指标</div>
+            <div class="ant-modal-title" id="vcDialogTitle0" style="margin-bottom: 15px">SEO指标</div>
 
             <a-col :span="24">
               <a-form-item label="文章" v-bind="validateInfos.article">
@@ -73,7 +73,6 @@
                 <a-input-number v-model:value="formData.pageView" placeholder="访问数量" style="width: 100%" />
               </a-form-item>
             </a-col>
-
           </a-row>
         </a-form>
       </template>
@@ -220,4 +219,9 @@
   .antd-modal-form {
     padding: 14px;
   }
+  :deep(.ant-form-item-control-input-content) {
+    display: flex;
+    justify-content: center;
+    align-items: center;
+  }
 </style>