logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue 关于url参数拼接

uni-app 关于url参数拼接,对象形式传参、单个参数传参let data = {id: item.id,trainId: this.id,type: 'news',ptitle: item.ptitle};console.log(data)uni.navigateTo({url:`../details/knowDetail?data=${JSON.stringify(data)}`});多个

#vue.js
css 关于图片高度自适应问题

<image :src=item style="width: 100%;"mode="widthFix"></image>加上属性mode="widthFix"就ok啦。

#css
关于uni-app 倒计时 清除、熄屏等问题

<template><view><text style="color: #E60000;">倒计时:{{interval}}</text></view></template><script>let maxtime = 0export default {data() {return {interval: '',tim

#前端
uni-app 封装echarts地图组件 实现地图二级下钻

uni-app 封装echarts地图组件子组件:已实现功能:实现地图下钻,跳到省级地图。<template><view class="content" style="touch-action:none;"><button type="default" style="width: 90upx;height: 60upx;font-size: 24upx;padding

#uni-app#echarts
关于uni-app手机nfc开启、读取、写入功能

关于手机开启nfc功能nfc功能开启,分为开启手机的nfc功能和开启app的nfc功能。那么app端会用到的nfc功能有哪些呢?有nfc读取身份证内容,手机读取nfc签的内容,手机更改nfc签的内容,手机写入nfc签内容。关于nfc读取身份证内容,uni-app插件市场有相关插件,可以拿来使用。关于手机读取nfc签的内容,手机更改nfc签的内容,手机写入nfc签内容,需要相关js文件来配合app开

#uni-app
到底了