用 ElementPlus 的日历组件 Calendar 自定义渲染

这篇具有很好参考价值的文章主要介绍了用 ElementPlus 的日历组件 Calendar 自定义渲染。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

需求

使用 ElementPlus中的 Calendar 组件完成自定义渲染

分析

1. 英文改为中文

转为中文的方式:用 ElementPlus的日历组件如何改为中文

2. 修改样式

用 ElementPlus 的日历组件 Calendar 自定义渲染,Element,Arco,javascript,vue.js,ecmascript

  • 附源码
<template>
  <el-calendar>
    <template #date-cell="{ data }">
      <el-row :class="data.isSelected ? 'is-selected' : 'sds'">
        {{ data.day.split('-').slice(1).join('-') }}
        {{ data.isSelected ? '✔️' : '' }}
      </el-row>
      <div v-for="(item, index) in textContent(data.day)" :key="index">
                <e-row>
                  <el-col class="center">
                    <el-tag type="warning" class="tag">
                      <el-row v-if="item.xianyue == 0">
                        <el-col :span="17" class="tag">
                          <span>当日限约</span>
                        </el-col>
                        <el-col :span="1"></el-col>
                        <el-col :span="6" class="tag2">
                          <span>0</span>
                        </el-col>
                      </el-row>
                      <el-row v-else>
                        <el-col :span="17" class="tag">
                          <span>当日限约</span>
                        </el-col>
                        <el-col :span="1"></el-col>
                        <el-col :span="6" class="tag2">
                          <span>{{ item.xianyue }}</span>
                        </el-col>
                      </el-row>
                    </el-tag>
                  </el-col>
                </e-row>
                <el-row
                  style="margin-top: 10px"
                  class="yuyue"
                  v-if="item.yiyue && item.sy == 0"
                >
                  <el-col :span="11" class="center">
                    <span>已约</span
                    ><span class="center2" style="">0</span></el-col
                  >
                  <el-col :span="2" class="center">|</el-col>
                  <el-col :span="11" class="center">
                    <span>剩余</span><span class="center2">0</span></el-col
                  >
                </el-row>
                <el-row style="margin-top: 10px" class="yuyue" v-else>
                  <el-col :span="11" class="center">
                    <span>已约</span
                    ><span class="center2" style="">{{
                      item.yiyue
                    }}</span></el-col
                  >
                  <el-col :span="2" class="center">|</el-col>
                  <el-col :span="11" class="center">
                    <span>剩余</span
                    ><span class="center2">{{ item.sy }}</span></el-col
                  >
                </el-row>
              </div>

    </template>
  </el-calendar>
</template>

<style>
.is-selected {
  color: #1989fa;
}
  
  
</style>

<style scoped >
 
:deep .el-calendar__body {
  padding: 4px 20px 35px;
}
:deep .el-calendar-table thead th {
  color: #ffab11;
  font-weight: bold;
  font-size: 25px;
}
.tag {
  display: flex;
  align-items: center;
  height: 2.5vh;
  justify-content: center;
}
.tag2 {
  display: flex;
  align-items: center;
  height: 2.5vh;
  justify-content: center;
  font-size: 18px;
}
.aaa .is-selected .yuyue {
  color: #ffab11;
}
.aaa .datastyle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #353636;
  font-weight: 600;
}
:deep .el-calendar-table .el-calendar-day:hover {
  background-color: #faecd8;
}
:deep .el-calendar {
  --el-calendar-selected-bg-color: #faecd8;
}
.aaa .is-selected .datastyle {
  color: #ffab11;
}
.aaa .prev .datastyle {
  color: #c4c5c8;
}
.aaa .next .datastyle {
  color: #c4c5c8;
}
:deep .el-calendar {
  --el-calendar-cell-width: 130px;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffab11;
  margin-left: 5px;
  font-size: 20px;
}
:deep .el-calendar__header {
  justify-content: center;
}
</style>

<script setup lang="ts">
import { ref, reactive, toRefs, onMounted } from "vue";
import { ElMessage, ElMessageBox } from "element-plus";
  
  const state = reactive({
      tableData: [],
        //测试数据
      calendarData: [
        {
          day: "2022-11-04",
          xianyue: 400,
          yiyue: 5,
          sy: 1,
        },
        {
          day: "2022-11-05",
          xianyue: 500,
          yiyue: 5,
          sy: 1,
        },
        {
          day: "2022-11-06",
          xianyue: 200,
          yiyue: 5,
          sy: 1,
        },
        {
          day: "2022-11-07",
          xianyue: 0,
          yiyue: 0,
          sy: 0,
        },
      ],
    });
  
  
  //处理日期获取后台数据动态渲染上去
    const textContent = (date) => {
        //当前date是拿到上面日历组件当前的日期值 根据该值去筛选测试数据找到对应各个日期下对应的数据return出去
        console.log(date, 1111);
        return state.calendarData.filter((item) => {
          return date === item.day;
        });
      };

