摘要:
最近一个n年前的RN项目需要重新打包,遇到很多问题,在这里记录一下。 旧项目的相关依赖包版本: "react": "16.0.0-beta.5", "react-native": "0.49.3", "react-native-device-info": "^0.17.4", 环境配置相关: // 阅读全文
摘要:
function newGuid() { var guid = ""; for (var i = 1; i <= 32; i++){ var n = Math.floor(Math.random()*16.0).toString(16); guid += n; if((i==8)||(i==12)| 阅读全文
摘要:
全局设置el-dialog、messageBox 默认点击外部不消失 在main.js中设置Dialog、messageBox 的 closeOnClickModal 的默认属性值为 false // main.js ... import ElementUI from 'element-ui'; E 阅读全文
摘要:
/** ** el-table 辅助排序(解决空值时排序错乱问题) * tableData 待排序数据 * column 当前排序规则 * return 排序后的数据 */ export const tableSortChange = (tableData=[], column={}) => { / 阅读全文
摘要:
/** * 隐藏页面所有element-ui下拉框 */ let mouseUp = null; let mouseDown = null; // 隐藏下拉 export const hideDropdown = function(dom) { if(!dom) { // 默认为头部标题元素 dom 阅读全文