Browse Source

💄 去掉size:large 回头改用全局设置组件大小

晓晓晓晓丶vv 4 years ago
parent
commit
967257da5b

+ 1 - 3
src/components/tool-bar/index.vue

@@ -9,13 +9,11 @@
          :key="field">
       <p class="label">{{label[index]}}</p>
       <a-input v-model:value="fields[field]"
-               :placeholder="label[index]"
-               size="large" />
+               :placeholder="label[index]" />
     </div>
     <slot />
     <div class="tool-bar-item">
       <a-button type="primary"
-                size="large"
                 :loading="btn_loading"
                 @click="onConfirm">
         <template #icon>

+ 0 - 1
src/views/account/account.vue

@@ -5,7 +5,6 @@
       <div class="tool-bar-item">
         <p class="label">平台</p>
         <a-select class="full-width"
-                  size="large"
                   v-model:value="platform">
           <a-select-option value="platform1">平台1</a-select-option>
           <a-select-option value="platform2">平台2</a-select-option>

+ 2 - 3
src/views/put/put-ad-plan.vue

@@ -4,12 +4,11 @@
               :label="['账户ID', '邮箱', '用户名', '计划名称', '广告组名称']">
       <template #picker>
         <p class="label">日期</p>
-        <a-range-picker size="large" />
+        <a-range-picker />
       </template>
       <div class="tool-bar-item">
         <p class="label">计划状态</p>
-        <a-select class="full-width"
-                  size="large">
+        <a-select class="full-width">
           <a-select-option value="status1">状态一</a-select-option>
         </a-select>
       </div>

+ 1 - 1
src/views/put/put-data.vue

@@ -4,7 +4,7 @@
               :label="['公众号名称', '用户名']">
       <template #picker>
         <p class="label">日期</p>
-        <a-range-picker size="large" />
+        <a-range-picker />
       </template>
     </tool-bar>
     <a-table :columns="columns"