</script>

3. 自定义头部

用 ElementPlus 的日历组件 Calendar 自定义渲染,Element,Arco,javascript,vue.js,ecmascript

<el-calendar v-model="value" ref="calendar">
   <template #header="{ date }">
       <el-button-group>
           <el-button size="small" @click="selectDate('prev-year')">
               上一年
           </el-button>
           <el-button size="small" @click="selectDate('prev-month')">
               上个月
           </el-button>
       </el-button-group>
       <span>{{ date }}</span>
       <el-button-group>
           <el-button size="small" @click="selectDate('today')">今天</el-button>
           <el-button size="small" @click="selectDate('next-month')">
               下个月
           </el-button>
           <el-button size="small" @click="selectDate('next-year')">
               下一年
           </el-button>
       </el-button-group>
   </template>
<el-calendar/>



const value = ref(new Date());
const dateList = ref([])
const calendar = ref();
const selectDate = (val) => {
    dateList.value.length = 0
    calendar.value.selectDate(val);
};
function handleMonthChange(date) {
    dateList.value.push(date)
    // date 是切换后的日期,根据这个日期来计算开始日期和结束日期
    // const year = date.getFullYear();
    // const month = date.getMonth();
    // const startDate = new Date(year, month, 1); // 开始日期
    // const endDate = new Date(year, month + 1, 1); // 结束日期


    //根据开始日期和结束日期来查询数据,然后更新视图
    // ...
}

4. 增删改功能接入

用 ElementPlus 的日历组件 Calendar 自定义渲染,Element,Arco,javascript,vue.js,ecmascript文章来源地址https://www.toymoban.com/news/detail-854592.html

<template>
    <div class="container my-container">
        <a-card :bordered="false" :style="{ width: '100%' }">
            <el-calendar v-model="value" ref="calendar">
                <template #header="{ date }">
                    <el-button-group>
                        <el-button size="small" @click="selectDate('prev-year')">
                            上一年
                        </el-button>
                        <el-button size="small" @click="selectDate('prev-month')">
                            上个月
                        </el-button>
                    </el-button-group>
                    <span>{{ date }}</span>
                    <el-button-group>
                        <el-button size="small" @click="selectDate('today')">今天</el-button>
                        <el-button size="small" @click="selectDate('next-month')">
                            下个月
                        </el-button>
                        <el-button size="small" @click="selectDate('next-year')">
                            下一年
                        </el-button>
                    </el-button-group>
                </template>
                <template #date-cell="{ data }">
                    <div class="calendar-day">
                        <div :class="data.isSelected ? 'is-selected' : ''">
                            {{ data.day.split('-').slice(1).join('-') }}
                        </div>
                        {{ handleMonthChange(data.day) }}
                        <p class="duty-text">
                            值班人员:
                            <span v-for="item in tableData" :key="item.id">
                                <span v-if="item.dutyDate == data.day">
                                    {{ item.dutyUser }}
                                </span>
                            </span>
                        <div>
                            <a-button size="mini" type="text" @click="handleEdit(data)"
                                style="color: #58a7fe;">编辑</a-button>
                            <a-popconfirm content="确定要删除" @ok="handleDelete(data)">
                                <a-button size="mini" type="text" style="color: #58a7fe;">删除</a-button>
                            </a-popconfirm>
                        </div>
                        </p>
                    </div>
                </template>
            </el-calendar>
        </a-card>
        <a-modal v-model:visible="visible" :title="title" draggable :on-before-ok="handleOk" :mask-closable="false">
            <a-form ref="formRef" :model="editForm" :label-col-props="{ span: 5 }" :wrapper-col-props="{ span: 16 }">
                <a-form-item field="deptId" label="部门:">
                    <el-cascader v-model="editForm.deptId" style="min-width: 350px;" ref="cas"
                        :options="typeList.deptList" :props="props" clearable collapse-tags @change="cascaderChange"
                        placeholder="请选择">
                    </el-cascader>
                </a-form-item>
                <a-form-item field="userId" label="值班人:" :rules="[
            {
                required: true,
                message: '请选择',
            },
        ]">
                    <el-select style="min-width: 350px;" v-model="editForm.userId" placeholder="请选择">
                        <el-option v-for="(item, index) in typeList.userList" :key="index" :label="item.userName"
                            :value="item.userId" />
                    </el-select>
                </a-form-item>

            </a-form>
        </a-modal>
    </div>
</template>

