创建灵活的表单布局,每行显示不同长度的输入框

1.项目中需要对表单中某一行的位置进行移动,但是会遇到问题,比如:有时一行需要显示一个输入框,有时一行需要显示两个输入框,你根据后端返回的数据进行循环渲染,就会有问题,利用row和col布局,一行显示一个是没有问题的,但是如果一行显示两个就会有问题,移动位置也会出现问题,搞了一下午,终于整出来了,特此记录一下。

2.话不多说,直接展示

  computed: {
    inputRows() {
      // Group inputs into rows based on isShort value
      const rows = [];
      let currentRow = [];
       //this.entityData是后端返回的数据
      for (const input of this.entityData) {
        if (currentRow.length === 0 || input.isShort === currentRow[0].isShort) {
          currentRow.push(input);
        } else {
          rows.push(currentRow);
          currentRow = [input];
        }
      }
      if (currentRow.length > 0) {
        rows.push(currentRow);
      }
      return rows;
    }
  },

应该我不说你们也应该知道computed是干什么的

之后就是渲染的问题了

    <a-row v-for="(rowInputs, rowIndex) in inputRows" :key="rowIndex">
      <a-col v-for="input in rowInputs" :key="input.order" :span="getColSpan(input.isShort)">
        <input type="text" :placeholder="input.label" class="input-field" />
      </a-col>
    </a-row>

 现在基本就差不多了,之后你就可以根据你自己的项目需求在进行修改即可。

觉得还不错的话,一键三连哦!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值