猿问

elementui input带提示框 选中传参问题

最近用了elementui做项目,遇到一些问题。

需求:选中提示内容之后 给datatable对应行row的id赋值,(后台要求传id,不传input的值)。

问题:自定义table嵌套 带提示的input,select函数api上自带一个参数,我额外添加一个参数row之后,就获取不到当前的选中的数据?

<el-table-column align="center" prop="futuresContractId" label="采购合约" width="120">          

          <template scope="scope">

                 <el-autocomplete

                               class="inline-input1"

                               v-model="scope.row.id"

                              :value="scope.row.futuresContractId"

                              :fetch-suggestions="querySearch"

                               placeholder="请输入"

                               :trigger-on-focus="false"

                              @select="handleSelect(scope.row)"

                           >

                   </el-autocomplete>

          </template>

  </el-table-column>

  

https://img.mukewang.com/5c27112100014da212690140.jpg

https://img1.mukewang.com/5c27112c00013cf801400212.jpg

肥皂起泡泡
浏览 1902回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答