01 2024 档案
摘要:好看的排行榜界面 wxml <!--ranklist.wxml--> <view class="container"> <scroll-view class="list" scroll-y bindscrolltolower="{{hasReachBottom}}"> <view wx:for="{
阅读全文
摘要:打开快捷键面板 F1打开/关闭工具栏 Ctrl+Shift+T打开/关闭模拟器 Ctrl+Shift+D打开/关闭调试器 Ctrl+Shift+M格式化文件 Shift+Alt+F编译 Ctrl+B刷新 Ctrl+R删除行 Ctrl+Shift+K向上复制行 Shift+Alt+↑向上移动行 Alt
阅读全文
摘要:wxml<view> <view class="top"> <view class="center"> <view class="center_top"> <view class="center_img" bindtap="toBaseInfo"> <!-- <image src="../../st
阅读全文
摘要:不关闭当前页面的跳转,可以通过返回键返回到上一个页面 wx.navigateTo 关闭当前页面跳转到非tarBar页面 wx.redirectTo 关闭当前页面跳转到tarBar页面 wx.switchTab
阅读全文
摘要:{ min: 0, max: 0, label: "0", color: "#CCE5FF" },{ min: 1, max: 4, label: "1-4", color: "#99C9FF" },{ min: 5, max: 9, label: "5-9", color: "#66AFFF" }
阅读全文
摘要:wxml页面 <van-field value="{{ identity }}" required clearable label="身份证号" placeholder="请输入身份证号" /> js页面 data: { name:'', id:'', identity:'' } 但是通过this.
阅读全文
摘要:wx.request({ url: 'http://localhost:8090/jjj', data:{}, method:'GET', header: { 'content-type': 'application/json' }, success: function (res) { consol
阅读全文
摘要:<template> <div> <el-row :gutter="24"> <el-col :span="8"> <div> <el-statistic :precision="2" :value="man" title="男女比"> </el-statistic> </div> </el-col
阅读全文
摘要:<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.c
阅读全文
摘要:Android Studio软件需要从安卓官网进行下载,由于政策原因,国内无法进行相关网页的访问。因此,国内可通过https://developer.android.google.cn/studio进行下载 】 运行第一个程序
阅读全文