<script lang="ts" setup>
import { onMounted, ref, watch, watchEffect, defineComponent, computed } from 'vue';
import { Message } from '@arco-design/web-vue';
import {
    getDutyPlanData as getInfo,
    getdept,
    getUser,
    getUserData,
    addDutyPlanData as addData,
    editDutyPlaneData as editData,
    deleteDutyPlanData as deleteData,
} from '@/api/common-management'
import { handleTree } from "@/utils/common-tools";

function findItemUser(data) {
    const currentObj = typeList.value.userLists.find(item => {
        return item.user_id == data
    })
    if (currentObj) {
        return currentObj.user_name
    }
}

const value = ref(new Date());
// 编辑
const resetEditForm = () => {
    return {
        deptId: null,
        userId: null
    }
}
const editForm = ref(resetEditForm())
const visible = ref(false)
const title = ref('')
// 编辑
function handleEdit(val) {
    editForm.value = resetEditForm()
    getInfo({ dutyDate: val.day }).then(res => {
        if (res.rows.length) {
            editForm.value = res.rows[0]
            title.value = '编辑'
        } else {
            editForm.value.dutyDate = val.day
            title.value = '添加'
        }
    })
    visible.value = true
}
const formRef = ref()
const handleOk = async () => {
    const res = await formRef.value?.validate();
    if (!res) {
        if (title.value == '编辑') {
            const tempData = {
                dutyDate: editForm.value.dutyDate,
                dutyUserId: editForm.value.userId,
                id: editForm.value.id,
                dutyUser: findItemUser(editForm.value.userId)
            }
            editData(tempData).then(res => {
                Message.success('编辑成功')
                visible.value = false
            })
        } else {
            const tempData = {
                dutyDate: editForm.value.dutyDate,
                dutyUserId: editForm.value.userId,
                // id: editForm.value.id,
                dutyUser: findItemUser(editForm.value.userId)
            }
            addData(tempData).then(res => {
                visible.value = false
                Message.success('添加成功')
            })
        }
        getTableData({
            pageNum: 1,
            pageSize: dateList.value.length,
            'params.beginTime': dateList.value[0],
            'params.endTime': dateList.value[dateList.value.length - 1],
        })
    } else {
        Message.error('请完整填写表单信息')
        return false
    }
};
// 删除
function handleDelete(val) {
    getInfo({ dutyDate: val.day }).then(res => {
        if (res?.rows[0]?.id) {
            deleteData(res.rows[0].id).then(res => {
                Message.success('删除成功')
                getTableData({
                    pageNum: 1,
                    pageSize: dateList.value.length,
                    'params.beginTime': dateList.value[0],
                    'params.endTime': dateList.value[dateList.value.length - 1],
                })
            })
        }
    })
}
const dateList = ref([])// 存放当前页所获取的所有日期
const calendar = ref();
const selectDate = (val) => {
    dateList.value.length = 0
    calendar.value.selectDate(val);
};
function handleMonthChange(date) {
    dateList.value.push(date)
}
const watchObj = computed(() => {
    return dateList.value[0]
})
watch(watchObj, (val) => {
    if (val) {
        const tempData = {
            pageNum: 1,
            pageSize: dateList.value.length,
            'params.beginTime': dateList.value[0],
            'params.endTime': dateList.value[dateList.value.length - 1],
        }
        getTableData(tempData)
    }
})
// 获取页面信息
const tableData = ref([])
const getTableData = (tempData) => {
    getInfo(tempData).then(res => {
        tableData.value = res.rows
    })
}
// 获取类型信息
const typeList = ref({
    deptList: [],
    userList: [],
    userLists: []
})
//  树选择器
const props = {
    expandTrigger: 'hover',
    label: "deptName",
    checkStrictly: true,
    value: "deptId",
}
function getTypeList() {
    getdept().then(res => {
        const temp = JSON.parse(JSON.stringify(res.data))
        typeList.value.deptList = handleTree(res.data, "deptId")
    })
    getUserData().then(res => {
        typeList.value.userLists = res.data
    })
}
const cas = ref()
function cascaderChange(data, id) {
    let nodes = cas.value.getCheckedNodes()
    getUser({ deptId: nodes[0].value }).then(res => {
        typeList.value.userList = res.rows
    })
}
const fetchData = () => {
    getTypeList()
}

onMounted(() => {
    fetchData()
});
</script>




<style scoped lang="less">
.wrapper {
    padding-top: 10px;
}

.duty-text {
    text-align: center;
    color: #939fb6;
    font-size: large;
}

.is-selected {
    color: #1989fa;
}
</style>

