Przeglądaj źródła

Merge remote-tracking branch 'origin/feature/yc-apply_purchase_new-0126' into feature/yc-apply_purchase_new-0126

yangc 8 lat temu
rodzic
commit
96719a219d
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      components/applyPurchase/BatchPublish.vue

+ 2 - 2
components/applyPurchase/BatchPublish.vue

@@ -81,13 +81,13 @@
           </label>
         </td>-->
         <td>
-          <input type="text" class="form-control" v-model="modifyObj.code" :class="{'error': !validObj.code}" maxlength="30" @blur="checkCode" @input="onCodeChange" >
+          <input type="text" class="form-control" v-model="modifyObj.code" :class="{'error': !validObj.code}" @blur="checkCode" @input="onCodeChange" >
           <ul v-show="showSimilarCodeList">
             <li v-for="sCode in similarCode" @click="setCode(sCode.code)">{{sCode.code}}</li>
           </ul>
         </td>
         <td>
-          <input type="text" class="form-control" v-model="modifyObj.brand" :class="{'error': !validObj.brand}" maxlength="20" @blur="checkBrand" @input="onBrandChange">
+          <input type="text" class="form-control" v-model="modifyObj.brand" :class="{'error': !validObj.brand}" @blur="checkBrand" @input="onBrandChange">
           <ul class="brand-similar-list" v-show="showSimilarBrandList">
             <li v-for="sBrand in similarBrand" @click="setBrand(sBrand.nameEn)">{{sBrand.nameEn}}</li>
           </ul>