- 博客(15)
- 收藏
- 关注
原创 uniapp上使用,微信自定义tabbar可自定义样式,可根据角色设置不同tabbar个数。
uniapp文档描述: 微信小程序自定义tabbar:微信提供一直基于webview自定义tabBar的方案。该功能体验不佳,不太推荐使用。如果要使用,参考,项目根创建 custom-tab-bar 目录,注意里边的代码是 wxml,wxss,不是 vue,uni-app编译器会直接拷贝该目录到微信小程序中。
2025-02-20 11:03:13
355
原创 git提交丢失代码的深坑
还是git学的不够提交vben管理后台的时候,执行了git commit 之后,所有修改过的东西全部丢了。回收站,时间线全都没了。出现原因是因为 vben有提交校验 (husky)并且代码写的不够规范。
2025-01-03 15:49:25
254
原创 使用`localstorage`中存储function函数
使用localstorage 存储对象的时候,需要使用JSON.stringify(obj)先转换为字符串,然后再用JSON.parse() 转换成对象。let obj = { name: '11', fun: function() { console.log('sss') }}let temp1 = JSON.stringify(obj)console.log(temp1)输出结果:(fun消失了)但JOSN.stringify()有第二个参数.
2021-10-28 17:16:18
2573
原创 react 链式跳转
class组件// 在使用的组件中引入import { withRouter } from 'react-router-dom'//输出组件时这样export default withRouter(DjradioBanner)使用this.props.history.push('')function 组件import { useHistory } from "react-router-dom";//使用let history = useHistory();history.push(
2021-08-19 17:27:24
147
原创 自适应网页ios失效
@media screen and (max-device-width: 750px)改为⬇@media screen and (max-device-width: 750px), screen and (max-width: 750px) js部分if (window.innerWidth <= 750 || window.screen.width <= 750)
2021-08-07 11:08:20
248
原创 react引入公共scss
第一步 cnpm i sass-resources-loader --save-dev第二步找到 webpack.config.js路径在:node_modules\react-scripts\config\webpack.config.js第三步原始样子{ test: sassRegex, exclude: sassModuleRegex, use: getStyleLoaders(
2021-07-30 15:08:18
386
原创 react-redux使用
store.jsimport { createStore } from "redux";const defaultState={ isOpenLoginCard:true}function reducer(state=defaultState, action ) { //必须使用新的对象 const newState = JSON.parse(JSON.stringify(state)) switch (action.type) { case 'OPENLOGINCARD'
2021-07-30 10:53:39
82
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人