elementui 日期选择器el-date-picker给指定日期添加圆点标注

    
        ```

对需要添加圆点的日期进行判断
arrayTime为需要添加圆点的日期

  cellClassName (date) {
  if (this.arrayTime.includes(this.dateFormatter('YYYY-MM-DD')(null, null, date))) {
    return 'badge'
  }
},```

添加样式 在style标签中加入scoped样式会不生效 使用popper-class类名避免样式冲突

.picker-popper .el-date-table__row .badge::after {
  position: absolute;
  content: "";
  left: 17px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #8080ff;
}```

你可能感兴趣的:(umyui,el-date-picker,elementui,javascript,前端)