摘要:
使用系统cmd(Win +R)终端命令安装vue cli npm install -g vue-cli 删除 node_modules 文件夹,重启开发工具,在开发工具内置终端重新安装node_modules npm install 阅读全文
摘要:
<template> <view> <uni-nav-bar leftIcon="arrowleft" :status-bar="true" fixed="true" color="#ffffff" bgImage="linear-gradient(45deg, #ec008c, #6739b6)" 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame 目前在常用方法类里封装了几个方法:检测小程序更新、px转upx、upx转px、字符掩码、获取链接参数、判断是否在微信内置浏览器、小程序的原生菜单中显示分享按钮。 在common文件夹下新建 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame uniapp H5打包发布后在部分手机字体无故变大,导致页面错乱,字体都是使用upx(rpx)单位的(这个不是问题原因),在电脑的浏览器和微信开发者工具上各种机型测试页面都是正常的。 最后使 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame manifest.json文件中,点击“源码视图”,在此h5的配置节点下修改一下代码 h5节点源码: "h5" : { "title" : "移动端开发框架",//页面标题 "templat 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame 实现微信公众号自定义分享和扫码功能需要引入微信JSSDK npm安装微信JS-SDK npm install jweixin-module --save 通过网址下载: https://un 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame 开发移动端(微信小程序、H5、App)电商平台需要用到微信支付,下面封装一个微信小程序和H5的支付封装类 在common文件夹下新建 sju.pay.js 文件 sju.pay.js源码: 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame 异步的方法,如果不传入 success、fail、complete 等 callback 参数,将以 Promise 返回数据 异步的方法,且有返回对象,如果希望获取返回对象,必须至少传入一 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame ajax网路请求封装了POST、GET、 PUT、DELETE四种接口请求方式 在 common 文件夹下新建 sju.ajax.js 文件 sju.ajax.js源码: /** * aja 阅读全文
摘要:
框架开源地址:https://gitee.com/yunhaotian/uniapp_mobileFrame 本框架使用了分包机制,具体内容在 【从零开始搭建uniapp开发框架】(三)—— uniapp设置分包机制 根据本框架使用了分包封装统一的页面跳转方法封装 在 common 文件夹下新建 s 阅读全文