antd vue 在v-for里有 a-select 应该如何获取多个a-select的值?

<a-row type="flex" style="margin-bottom:10px" :gutter="16" v-for="(item, index) in orderMainModel.orderGoods" :key="index">
                <a-col :span="6" style="display: none">
                  <a-form-model-item>
                    <a-input placeholder="id" v-model="item.id" />
                  </a-form-model-item>
                </a-col>
                <a-col :span="5">
                <a-form-model-item>
                  <a-select
                    show-search
                    placeholder="产品名称"
                    style="width: 200px"
                    :default-active-first-option="false"
                    :show-arrow="false"
                    :filter-option="false"
                    :not-found-content="null"
                    @search="handleNameSearch"
                    @change="handleNameChange"
                  >
                    <a-select-option v-for="d in nameData" :key="d.value">
                      {{ d.text }}
                    </a-select-option>
                  </a-select>
                </a-form-model-item>
                </a-col>

上方代码是在表单里,我在提交表单的时候应该如何获取多个select里的值呢?

定义一个数组和key对应就可以了啊