上一页 1 2 3 4 5 6 7 ··· 129 下一页
摘要: startCountdown() { if (this.countdown > 0) { this.timer = setInterval(() => { if (this.countdown > 0) { this.countdown--; this.getTimeFn(); } else { t 阅读全文
posted @ 2025-03-06 09:14 ThisCall 阅读(98) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-01-15 17:23 ThisCall 阅读(14) 评论(0) 推荐(0)
摘要: el-input输入框只能输入中文,英文,邮箱,手机号 1.设置限制只能输入中文 校验中文的正则:/^[\u4e00-\u9fa5]+$/ rules: { chineseName: [ { required: true, message: "请输入中文名", trigger: "blur" }, 阅读全文
posted @ 2025-01-14 16:14 ThisCall 阅读(742) 评论(0) 推荐(0)
摘要: .page-video-notime video::-webkit-media-controls-timeline { display: none; } 阅读全文
posted @ 2025-01-10 16:35 ThisCall 阅读(54) 评论(0) 推荐(0)
摘要: :class="[`sys-status-plan-require${scope.row.relatedFlag}`]" 阅读全文
posted @ 2025-01-07 15:57 ThisCall 阅读(21) 评论(0) 推荐(0)
摘要: :wrapperClosable="false" 阅读全文
posted @ 2025-01-03 11:40 ThisCall 阅读(184) 评论(0) 推荐(0)
摘要: // 创建一个临时的URL指向MP4文件 const url = URL.createObjectURL(yourMp4BlobOrFile); // 创建一个临时的video元素 const video = document.createElement('video'); video.src = 阅读全文
posted @ 2025-01-02 15:47 ThisCall 阅读(194) 评论(0) 推荐(0)
摘要: import store from '@/store' /** * 字符权限校验 * @param {Array} value 校验值 * @returns {Boolean} */ export function checkPermi(value) { if (value && value ins 阅读全文
posted @ 2024-12-31 10:45 ThisCall 阅读(232) 评论(0) 推荐(0)
摘要: <template> <div> <el-dialog v-bind="$attrs" v-on="$listeners" @open="onOpen" @close="onClose" :title="title" width="800px" > <el-form ref="elForm" :mo 阅读全文
posted @ 2024-12-26 17:33 ThisCall 阅读(32) 评论(0) 推荐(0)
摘要: <video ref="videoPlayer" id="my-video" preload="meta" height="200px" width="300px" data-setup="{}" autoplay controls > <source src="@/assets/cs.mp4" t 阅读全文
posted @ 2024-12-26 14:50 ThisCall 阅读(94) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 129 下一页