随笔- 67
文章- 0
评论- 2
阅读-
67879
03 2020 档案
vue Ant Design 多种表格组件
摘要:一、表格嵌套 <a-table :columns="columns" :dataSource="operation1" :slot-scope="record" class="components-table-demo-nested" @expand="child" rowKey="id" @exp
阅读全文
vue 本地缓存
摘要:1、 存储数据: var storage = window.sessionStorage storage.setItem("user","username") 取出数据: var storage = window.sessionStorage var str = storage.getItem("u
阅读全文
vue实现拍照上传 + base64 上传功能
摘要:<style> .head_pic{ width: 200px; height: 200px; background: #fff; /* border: 1px solid #e1e1e1; */ border-radius: 8px; margin: 10px auto; overflow: hi
阅读全文