0
点赞
收藏
分享

微信扫一扫

vue(elementUI)日期组件去掉“此刻”为定时任务推送

年夜雪 2022-03-30 阅读 93
前端

日期组件去掉“此刻”,为定时任务推送:
默认如下:
在这里插入图片描述目标如下:
在这里插入图片描述
实现如下:

<el-date-picker
          v-model="form.timingSendTime"
          type="datetime"
          placeholder="选择日期时间"
          :picker-options="pickerOptions"
          @focus="focus">
        </el-date-picker>
mothed:
focus() {
      this.$nextTick(() => {
        document
          .getElementsByClassName('el-button--text')[0]
          .setAttribute('style', 'display:none')
      })
    },
举报

相关推荐

0 条评论