momentjs获取星期几

    {
      title: '星期',
      dataIndex: 'startTime',
      ellipsis: true,
      render: (text) => {
        text = moment(text - 0).weekday()
        let hook = {
          0: {
            title: '星期日',
            className: 'green',
          },
          1: {
            title: '星期一',
            className: 'blue',
          },
          2: {
            title: '星期二',
            className: 'blue',
          },
          3: {
            title: '星期三',
            className: 'blue',
          },
          4: {
            title: '星期四',
            className: 'blue',
          },
          5: {
            title: '星期五',
            className: 'blue',
          },
          6: {
            title: '星期六',
            className: 'green',
          },
        }
        return (
          <span
            className={`m-tag-status ${hook[text] && hook[text].className}`}
          >
            {hook[text] && hook[text].title}
          </span>
        )
      },
    },

人工智能学习网站

https://chat.xutongbao.top

posted @ 2024-04-15 09:37  徐同保  阅读(239)  评论(0编辑  收藏  举报  来源