HTLF

一步一个脚印,走出高度...

导航

2024年9月25日 #

CSS样式,鼠标移入,底部线条两边延长效果

摘要: a{ text-decoration: none; } .post-title-link { color: #3F51B5; position: relative; display: inline-block } .post-title-link::after { content: ""; posi 阅读全文

posted @ 2024-09-25 15:29 HTLF 阅读(13) 评论(0) 推荐(0) 编辑

2024年9月21日 #

使用`xlsx-js-style`插件导出表格,并添加样式导出

摘要: 安装 npm install xlsx-js-style --save 使用 引入 import XLSX from 'xlsx-js-style' // 最好是定义一个表个通用数据,循环得到相关数据 const tableHeader = [ {name: 'a', value: 'clo1',w 阅读全文

posted @ 2024-09-21 17:56 HTLF 阅读(132) 评论(0) 推荐(0) 编辑

2024年9月20日 #

vue 项目读取本地Excel方法

摘要: 安装插件xlsx npm install xlsx 在需要的页面引入插件 import * as xlsx from 'xlsx' 使用xlsx读取excel文件 点击上传Excel文件 <template> <!-- 上传按钮 --> <el-upload action="#" :auto-upl 阅读全文

posted @ 2024-09-20 17:02 HTLF 阅读(242) 评论(0) 推荐(0) 编辑

2024年9月19日 #

vue项目记录每个页面保持滚动条的位置

摘要: 路由元信息 增加keepAlive:true , scrollTop: {top: 0} , { path: '/**/**', name: '**', component: () => import('@/views/**/index.vue'), meta: { title: '**', aff 阅读全文

posted @ 2024-09-19 16:52 HTLF 阅读(88) 评论(0) 推荐(0) 编辑

2024年9月3日 #

vue项目删除node_modules文件方法

摘要: 使用Windows命令来删除目录 首先在cmd窗口中进入到node_modules文件夹所在的路径 cmd 然后输入命令 rmdir /s/q node_modules 使用rimraf模块的命令 在全局安装rimraf模块,然后通过其命令来快速删除node_modules目录 执行一下命令 npm 阅读全文

posted @ 2024-09-03 17:18 HTLF 阅读(377) 评论(0) 推荐(0) 编辑

2024年8月29日 #

vue项目“不使用TS”开发 常见文件处理

摘要: 使用vue自带的方法,如watchEffect() 提示'watchEffect' is not defined.eslint 解决办法,在.eslintrc.cjs文件中添加以下代码 module.exports = { root: true, extends: [ ... 'plugin:vit 阅读全文

posted @ 2024-08-29 16:43 HTLF 阅读(8) 评论(0) 推荐(0) 编辑

2024年8月26日 #

css框架之windicss

摘要: 官网地址 windicss 安装 执行命令 npm i -D vite-plugin-windicss windicss 在vite.config.js中配置 //引入 import WindiCSS from 'vite-plugin-windicss' //使用 plugins:[ WindiC 阅读全文

posted @ 2024-08-26 01:04 HTLF 阅读(29) 评论(0) 推荐(0) 编辑

2024年7月2日 #

.Net Core 链接postgresql 数据库

摘要: 安装依赖包 Npgsql.EntityFrameworkCore.PostgreSQL 必须 Npgsql.EntityFrameworkCore.PostgreSQL.Design 数据迁移相关 新建数据库上下文类AppDbContext.cs 注意 当前文件,所在的项目,必须安装上面的 依赖包 阅读全文

posted @ 2024-07-02 17:15 HTLF 阅读(123) 评论(0) 推荐(0) 编辑

Net Core 创建API项目

摘要: 打开 Visual Studio 2022 选择 阅读全文

posted @ 2024-07-02 17:10 HTLF 阅读(4) 评论(0) 推荐(0) 编辑

2024年2月20日 #

SSL证书在IIS服务器中部署

摘要: SSL证书在IIS服务器中部署 参考 前提条件 已通过数字证书管理服务控制台签发证书。具体操作,请参见购买SSL证书和提交证书申请。 SSL证书绑定的域名已完成DNS解析,即您的域名与主机IP地址相互映射。您可以通过DNS验证证书工具,检测域名DNS解析是否生效。具体操作,请参见DNS验证。 已在W 阅读全文

posted @ 2024-02-20 10:25 HTLF 阅读(101) 评论(0) 推荐(0) 编辑