2020/8/8

uniapp自定义属性/uniapp自定义属性取值

<template>     <view>         <view :data-kk="value" @click="ck">ddd</view>  …

  • uni-app
  • 2020/8/8
  • 629
  • 2020/8/7

    uniapp获取手机型号

    uni.getSystemInfo({ success(res) { console.log(res.brand) //手机牌子 console.log(res.model) //手机型号 console.log(res.screenWidth) //屏幕宽度 console.log(res.screenHeight) //…

  • uni-app
  • 2020/8/7
  • 699
  • 2020/7/3

    uniapp最外层充满屏幕

    uni-page-body,html,body{       height: 100%; }  

  • uni-app
  • 2020/7/3
  • 613
  • 2020/6/10

    uni-app scroll-view横向

    <scroll-view scroll-x="true"> <view class="show-miaosha-item" v-for="(item,index) in miaosha" :key="index"> …

  • uni-app
  • 2020/6/10
  • 707