Browse Source

no message

sys 3 years ago
parent
commit
99c9571f3e
1 changed files with 12 additions and 0 deletions
  1. 12 0
      components/en-from/en-input/en-input.vue

+ 12 - 0
components/en-from/en-input/en-input.vue

@@ -5,6 +5,7 @@
         {{ label }}
         {{ label }}
       </view>
       </view>
       <input
       <input
+          class="input-item"
           :name="name"
           :name="name"
           :type="type"
           :type="type"
           :maxlength="maxlength"
           :maxlength="maxlength"
@@ -92,6 +93,17 @@ export default {
         font-size: 32rpx;
         font-size: 32rpx;
         color: #333333;
         color: #333333;
       }
       }
+      .input-item{
+        border:none;
+        outline: none;
+        font-size: 32rpx;
+        color: #333333;
+      }
+      .input-item::placeholder{
+        color: #999999;
+        font-size: 32rpx;
+      }
+
     }
     }
   }
   }