All Projects → HerryLo → wxSapp

HerryLo / wxSapp

Licence: other
🚮🚮Garbage Classification Help Center WxMiniApp || taro框架开发

Programming Languages

typescript
32286 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Labels

Projects that are alternatives of or similar to wxSapp

ChineseBQB-client
🤣 开源表情包小程序
Stars: ✭ 81 (+237.5%)
Mutual labels:  taro
patrick-wechat
⭐️🐟 questionnaire wechat app built with taro, taro-ui and heart. 微信问卷小程序
Stars: ✭ 74 (+208.33%)
Mutual labels:  taro
Taro-v2ex-weapp
awesome v2ex weapp 😎 目前支持微信小程序、支付宝小程序、h5
Stars: ✭ 25 (+4.17%)
Mutual labels:  taro
jza-taro
[UNMATAINED] 小程序 for 吉珠小助手
Stars: ✭ 25 (+4.17%)
Mutual labels:  taro
Taro-sign
Taro 开发的 思政教育签到小程序
Stars: ✭ 27 (+12.5%)
Mutual labels:  taro
gangxiaoer-taro
博雅塔小程序,基于Taro的版本,同步发布百度小程序,支付宝小程序。
Stars: ✭ 16 (-33.33%)
Mutual labels:  taro
taro-template
可用于生产环境的taro项目模版,技术栈:taro + taro-ui + typescript + dva / mobx + sass,无需过多关注项目配置,预置功能包括但不限于页面/组件/store/service模版一键生成/编译自动生成路由列表和组件入口/代码规范强制检查/请求拦截封装/小程序CI等,实现多端项目的高效快速开发。目前已有1.x / 2.x / 3.x 版本。
Stars: ✭ 59 (+145.83%)
Mutual labels:  taro
taroWxParse
taro框架wxParse纯净封装组件,来源于项目实战,随下随用
Stars: ✭ 24 (+0%)
Mutual labels:  taro
ztaro
一套基于taro, zoro的完整的微信小程序及h5开发解决方案
Stars: ✭ 37 (+54.17%)
Mutual labels:  taro
tarojs-router-next
Taro 小程序路由库/自动生成带参数类型提示的路由方法/允许传递任意类型、任意大小的参数数据/同步的路由方法调用/koa体验一致的路由中间件
Stars: ✭ 166 (+591.67%)
Mutual labels:  taro
taroify
Taroify 是移动端组件库 Vant 的 Taro 版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。
Stars: ✭ 420 (+1650%)
Mutual labels:  taro
taroCloud
记日常、GitHub trending资讯小程序 taro-hooks + rematch+云开发
Stars: ✭ 25 (+4.17%)
Mutual labels:  taro
Taro-ParserRichText
适用于 Taro 的小程序富文本组件
Stars: ✭ 32 (+33.33%)
Mutual labels:  taro
taro-quick-start
Quick start project with Taro & Vue3 & TypeScript.
Stars: ✭ 35 (+45.83%)
Mutual labels:  taro
eshop
Taro • 云开发电商小程序示例
Stars: ✭ 70 (+191.67%)
Mutual labels:  taro
my-taro
taro体验开发小程序
Stars: ✭ 14 (-41.67%)
Mutual labels:  taro
classmate-map
🧭 一款设计精美、体验优良的地图信息展示小程序,一个更有意思的同学录,可以在小程序中查看班级同学的毕业去向以及地域分布,多联(蹭)系(饭)。
Stars: ✭ 79 (+229.17%)
Mutual labels:  taro
taro-echarts
适用于 Taro 项目的 ECharts 图表组件,欢迎提 PR
Stars: ✭ 43 (+79.17%)
Mutual labels:  taro
weapp-clover
由零打造的,基于taro,zoro的电商小程序实战项目
Stars: ✭ 77 (+220.83%)
Mutual labels:  taro
taro-best-practices
使用 Taro 开发微信小程序、编译 H5 + React Native 的最佳实践
Stars: ✭ 118 (+391.67%)
Mutual labels:  taro

垃圾分类小程序

taro typescript scss yarn

垃圾分类查询、垃圾分类小测验、天气预报等功能,后续会开启更多功能。

🚮垃圾分类查询API是调取的别人的,目前支持微信小程序和支付宝小程序。欢迎 👏👏Star!!

如果你之前没有开发过小程序,可以看看我的 个人小程序开发指南 这篇文章,欢迎交流!!

目前支持了微信小程序CI工具,一键发布,非常的舒适!!源码:我的微信小程序CI工具配置。可以看看这篇文章:微信小程序CI工具

Tips

  • Node.js
  • Taro-cli
  • React
  • TypeScript
  • Yarn
  • 微信小程序CI
  • 更多方案持续更新。。。

项目

ts+react语法

// page/index.tsx
import { ComponentClass, TouchEvent } from 'react'
import Taro, { Component, Config } from '@tarojs/taro'
import { View, Icon, Input, Button } from '@tarojs/components'

import './index.scss'

interface Props {}
interface State {
    search: string,
    keywords: Array<string>,
    imgList: Array<string>,
    selectedSort: SelectedSort | null,
}

class Index extends Component <Props,State>   {
  config: Config = {
    navigationBarTitleText: '垃圾分类助手',
    navigationBarTextStyle: 'white',
    navigationBarBackgroundColor: '#2c7cf7'
  }

  constructor (props) {
    super(props)
    ......

scss语法

.index-container {
    padding: 50rpx 50rpx;
    background: #fff;

    & .img-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 40rpx;
    }

    & .inconImage {
        width: 220rpx;
        height: 220rpx;
        margin: 20rpx 40rpx 20rpx 40rpx;
    }
    ......

微信小程序

vx备注 加群交流

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].