到了这里,关于用 ElementPlus 的日历组件 Calendar 自定义渲染的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【Flutter】Flutter 使用 table_calendar 实现自定义日历

    【Flutter】Flutter 使用 table_calendar 实现自定义日历 你好!今天我要为你介绍一个非常实用的 Flutter 日历组件—— table_calendar 。这个组件不仅功能强大、高度可定制,而且使用起来非常简单。在本文中,我会手把手教你如何使用这个组件,并分享一些实际业务中的应用示例。希

    2024年02月08日
    浏览(46)
  • python自定义日历库,与对应calendar库函数功能基本一致

    目录 自定义日历库 常用列表 日期列表 常用函数 闰年判断 月份天数 元旦序号 日历表头 星期序号 序号及天数 月历字串 打印月历 年历字串 打印年历 对比测试 测试结果 完整代码 运行结果 自定义日历库函数,并使得其与python calendar库中对应的函数功能基本一致。 month_name

    2024年03月20日
    浏览(53)
  • uni-calendar日历组件更改标点颜色和位置及多个标点显示

    uni-calendar的日历组件显示的标点只能显示一种颜色,并且标点的位置在右上角.而我们在项目中需要实现多种颜色标点的显示,并且标点要显示在日期的正下方. 改之后的效果图: 实现以上的效果我们需要对uni-calendar组件的源码进行修改就可以了,想让这个日历组件实现不同颜色的

    2024年02月12日
    浏览(52)
  • 关于uniapp中的日历组件uni-calendar中的小红点

    如果你使用过uni-calendar组件,可能你觉得这个小红点有点碍眼,但是官方给定的日历组件uni-calendar中如果你想要在某一天上添加一些信息例如:价格,签到,打卡之类,只要标记上就必定会带上小红点,那么我如何有想保留这些信息又把小红点去掉呢? 可以修改一下日历组件

    2024年02月15日
    浏览(68)
  • Element UI中el-calendar日历的使用及样式修改(年月可下拉选框选择)

    以日历形式展现当前页面。其中,年月可进行下拉选择,默认选中当天日期,用户可以自由点选日期,被选中后日期以紫色显示,鼠标在日历上移动时,日期显示出橙色。有数据的日期显示出灰色。 实现思路:删除现存在左上角年月元素,写一个下拉选框,通过css定位到正确

    2024年02月15日
    浏览(45)
  • uni-app日历组件(calendar),兼容安卓、ios、微信、百度、抖音小程序

    插件链接: https://ext.dcloud.net.cn/plugin?id=7839/ 参数 说明 类型 可选值 默认值 pointList 日期数组,控制日期底下的点 Array - [] pointColor 点的颜色 String - #fff defaultDate 默认选中的日期 String - 默认值为当天 (传YYYY-MM-DD 或者 YYYY/MM/DD格式日期) showBtn 是否显示 展开/折叠 按钮 Boolean true /

    2024年02月09日
    浏览(67)
  • 微信小程序使用vant calendar日历组件 default-date 默认选中的日期无效?

    废话少说 直接贴代码 总结:  ①: 要有一个minDate 最小可选日期,要不然无法选择之前的时间 ②: defaultDate(数组): 绑定为时间戳,,[ 起始时间,截止时间 ] , 转换时间戳时要再次getTime()否则设定默认时间失败!!!重点!!!

    2024年02月02日
    浏览(62)
  • Vue3的几款UI组件库:Naive UI、Element Plus、 Ant Design Vue、Arco Design

    vue3系列的三款ui框架简要对比: 框架 Element Plus Naive ui Ant Design Vue Arco Design 简介 element-ui Vue3版本,国内使用广泛 Vue作者推荐的Vue3ui 组件库 Ant Design 的 Vue 实现,组件的风格与 Ant Design 保持同步 ArcoDesign 主要服务于字节跳动旗下中后台产品的体验设计和技术实现 社区活跃度

    2024年02月03日
    浏览(47)
  • 基于vue和element-ui的表格组件,主推数据渲染,支持内容和方法灵活绑定,提供动态具名插槽自定义内容

            组件名为commonTable,主要是基于element-ui中的表格组件进行二次封装的组件,集成了常用的表格功能,除默认内容的显示外,还包括以下几点:         1. 状态的筛选和显示;         2. 操作按钮的显示和方法绑定;         3. 自定义具名插槽内容的封装;      

    2024年02月07日
    浏览(54)
  • uniapp zjy-calendar日历,uni-calendar日历增强版

    zjy-calendar日历是对uniapp uni-calendar日历的增强,支持圆点和文字自定义颜色。 源使用说明:https://uniapp.dcloud.net.cn/component/uniui/uni-calendar.html https://ext.dcloud.net.cn/plugin?id=13509

    2024年02月13日
    浏览(58)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包