上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 1.设置限制只能输入中文 校验中文的正则:/^[\u4e00-\u9fa5]+$/ rules: { chineseName: [ { required: true, message: "请输入中文名", trigger: "blur" }, { validator: function(rule, 阅读全文
posted @ 2022-12-26 11:31 幻影之舞 阅读(3714) 评论(0) 推荐(0)
摘要: 使用uniapp发送请求时,要用到自身的API,uni.request 可以将其封装在index文件里,后面使用的时候也更加方便 const BASE_URL = 'https://localhost:8081/api'; export const $req = (option) => { retu 阅读全文
posted @ 2022-12-22 16:20 幻影之舞 阅读(37) 评论(0) 推荐(0)
摘要: 效果; html代码 <el-select v-model="selectTree" placeholder="请选择..." size="mini" clearable ref="select" > <el-option hidden key="id" :value="selectTree" :l 阅读全文
posted @ 2022-12-09 11:21 幻影之舞 阅读(674) 评论(0) 推荐(0)
摘要: window.addEventListener("visibilitychange",() => { console.log(document.hidden) isShowToasts.value = !document.hidden }); 在onMounted里加上上面代码,然后用一个变量来绑定 阅读全文
posted @ 2022-12-06 14:23 幻影之舞 阅读(66) 评论(0) 推荐(0)
摘要: 1. 第一种方式 div{ /* div的CSS样式 */ position : absolute; width : 100%; height : 100%; } *{ /* CSS Reset */ margin : 0; padding : 0; } a、 给整个div设置一个绝对定位,然后给该 阅读全文
posted @ 2022-12-06 10:57 幻影之舞 阅读(15996) 评论(0) 推荐(0)
摘要: 插件:vue-clipboard3 安装: npm install --save vue-clipboard3 使用的页面引入 import useClipboard from "vue-clipboard3"; const { toClipboard } = useClipboard() 使用: 阅读全文
posted @ 2022-11-24 18:45 幻影之舞 阅读(794) 评论(0) 推荐(0)
摘要: 需求: 要搞一个实时提醒弹窗,刚开始用的element plus里的Notification, 但后面原型图又改了,加上了交互,需要有点击功能 element plus 这时候就显得很鸡肋了,而且他的自定义html只支持原生,做个点击功能都费劲 所以这时候推荐一款插件:Toastification 阅读全文
posted @ 2022-11-23 18:14 幻影之舞 阅读(2610) 评论(2) 推荐(0)
摘要: // body类 bodyClassName: [], // 容器元素 container: document.body, // 单击即关闭 closeOnClick: true, // 允许通过拖动和滑动事件关闭 draggable: true, draggablePercent: 0.6, // 阅读全文
posted @ 2022-11-23 16:31 幻影之舞 阅读(258) 评论(0) 推荐(0)
摘要: 效果图: text-align: justify; text-align-last: justify; 阅读全文
posted @ 2022-11-22 16:17 幻影之舞 阅读(81) 评论(0) 推荐(0)
摘要: Web Speech API 有两个部分:SpeechSynthesis 语音合成 (文本到语音 TTS)和 SpeechRecognition 语音识别(异步语音识别) SpeechSynthesis.cancel():移除所有语音队列中的谈话。 SpeechSynthesis.getVoices 阅读全文
posted @ 2022-11-22 13:30 幻影之舞 阅读(367) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页