12 2022 档案
摘要:需求 表头的标题内容过长时在一行内显示,不换行。 实现 // table.config.js const tableConfig = { // 设置列 columns: [ { prop: 'date', label: '日期as', width: '180', // 设置固定列 fixed: tr
阅读全文
摘要:字体图标 font awesome:https://fontawesome.com/ iconfont:https://www.iconfont.cn/ 缺点:要登录 iconMoon:https://icomoon.io/ 数据可视化 DataV:http://datav.jiaminghi.co
阅读全文
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content
阅读全文
摘要:背景 我们平常工作中需要用表格的形式来展示多行数据 需求 需求1:通过配置文件的形式来设置表格的列 需求2:可以合并表头 代码 MyTable.vue <template> <div> <el-table :data="tableData" style="width: 100%" stripe :h
阅读全文
摘要:背景 在管理系统中我们需要经常使用表单组件来收集用户的一些数据,如果按照官网的示例一个个表单项去填写不仅代码会变得很长而且麻烦,所以我们有必要去对组件进行再次的封装 需求 需求1:表单项通过配置文件配置 表单的类型、key、label、是否必填 示例 MyForm.vue <template> <d
阅读全文
摘要:背景 有的时候我们需要在表单中携带一些上传的附件传给服务器 搭建基本表单结构 <template> <div> <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleF
阅读全文
摘要:tyopra下载 下载地址 说明 自从用Mac这些年来,经常会去MacWK下载软件,不夹带私货,网站还没广告。 在2022年10月5日晚上20点左右,macwk正式宣布关站,目前主要分析原因是因为新接手macwk的团队长期使用OSS下载,而OSS下载本身非常烧钱,但没有充足的资金来源,导致的破产关站
阅读全文
摘要:https://blog.csdn.net/u013258447/article/details/101107743
阅读全文
摘要:背景 使用apipost接口请求工具调试后端接口的时候,后端要求的类型是application/x-www-form-urlencoded,采用其他方式无法获取到数据,前端如何发起网络请求呢? 以类型为application/x-www-form-urlencoded发起请求 以其他类型如:form
阅读全文