上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页
摘要: https://blog.csdn.net/Yukinoshita_kino/article/details/106338236 阅读全文
posted @ 2020-09-17 15:47 Action_swt 阅读(3385) 评论(0) 推荐(0) 编辑
摘要: //获取本地ip function getIPAdress() { var interfaces = require('os').networkInterfaces(); for (var devName in interfaces) { var iface = interfaces[devName 阅读全文
posted @ 2020-09-17 10:52 Action_swt 阅读(5703) 评论(0) 推荐(0) 编辑
摘要: //手机号格式 3-4-4 不验证手机号码: Mobile_input(type){ if(type "recvMobile"){ var value = this.erp_register_msg.recvMobile; }else if(type "fapiaoRecvMobile"){ var 阅读全文
posted @ 2020-09-16 14:24 Action_swt 阅读(252) 评论(0) 推荐(0) 编辑
摘要: value = value.replace(/[\u4E00-\u9FA5]|[A-Za-z]/g,''); 阅读全文
posted @ 2020-09-16 14:17 Action_swt 阅读(1992) 评论(0) 推荐(0) 编辑
摘要: obj.value=obj.value.replace(/[\u4E00-\u9FA5]|[\uFE30-\uFFA0]/g,''); 阅读全文
posted @ 2020-09-16 10:17 Action_swt 阅读(138) 评论(0) 推荐(0) 编辑
摘要: $('#m-input').on('keyup', function () { var that = $(this); var value = that.val(); value = value.replace(/[^0-9]/ig, ""); var arr = value.split(''); 阅读全文
posted @ 2020-09-16 10:07 Action_swt 阅读(84) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chendada/p/12570825.html 阅读全文
posted @ 2020-08-27 18:32 Action_swt 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 1、导航菜单重复点击报错: //解决导航菜单二次点击报错。 const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(th 阅读全文
posted @ 2020-08-26 16:32 Action_swt 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 1、声明式跳转: 利用组件进行跳转。 https://uniapp.dcloud.io/component/navigator 导航组件 2、编程式跳转: JS跳转(uniapp中的API) ****************************************************** 阅读全文
posted @ 2020-08-14 10:45 Action_swt 阅读(426) 评论(0) 推荐(0) 编辑
摘要: uniapp 小程序打包上线: 1、配置小程序 AppID 2、封装的api层修改接口域名(并且该域名要在小程序业务域名配置种配置)。 3、微信开发者工具 IDE 点击上传,会提示 上传成功后......... ,然后会让写 版本号 以及 项目备注。 uniapp H5打包上线: uniapp AP 阅读全文
posted @ 2020-08-13 17:49 Action_swt 阅读(1062) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页