Browse Source

Merge branch 'master' into cpq-dev

chenlei1231 1 month ago
parent
commit
b8a6f4ba12
1 changed files with 8 additions and 3 deletions
  1. 8 3
      src/views/adweb/subscribePlan/components/SubscribePlanForm.vue

+ 8 - 3
src/views/adweb/subscribePlan/components/SubscribePlanForm.vue

@@ -21,7 +21,8 @@
             </a-col>
             <a-col :span="24">
               <a-form-item label="关键词达标目标" v-bind="validateInfos.target">
-                <a-input-number v-model:value="formData.target" placeholder="请输入关键词达标目标" style="width: 100%" />
+                <a-input style="width: 20%" value="排名TOP" disabled />
+                <a-input-number v-model:value="formData.target" placeholder="请输入关键词达标目标" style="width: 80%" />
               </a-form-item>
             </a-col>
             <a-col :span="24">
@@ -35,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">
@@ -72,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>
@@ -219,4 +219,9 @@
   .antd-modal-form {
     padding: 14px;
   }
+  :deep(.ant-form-item-control-input-content) {
+    display: flex;
+    justify-content: center;
+    align-items: center;
+  }
 </style>