let routes = getCurrentPages(); // 获取当前打开过的页面路由数组
let curRoute = routes[routes.length - 1].route //获取当前页面路由
let curParam = routes[routes.len...
yekong
3年前 (2021-08-23)
喜欢
js
import AMapLoader from '@amap/amap-jsapi-loader';
created() {
var that = this;
AMapLoader.load({
...
yekong
3年前 (2021-08-20)
喜欢
Wxml
<input
type="number"
:placeholder="placeTips"
placeholder-style="font-size:24rpx"
v-model=&quo...
yekong
3年前 (2021-08-13)
喜欢
使用parseFloat处理一下经纬度避免出现经纬度是字符串的情况
wx.openLocation({
latitude: parseFloat(lat), // 纬度,浮点数,范围为90 ~ -90
longitude: pars...
yekong
3年前 (2021-08-13)
喜欢
记录滚动位置
onPageScroll(e) {
console.log(e) // {scrollTop: 216}
this.scrollTop = e.scrollTop;
uni.setStorage...
yekong
3年前 (2021-08-06)
喜欢
/**检查是否打开GPS功能(android)**/
export const checkOpenGPSServiceByAndroid = () => {
let system = uni.getSystemInfoSync();// 获取系统信息
if (...
yekong
3年前 (2021-08-06)
喜欢
如果在内部项目太多,一行排列不下的情况下,我们就需要设置内部项目排列不下时选择换行。
flex-wrap:wrap
align-content:flex-start
但是换行之后项目会根据整体布局进行调整,导致两行之间的间隙很大,所以我们还需要设置一个属性为 该样式用于让di...
yekong
3年前 (2021-08-06)
喜欢
因为uview http组件没有返回二次请求所需要的数据config,所以在使用前需要修改一下uview文件让其将config返回。
uview ui框架封装的Http请求获取不到config
Vue.prototype.$u.http.interceptor.response ...
yekong
3年前 (2021-08-06)
喜欢
下载组件
链接:下载地址 提取码: 1g1h
html
<echarts :option="option2" style="height: 300px;" @click="echartsClick">&l...
yekong
3年前 (2021-08-03)
喜欢
在做Hbuilder的移动APP项目时,遇到屏幕旋转的问题,因此查了下关于屏幕旋转的资料。
在html5+ 的api中有个锁定屏幕方向的方法是 plus.screen.lockOrientation 可以帮助我们解决屏幕旋转问题。
说明
锁定屏幕方向后屏幕只能按锁定的屏幕方向显示...
yekong
3年前 (2021-08-01)
喜欢