会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
稳住别慌
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
14
下一页
2024年1月11日
TS踩坑
摘要: 1、*.d.ts文件中声明了命名空间,但是在页面中用的时候提示“找不到该命名空间” 解决方案: 切记:不要给命名空间加export 【注】1、*.d.ts文件顶级声明declare最好不要跟export同级使用,不然在其他需要引用这个*.d.ts的内容的时候,就需要手动import引入了 2、*.d
阅读全文
posted @ 2024-01-11 17:26 稳住别慌
阅读(27)
评论(0)
推荐(0)
编辑
2023年10月12日
a-form校验同时存在warning和error,并且warning不影响提交
摘要: <a-form-item label="名称" name="remark" :validate-status="validateRemarkStatus" :help="validateRemarkHelp" > <a-input v-model:value="formState.remark" p
阅读全文
posted @ 2023-10-12 11:32 稳住别慌
阅读(49)
评论(0)
推荐(0)
编辑
2023年9月5日
antd限制开始时间与结束时间范围是30天,并不能选择当前日期之后的日期 vue3(默认展示近7天)
摘要: <a-range-picker :value="hackValue || dateArr" :disabled-date="disabledDate" style="width: 240px" separator="~" :allow-clear="false" @change="onChange"
阅读全文
posted @ 2023-09-05 16:11 稳住别慌
阅读(768)
评论(0)
推荐(0)
编辑
2023年8月30日
用伪类的方式给div加分割线,确保每个div宽度相同
摘要: div1:not(:last-child) ::after { content: ''; display: block; width: 1px; height: 24px; background-color: rgb(224, 224, 224); position: absolute; right
阅读全文
posted @ 2023-08-30 16:13 稳住别慌
阅读(88)
评论(0)
推荐(0)
编辑
2023年8月22日
用一个字段去查找数组中对应的另一个字段的名称(特别是dom中的显示)
摘要: typeMap.get(row.type) let typeMap = new Map(); typeList.value.map((item: any) => { typeMap.set(item.name, item.description); });
阅读全文
posted @ 2023-08-22 13:48 稳住别慌
阅读(18)
评论(0)
推荐(0)
编辑
2023年7月11日
鼠标移入svg改变svg的边框颜色
摘要: 新方法!!!!更好用 fill="currentColor" // 将fill改成currentColor 然后通过color修改,就可以改变icon的颜色了 svg.ts文件 const storageSvg=`<svg width="20.041626" height="20.041664" v
阅读全文
posted @ 2023-07-11 10:49 稳住别慌
阅读(410)
评论(0)
推荐(0)
编辑
2023年6月30日
a-modal 用deep穿透样式也无法修改
摘要: <div ref="addCloudModal" class="addCloudModal"> <a-modal :getContainer="() => this.$refs.addCloudModal" > </a-modal> </div> :deep .@{ant-prefix}-modal
阅读全文
posted @ 2023-06-30 09:40 稳住别慌
阅读(246)
评论(0)
推荐(0)
编辑
2023年6月8日
重新设置a-table空状态样式
摘要: <a-config-provider> <template #renderEmpty> <img src="../../../assets/images/no-data.png" alt="" width="120px" height="120px" /> <div style="color: rg
阅读全文
posted @ 2023-06-08 15:20 稳住别慌
阅读(152)
评论(0)
推荐(0)
编辑
2023年6月7日
后端获取TOKEN返oss上传地址,前端如何将字符串传给这个地址
摘要: 您也可以使用 Axios 库来发送请求,以下是发送表单请求的示例代码: const axios = require('axios'); function uploadStringToOSS(ossPostData, content) { const formData = new FormData()
阅读全文
posted @ 2023-06-07 18:57 稳住别慌
阅读(102)
评论(0)
推荐(0)
编辑
2023年6月2日
25宫格
摘要: .icon-list { display: grid; grid-template-columns: repeat(5, 1fr); /* 划分为5列 */ grid-template-rows: repeat(5, 1fr); /* 划分为5行 */ gap: 12px; /* 间隔为12像素 *
阅读全文
posted @ 2023-06-02 15:04 稳住别慌
阅读(69)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
14
下一页