不支持
摘要: 禁止选择今天之后的日期 (当天可选) const disabledDate = (time) => { return time.getTime() > Date.now() } 禁止选择今天之前的日期 (当天可选) const disabledDates = (time) => { return t 阅读全文
posted @ 2024-11-05 17:42 骑上我的小摩托 阅读(58) 评论(0) 推荐(0) 编辑
摘要: <svg> <defs> <filter id="shadow" x="0" y="0" width="70" height="70"> <!-- 偏移量 --> <feOffset in="SourceAlpha" dx="30" dy="20" result="offset"></feOffse 阅读全文
posted @ 2024-11-04 10:06 骑上我的小摩托 阅读(6) 评论(0) 推荐(0) 编辑
摘要: const newWindow = window.open( '', '_blank', 'top=300,left=300,width=800,height=650,menubar=no,toolbar=no,status=no,scrollbars=yes' ) newWindow.docume 阅读全文
posted @ 2024-11-01 09:30 骑上我的小摩托 阅读(3) 评论(0) 推荐(0) 编辑
摘要: [ { "name": "北京市", "code": "110000", "city": [ { "name": "市辖区", "code": "110100", "area": [ {"name": "东城区","code": "110101"}, {"name": "西城区" 阅读全文
posted @ 2024-09-20 10:21 骑上我的小摩托 阅读(3) 评论(0) 推荐(0) 编辑
摘要: //省 <a-select v-model:value="formState.address" style="width: 180px; margin-right: 20px" :options="province.map((prov) => ({ value: prov.name }))" @ch 阅读全文
posted @ 2024-09-20 10:18 骑上我的小摩托 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 首先你得安装好Ant Design 第二步,main.js import dayjs from 'dayjs'; import 'dayjs/locale/zh-cn'; dayjs.locale('zh-cn'); 第三步: App.vue //引入 import zhCN from 'ant-d 阅读全文
posted @ 2024-08-30 09:24 骑上我的小摩托 阅读(34) 评论(0) 推荐(0) 编辑
摘要: import { notification } from 'ant-design-vue' type NoticeType = 'info' | 'success' | 'error' | 'warning' // 保证 notification提示不重复 const messageSet = ne 阅读全文
posted @ 2024-08-26 10:09 骑上我的小摩托 阅读(10) 评论(0) 推荐(0) 编辑
摘要: //绿色.text { background-color: #06a18d; color: #fff; letter-spacing: 0; line-height: 16px; padding: 0 2px; text-align: center; position: absolute; widt 阅读全文
posted @ 2024-07-31 18:05 骑上我的小摩托 阅读(7) 评论(0) 推荐(0) 编辑
摘要: window.open('https://www.cnblogs.com/FuGui-Wang','_blank','top=300,left=300,width=800,height=650,menubar=no,toolbar=no,status=no,scrollbars=yes') 打开一个 阅读全文
posted @ 2024-07-24 11:14 骑上我的小摩托 阅读(1) 评论(0) 推荐(0) 编辑
摘要: box-shadow: 0 1px 2px -2px rgb(0 0 0 / 16%), 0 3px 6px 0 rgb(0 0 0 / 12%), 0 5px 12px 4px rgb(0 0 0 / 9%); } 阅读全文
posted @ 2024-07-05 12:00 骑上我的小摩托 阅读(1) 评论(0) 推荐(0) 编辑