psaren / taro-ui-vue

UI KIT for Taro/vue
MIT License
206 stars 38 forks source link

两个ATinput 数据绑定相互影响 #134

Closed volitantlv closed 3 years ago

volitantlv commented 3 years ago
    <AtInput
      title="联系电话:"
      type="phone"
      required
      placeholder="请输入电话"
      :value="form.wssTel"
      :onChange="e => form.wssTel = e"
    />
    <!-- 发布人员 -->
    <atInput
      title="发布人:"
      required
      placeholder="请输入发布人"
      :onChange="e => form.wssCrePersonName =e"
      :value="form.wssCrePersonName"
    />

当我使用两个input的时候,第一个数据改变会影响到下面一个的数据

volitantlv commented 3 years ago

image

volitantlv commented 3 years ago

但是下面的不会影响上面的

psaren commented 3 years ago

AtInput 需要传name属性,作为输入框的唯一标识