antd日期选择器怎么拿到值

发布于 2022-09-12 04:06:41 字数 409 浏览 11 评论 0

用的antd vue,代码是下面这样,我只有dateChange不传参数,才能通过dateString拿到我想要的值,但是我想record,index和dateString同时拿到,因为日期选择器每行都有,我得知道是哪行触发了日期选择器,求各位大神们解惑

     <template slot="dateedit"  slot-scope="text, record, index" >
      <a-date-picker  @change="dateChange" />
     </template>
  dateChange(date, dateString) {
      console.log(date, dateString )
    } //拿值

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆で 2022-09-19 04:06:41

用 call 或者 apply, 以下 ...arguments 用来展开原始事件收到的参数

<template slot="dateedit"  slot-scope="text, record, index" >
  <a-date-picker  @change="dateChange.call(this, ...arguments, 自定义参数1, 自定义参数2)" />
</template>

// or 

<template slot="dateedit"  slot-scope="text, record, index" >
  <a-date-picker  @change="dateChange.apply(this, [...arguments, 自定义参数1, 自定义参数2])" />
</template>

对应的事件代码:

dateChange(date, dateString, 自定义参数1, 自定义参数2) {
  // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文