All Projects → Gwokhov → Chronus

Gwokhov / Chronus

Licence: apache-2.0
🕐 一款能帮助管理生活目标的微信小程序

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Chronus

Echarts For Weixin
Apache ECharts (incubating) 的微信小程序版本
Stars: ✭ 5,479 (+2709.74%)
Mutual labels:  weixin, echarts
Xiaochengxu demos
小程序优秀项目源码汇总,每个项目都有图有源码,零基础学微信小程序,小程序表格,小程序视频,小程序视频弹幕,小程序仿天猫大转盘抽奖等源码,小程序云开发,小程序发邮件,小程序支付,微信支付,持续更新。。。
Stars: ✭ 855 (+338.46%)
Mutual labels:  weixin, weapp
Iview Weapp
一套高质量的微信小程序 UI 组件库
Stars: ✭ 6,145 (+3051.28%)
Mutual labels:  weixin, weapp
Minui
基于规范的小程序 UI 组件库,自定义标签组件,简洁、易用、工具化
Stars: ✭ 3,512 (+1701.03%)
Mutual labels:  weixin, weapp
Wemark
微信小程序Markdown渲染库
Stars: ✭ 1,159 (+494.36%)
Mutual labels:  weixin, weapp
Wux Weapp
🐶 一套组件化、可复用、易扩展的微信小程序 UI 组件库
Stars: ✭ 4,706 (+2313.33%)
Mutual labels:  weixin, weapp
Weapp Bmscore
a weapp to count badminton game score
Stars: ✭ 17 (-91.28%)
Mutual labels:  weixin, weapp
Ironinfoweapp
铜陵回归物资有限公司支持, 钢材信息小程序(基于uni-app), 后台账密: tour, tour520
Stars: ✭ 257 (+31.79%)
Mutual labels:  weapp, echarts
Leshare Shop Weapp
基于微信小程序的电商平台,采用原生框架开发
Stars: ✭ 183 (-6.15%)
Mutual labels:  weixin, weapp
Tina
💃 一款轻巧的渐进式微信小程序框架
Stars: ✭ 1,153 (+491.28%)
Mutual labels:  weixin, weapp
Wuss Weapp
🐳wuss-weapp 一款高质量,组件齐全,高自定义的微信小程序UI组件库
Stars: ✭ 338 (+73.33%)
Mutual labels:  weixin, weapp
Wechat Weapp Movie
🎬电影推荐 - 微信小程序
Stars: ✭ 1,355 (+594.87%)
Mutual labels:  weixin, weapp
Weapp Douban Film
微信小程序-豆瓣电影
Stars: ✭ 303 (+55.38%)
Mutual labels:  weixin, weapp
Zanui Weapp
本仓库已不再维护,请移步 https://github.com/youzan/vant-weapp
Stars: ✭ 540 (+176.92%)
Mutual labels:  weixin, weapp
Weapp Demo Breadtrip
基于面包旅行 API 制作的微信小程序示例
Stars: ✭ 282 (+44.62%)
Mutual labels:  weixin, weapp
Min Cli
Min 小程序组件化解决方案
Stars: ✭ 807 (+313.85%)
Mutual labels:  weixin, weapp
xing-weapp-editor
开箱即用的微信小程序图文编辑组件
Stars: ✭ 101 (-48.21%)
Mutual labels:  weixin, weapp
wxbizdatacrypt
微信小程序加密数据解密算法Go版
Stars: ✭ 132 (-32.31%)
Mutual labels:  weixin, weapp
Wxparse
wxParse-微信小程序富文本解析自定义组件,支持HTML及markdown解析
Stars: ✭ 7,618 (+3806.67%)
Mutual labels:  weixin, weapp
Weapp Typescript
使用TypeScript开发微信小程序的demo, 包含微信小程序weixin最新的.d.ts定义
Stars: ✭ 84 (-56.92%)
Mutual labels:  weixin, weapp

Chronus

介绍 / Why "Chronus"

Chronos is the personification of time in pre-Socratic philosophy and later literature.

🕐Chronus 是一款能帮助你管理生活目标的微信小程序。通过 Chronus,你可以轻而易举地对目标进行管理,并且结合计时器能够清楚地去记录你在实现目标过程中的每一条记录。同时他拥有良好的交互体验提供直观的数据分析,帮助你观察目标的进度。

该项目为小程序原生环境开发,并且利用云开发能力(云函数、数据库)作为数据持久化方案,首页的可视化 Pie 使用了ECharts图表。

若你对云开发感兴趣的话,该实践项目可能对你有帮助。

体验 Chronus

小程序码

截图

预览图

导入项目

  1. 在微信开发工具中导入该项目文件夹。
  2. 确保你开通了云开发功能
  3. 在微信开发工具中将全部云函数上传并部署。
  4. /miniprogram/config.js 中输入你的云开发环境id。
  5. 在云开发数据库中创建 usersgoalsgoal-records 三个集合。
  6. goal-records 中添加 goalId 为唯一索引,在 users中添加 _openid 为唯一索引。

项目结构说明

├───cloudfunctions   //云函数存放目录
│   ├───addGoalRecord   //添加目标记录
│   ├───addUser   //创建用户
│   ├───createGoal   //创建目标
│   ├───editGoalTitle   //修改目标标题
│   ├───getGoalData   //获取单个目标信息
│   ├───getGoalList   //获取全部目标
│   ├───login   //注册openid
│   └───removeGoal   //删除单个目标
└───miniprogram   //小程序存放目录
    ├───components   //组件存放目录
    │   ├───loading   //加载组件
    │   ├───modal   //输入框组件
    │   ├───tag   //标签组件
    │   └───tips   //提示组件
    │       └───images
    ├───config   //静态配置
    ├───images   //图片资源
    │   ├───detail
    │   ├───home
    │   └───timer
    ├───libs   //引用库
    │   └───ec-canvas
    ├───models
    ├───pages   //页面存放
    │   ├───detail
    │   ├───home
    │   ├───summary
    │   └───timer
    └───utils   //工具函数
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].