yangc 7 anni fa
parent
commit
4d490397ce
1 ha cambiato i file con 18 aggiunte e 1 eliminazioni
  1. 18 1
      components/mobile/supplier/SupplierDetail.vue

+ 18 - 1
components/mobile/supplier/SupplierDetail.vue

@@ -39,7 +39,12 @@
       </div>
     </div>
     <div class="list">
-
+      <div class="search-content">
+        <input type="text" placeholder="请输入您要查找的型号或品牌" v-model="seekKeyword" @keyup.13="searchSeek" ref="searchSeekInput" @focus="inputGetFocus()" @blur="blur()">
+        <span @click="searchSeek" >
+        <i class="iconfont icon-sousuo"></i>
+        </span>
+      </div>
     </div>
   </div>
 </template>
@@ -94,5 +99,17 @@
         }
       }
     }
+    .list {
+      background: #f2f2f2;
+      margin-top: .21rem;
+      .search-content {
+        padding-top: .15rem;
+        padding-bottom: .15rem;
+        text-align: center;
+        input {
+          border: 1px solid #3f84f6;
+        }
+      }
+    }
   }
 </style>