├── pages ├── msg │ ├── index.json │ ├── list.json │ ├── index.wxss │ ├── list.wxml │ ├── index.js │ ├── list.js │ ├── index.wxml │ └── list.wxss ├── index │ ├── index.json │ ├── index.wxss │ ├── index.js │ └── index.wxml ├── notice │ ├── index.json │ ├── index.wxss │ ├── index.wxml │ └── index.js ├── toLogin │ ├── toLogin.json │ ├── toLogin.wxss │ ├── toLogin.wxml │ └── toLogin.js ├── my │ ├── fav.json │ ├── list.json │ ├── mydyn.json │ ├── appointment.json │ ├── index.json │ ├── info.json │ ├── index.wxss │ ├── info.wxss │ ├── appointment.wxss │ ├── index.js │ ├── fav.wxss │ ├── list.wxss │ ├── fav.wxml │ ├── list.wxml │ ├── appointment.js │ ├── mydyn.wxml │ ├── appointment.wxml │ ├── fav.js │ ├── list.js │ ├── index.wxml │ ├── info.wxml │ ├── mydyn.js │ ├── mydyn.wxss │ └── info.js ├── comment │ ├── index.json │ ├── index.wxss │ ├── index.wxml │ └── index.js ├── dynamic │ ├── add.json │ ├── index.json │ ├── add.wxss │ ├── add.wxml │ ├── index.wxml │ ├── add.js │ ├── index.js │ └── index.wxss ├── info │ ├── add.json │ ├── edit.json │ ├── index.json │ ├── add.wxss │ ├── edit.wxss │ ├── index.wxss │ ├── edit.js │ ├── add.js │ ├── index.wxml │ ├── index.js │ ├── edit.wxml │ └── add.wxml └── appointment │ ├── index.json │ ├── index.wxss │ ├── index.js │ └── index.wxml ├── img ├── 1.png ├── 2.png ├── c.png ├── dy.png ├── me.png ├── to.png ├── Taxi.png ├── add.png ├── app0.png ├── app1.png ├── app2.png ├── app3.png ├── auto.png ├── back.png ├── cle.png ├── cle1.png ├── date.png ├── day.png ├── edit.png ├── fav.png ├── fav1.png ├── msg.png ├── msg1.png ├── see.png ├── tel.png ├── tel1.png ├── zan.png ├── zan1.png ├── Tourist.png ├── account.png ├── adddy.png ├── auto1.png ├── date1.png ├── driver.png ├── email.png ├── goods.png ├── msg_1.png ├── msg_2.png ├── msg_3.png ├── people.png ├── surplus.png ├── vehicle.png ├── wechat.png ├── account1.png ├── comments.png ├── comments1.png ├── favorite.png ├── favorite1.png ├── shoucang.png ├── shoucang1.png ├── appointment.png ├── Human Footprints.png └── business-color_signature.png ├── .Archive └── donate.md │ ├── 2017-09-28 13-29-42.md │ ├── 2017-09-28 13-31-02.md │ ├── 2017-09-28 13-32-42.md │ ├── 2017-09-28 13-33-42.md │ ├── 2017-09-28 13-34-42.md │ ├── 2017-09-28 13-35-52.md │ ├── 2017-09-28 13-37-02.md │ ├── 2017-09-28 13-38-52.md │ ├── 2017-09-28 13-39-52.md │ ├── 2017-09-28 13-40-52.md │ └── 2017-09-28 13-43-12.md ├── sitemap.json ├── app.wxss ├── project.config.json ├── app.json ├── app.js ├── README.md ├── donate.md ├── libs └── bmap-wx.min.js ├── utils └── util.js ├── LICENSE └── weui.wxss /pages/msg/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/msg/list.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/notice/index.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/toLogin/toLogin.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/my/fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的收藏" 3 | } -------------------------------------------------------------------------------- /pages/comment/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "回复" 3 | } -------------------------------------------------------------------------------- /pages/dynamic/add.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发表动态" 3 | } -------------------------------------------------------------------------------- /pages/dynamic/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "动态" 3 | } -------------------------------------------------------------------------------- /pages/my/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我发布的" 3 | } -------------------------------------------------------------------------------- /pages/my/mydyn.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的动态" 3 | } -------------------------------------------------------------------------------- /pages/info/add.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发布拼车" 3 | } 4 | -------------------------------------------------------------------------------- /pages/info/edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "修改" 3 | } 4 | -------------------------------------------------------------------------------- /pages/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "拼车详情" 3 | } 4 | -------------------------------------------------------------------------------- /pages/my/appointment.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "预约列表" 3 | } -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/1.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/2.png -------------------------------------------------------------------------------- /img/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/c.png -------------------------------------------------------------------------------- /img/dy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/dy.png -------------------------------------------------------------------------------- /img/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/me.png -------------------------------------------------------------------------------- /img/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/to.png -------------------------------------------------------------------------------- /pages/appointment/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "预约详情" 3 | } -------------------------------------------------------------------------------- /img/Taxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/Taxi.png -------------------------------------------------------------------------------- /img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/add.png -------------------------------------------------------------------------------- /img/app0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/app0.png -------------------------------------------------------------------------------- /img/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/app1.png -------------------------------------------------------------------------------- /img/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/app2.png -------------------------------------------------------------------------------- /img/app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/app3.png -------------------------------------------------------------------------------- /img/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/auto.png -------------------------------------------------------------------------------- /img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/back.png -------------------------------------------------------------------------------- /img/cle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/cle.png -------------------------------------------------------------------------------- /img/cle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/cle1.png -------------------------------------------------------------------------------- /img/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/date.png -------------------------------------------------------------------------------- /img/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/day.png -------------------------------------------------------------------------------- /img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/edit.png -------------------------------------------------------------------------------- /img/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/fav.png -------------------------------------------------------------------------------- /img/fav1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/fav1.png -------------------------------------------------------------------------------- /img/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/msg.png -------------------------------------------------------------------------------- /img/msg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/msg1.png -------------------------------------------------------------------------------- /img/see.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/see.png -------------------------------------------------------------------------------- /img/tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/tel.png -------------------------------------------------------------------------------- /img/tel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/tel1.png -------------------------------------------------------------------------------- /img/zan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/zan.png -------------------------------------------------------------------------------- /img/zan1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/zan1.png -------------------------------------------------------------------------------- /img/Tourist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/Tourist.png -------------------------------------------------------------------------------- /img/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/account.png -------------------------------------------------------------------------------- /img/adddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/adddy.png -------------------------------------------------------------------------------- /img/auto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/auto1.png -------------------------------------------------------------------------------- /img/date1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/date1.png -------------------------------------------------------------------------------- /img/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/driver.png -------------------------------------------------------------------------------- /img/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/email.png -------------------------------------------------------------------------------- /img/goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/goods.png -------------------------------------------------------------------------------- /img/msg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/msg_1.png -------------------------------------------------------------------------------- /img/msg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/msg_2.png -------------------------------------------------------------------------------- /img/msg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/msg_3.png -------------------------------------------------------------------------------- /img/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/people.png -------------------------------------------------------------------------------- /img/surplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/surplus.png -------------------------------------------------------------------------------- /img/vehicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/vehicle.png -------------------------------------------------------------------------------- /img/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/wechat.png -------------------------------------------------------------------------------- /img/account1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/account1.png -------------------------------------------------------------------------------- /img/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/comments.png -------------------------------------------------------------------------------- /img/comments1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/comments1.png -------------------------------------------------------------------------------- /img/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/favorite.png -------------------------------------------------------------------------------- /img/favorite1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/favorite1.png -------------------------------------------------------------------------------- /img/shoucang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/shoucang.png -------------------------------------------------------------------------------- /img/shoucang1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/shoucang1.png -------------------------------------------------------------------------------- /pages/my/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableScroll":true, 3 | "navigationBarTitleText": "我的" 4 | } -------------------------------------------------------------------------------- /img/appointment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/appointment.png -------------------------------------------------------------------------------- /pages/msg/index.wxss: -------------------------------------------------------------------------------- 1 | .list view{font-size:12pt;} 2 | .list .weui-cell{padding: 15px !important} -------------------------------------------------------------------------------- /pages/my/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableScroll":true, 3 | "navigationBarTitleText": "个人信息" 4 | } -------------------------------------------------------------------------------- /img/Human Footprints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/Human Footprints.png -------------------------------------------------------------------------------- /img/business-color_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincenth520/pinche_xcx/HEAD/img/business-color_signature.png -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-29-42.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 为了程序的后期开发 -------------------------------------------------------------------------------- /pages/notice/index.wxss: -------------------------------------------------------------------------------- 1 | .page{margin:8px;} 2 | .title{text-align:center;font-weight: bold;font-size: 1rem;color:#000;margin-top:10px;} 3 | .content{font-size: .85rem;} -------------------------------------------------------------------------------- /pages/notice/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{data.title}} 3 | 4 | {{data.content}} 5 | 6 | -------------------------------------------------------------------------------- /pages/dynamic/add.wxss: -------------------------------------------------------------------------------- 1 | .page{margin:10rpx;} 2 | .weui-btn{background: #f4de3b!important;color:#000!important;} 3 | .weui-cells::before{border-top: 0!important;} 4 | .weui-cells{margin-top:15px;} -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-31-02.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | -------------------------------------------------------------------------------- /pages/comment/index.wxss: -------------------------------------------------------------------------------- 1 | .page{margin:10rpx;} 2 | .weui-btn{background: #f4de3b!important;color:#000!important;} 3 | .weui-cells::before{border-top: 0!important;} 4 | .weui-cells{margin-top:15px;} -------------------------------------------------------------------------------- /sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-32-42.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版: -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-33-42.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(399):指导小程序全部配置至上线, -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-34-42.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(399):指导小程序全部配置至上线,获得后续代码的升级版本 11 | - 专业版(699 -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-35-52.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本 11 | - 专业版(¥699):帮配置小程序 -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-37-02.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本,上线之后的bug修复 11 | - 专业版(¥699):帮配置小程序直至上线,获得后续代码的升级版本, -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-38-52.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 11 | - 专业版(¥699):帮配置小程序直至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-39-52.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 11 | - 专业版(¥699):帮助配置小程序直至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 12 | 13 | ##同城拼车后续计划 -------------------------------------------------------------------------------- /pages/my/index.wxss: -------------------------------------------------------------------------------- 1 | /**index.wxss**/ 2 | .head{display:flex;flex-direction: column;background: #efefef;width:100%;padding: 100rpx 0rpx; align-items: center; justify-content: space-between;background: #f4de3b} 3 | .head image{width:150rpx;height:150rpx;margin:0 auto;border-radius: 50%;} 4 | .list view{font-size:12pt;} 5 | .list .weui-cell{padding: 15px !important} -------------------------------------------------------------------------------- /pages/notice/index.js: -------------------------------------------------------------------------------- 1 | // pages/notice/index.js 2 | var util = require('../../utils/util.js'); 3 | Page({ 4 | data:{}, 5 | onLoad:function(options){ 6 | var that = this; 7 | util.req('notice/index',{id:options.id},function(data){ 8 | if(data.status == 1){ 9 | that.setData({data:data.data}); 10 | } 11 | }) 12 | } 13 | }) -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-40-52.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 11 | - 专业版(¥699):帮助配置小程序直至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 12 | 13 | ## 同城拼车后续计划 14 | 免费版本除重大bug不再更新,付费版本将后续完善前端 -------------------------------------------------------------------------------- /.Archive/donate.md/2017-09-28 13-43-12.md: -------------------------------------------------------------------------------- 1 | # 同城拼车小程序捐赠计划 2 | 3 | ## 起因 4 | 由于太多用户都是完全没有一点编程基础的,经常进群问的都是非常基础的问题,完全没有搭建上线的能力,我也没有太多时间回答这么多基础的问题 5 | 6 | ## 目的 7 | 支持程序的后期开发,以及服务器的调试,及人工开发成本 8 | 9 | ##级别 10 | - 标准版(¥399):指导小程序全部配置至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 11 | - 专业版(¥699):帮助配置小程序直至上线,获得后续代码的升级版本,加入会员群获得专业指导支持 12 | 13 | ## 同城拼车后续计划 14 | 免费版本除重大bug不再更新,付费版本将持续完善前端版本,并后续开发后台管理平台 -------------------------------------------------------------------------------- /pages/my/info.wxss: -------------------------------------------------------------------------------- 1 | /* pages/my/info.wxss */ 2 | .head{display:flex;flex-direction: column;background: #efefef;width:100%;padding: 100rpx 0rpx; align-items: center; justify-content: space-between;} 3 | .head image{width:150rpx;height:150rpx;margin:0 auto;border-radius: 50%;} 4 | .form .weui-cells{z-index: 0;} 5 | .form .weui-input{overflow: hidden;} 6 | .weui-btn{background: #f4de3b!important;color:#000!important;} -------------------------------------------------------------------------------- /pages/my/appointment.wxss: -------------------------------------------------------------------------------- 1 | /* appointment.wxss */ 2 | .page{background: #f5f5f5;} 3 | .weui-cell{position:relative} 4 | .status_icon{ 5 | width:40px; 6 | height:40px; 7 | position:absolute; 8 | top:0px; 9 | right:0px; 10 | } 11 | .weui-tab__content{ 12 | margin-top: 10px; 13 | background: #fff; 14 | } 15 | .weui-navbar{background: #fff;} 16 | .tel{width:30px; 17 | height:30px; 18 | position:absolute; 19 | top:20px; 20 | right:30px; 21 | } -------------------------------------------------------------------------------- /pages/info/add.wxss: -------------------------------------------------------------------------------- 1 | /* pages/info/add.wxss */ 2 | .page__bd{background: #efefef;} 3 | .weui-cells__title{padding-top:.3rem;margin-top:0;} 4 | .radio-group{padding: 10px 0px !important;} 5 | /* .StartAndStop input{width:70px;float:left} 6 | .to1{width: 30px;height:30px;position:absolute;top:6px;} 7 | .stop{margin-left:40px;}*/ 8 | .weui-label{color:black} 9 | .radio text{margin:0rpx 8rpx;} 10 | .radio{margin-right: 12rpx;} 11 | .weui-btn{background: #f4de3b!important;color:#000!important;} 12 | .weui-input{overflow:hidden;} 13 | -------------------------------------------------------------------------------- /pages/info/edit.wxss: -------------------------------------------------------------------------------- 1 | /* pages/info/add.wxss */ 2 | .page__bd{background: #efefef;} 3 | .weui-cells__title{padding-top:.3rem;margin-top:0;} 4 | .radio-group{padding: 10px 0px !important;} 5 | /* .StartAndStop input{width:70px;float:left} 6 | .to1{width: 30px;height:30px;position:absolute;top:6px;} 7 | .stop{margin-left:40px;}*/ 8 | .weui-label{color:black} 9 | .radio text{margin:0rpx 8rpx;} 10 | .radio{margin-right: 12rpx;} 11 | .weui-btn{background: #f4de3b!important;color:#000!important;} 12 | .weui-input{overflow:hidden;} 13 | -------------------------------------------------------------------------------- /pages/toLogin/toLogin.wxss: -------------------------------------------------------------------------------- 1 | /* pages/toLogin/toLogin.wxss */ 2 | #head{padding:100rpx 40rpx 40rpx 40rpx;} 3 | #head image{width:140rpx;height:140rpx;margin: 0 auto;display:block;border-radius:50%;} 4 | .text-align{text-align: center} 5 | .gray{color: #888} 6 | #title{margin: 5px 0px 30px 0px;} 7 | .font3{font-size: 14px;margin:5px 0px;} 8 | .font4{font-size: 15px;} 9 | 10 | .loginbutton{width: 260px;border-radius: 5px;background: #0d76dc;color: #fff;margin: 20px auto;} 11 | .icon{width: 20px;height:20px;vertical-align:middle;} -------------------------------------------------------------------------------- /pages/appointment/index.wxss: -------------------------------------------------------------------------------- 1 | /* pages/info/add.wxss */ 2 | .page{background: #efefef;height: 560px;} 3 | .weui-cells__title{padding-top:.3rem;margin-top:0;} 4 | .radio-group{padding: 10px 0px !important;} 5 | /* .StartAndStop input{width:70px;float:left} 6 | .to1{width: 30px;height:30px;position:absolute;top:6px;} 7 | .stop{margin-left:40px;}*/ 8 | .weui-label{color:black} 9 | .radio text{margin:0rpx 8rpx;} 10 | .radio{margin-right: 12rpx;} 11 | .submit{background: #f4de3b!important;color:#000!important;} 12 | .weui-input{overflow:hidden;} 13 | -------------------------------------------------------------------------------- /pages/my/index.js: -------------------------------------------------------------------------------- 1 | //index.js 2 | //获取应用实例 3 | var app = getApp(); 4 | var util = require('../../utils/util.js'); 5 | 6 | Page({ 7 | onShow: function () { 8 | var that = this; 9 | that.setData({ 10 | userInfo:app.globalData.userInfo 11 | }); 12 | 13 | util.req('info/mycount',{sk:app.globalData.sk},function(data){ 14 | that.setData({infoCount:data.data}); 15 | }) 16 | 17 | util.req('appointment/mycount', { sk: app.globalData.sk }, function (data) { 18 | that.setData({ appointmentCount: data.data }); 19 | }) 20 | 21 | 22 | 23 | }, 24 | 25 | }) 26 | -------------------------------------------------------------------------------- /pages/toLogin/toLogin.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{appInfo.name}} 7 | 欢迎您 8 | 9 | 请微信授权登录后放心使用{{appInfo.name}} 10 | 您的信息和数据将得到保护 11 | 12 | 13 | -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- 1 | /**app.wxss**/ 2 | @import 'weui.wxss'; 3 | .container { 4 | height: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | align-items: center; 8 | justify-content: space-between; 9 | } 10 | view{ color:Grey} 11 | 12 | /**选择城市**/ 13 | 14 | .citypickers{ 15 | position: fixed; 16 | height: 100%; 17 | width: 100%; 18 | min-height: 100%; 19 | background-color: red; 20 | z-index:1000000; 21 | } 22 | .citybody { 23 | position: fixed; 24 | bottom: 0px; 25 | } 26 | 27 | .cityheader { 28 | position: absolute; 29 | top:0px; 30 | width: 100%; 31 | z-index: 4; 32 | } 33 | 34 | .city-cancel { 35 | float: left; 36 | margin: 20rpx; 37 | color: #818181; 38 | } 39 | 40 | .city-true { 41 | float: right; 42 | margin: 20rpx; 43 | color: #2FB42E 44 | } 45 | 46 | .section .picker { 47 | background-color: #fff; 48 | border-bottom: 1px #d9d9d9 solid; 49 | border-top: 1px #d9d9d9 solid; 50 | padding: 20rpx; 51 | } -------------------------------------------------------------------------------- /pages/msg/list.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {{item.nickName}}{{item.time}} 15 | 16 | {{item.content}} 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /pages/my/fav.wxss: -------------------------------------------------------------------------------- 1 | .page__bd{ 2 | height: 100%; 3 | } 4 | .page__bd{ 5 | padding-bottom: 0; 6 | } 7 | .weui-tab__content{ 8 | padding-top: 60px; 9 | text-align: center; 10 | } 11 | .list_title,.list_desc{text-align: left!important;} 12 | .list_title{color:black;font-size: .85rem;} 13 | .list_desc{margin: 5rpx 0rpx;color: #444} 14 | .list_type_1{background: rgb(254,230,50);padding: 0rpx 5rpx;margin-right:1rem;color:lightseagreen;} 15 | .list_type_2{background: lightseagreen;padding: 0rpx 5rpx;margin-right:1rem;color:rgb(254,230,50);} 16 | .to1{width: 60rpx;height:60rpx;position:absolute;top:12px;} 17 | .list_over{margin-left:60rpx;} 18 | .list_icon{width:30rpx;height:30rpx;position:absolute} 19 | .weui-media-box__info__meta text{margin:0rpx 33rpx;} 20 | .list_tm{float: right;color: indianred;font-size: .8rem;} 21 | .weui-media-box__info__meta{padding-right: .2rem!important;} 22 | .icon-gender{width:30rpx;height: 30rpx;bottom: 16rpx;position:absolute;left:120rpx;} 23 | 24 | .editdiv{float:right} 25 | .editbtn{height:50rpx;line-height:50rpx;float:left;font-size: .7rem;margin:5rpx;} 26 | .null{line-height: 200px;text-align: center;} -------------------------------------------------------------------------------- /pages/my/list.wxss: -------------------------------------------------------------------------------- 1 | .page__bd{ 2 | height: 100%; 3 | } 4 | .page__bd{ 5 | padding-bottom: 0; 6 | } 7 | .weui-tab__content{ 8 | padding-top: 60px; 9 | text-align: center; 10 | } 11 | .list_title,.list_desc{text-align: left!important;} 12 | .list_title{color:black;font-size: .85rem;} 13 | .list_desc{margin: 5rpx 0rpx;color: #444} 14 | .list_type_1{background: rgb(254,230,50);padding: 0rpx 5rpx;margin-right:1rem;color:lightseagreen;} 15 | .list_type_2{background: lightseagreen;padding: 0rpx 5rpx;margin-right:1rem;color:rgb(254,230,50);} 16 | .to1{width: 60rpx;height:60rpx;position:absolute;top:12px;} 17 | .list_over{margin-left:60rpx;} 18 | .list_icon{width:30rpx;height:30rpx;position:absolute} 19 | .weui-media-box__info__meta text{margin:0rpx 33rpx;} 20 | .list_tm{float: right;color: indianred;font-size: .8rem;} 21 | .weui-media-box__info__meta{padding-right: .2rem!important;} 22 | .icon-gender{width:30rpx;height: 30rpx;bottom: 16rpx;position:absolute;left:120rpx;} 23 | 24 | .editdiv{float:right} 25 | .editbtn{height:50rpx;line-height:50rpx;float:left;font-size: .7rem;margin:5rpx;} 26 | .null{line-height: 200px;text-align: center;} -------------------------------------------------------------------------------- /pages/msg/index.js: -------------------------------------------------------------------------------- 1 | // pages/msg/index.js 2 | var util = require('../../utils/util.js'); 3 | var app = getApp(); 4 | Page({ 5 | data:{}, 6 | msg:function(){ 7 | var that = this; 8 | util.req('msg/getall', { sk: app.globalData.sk }, function (data) { 9 | var zan = 0; 10 | var comment = 0; 11 | var notice = 0; 12 | if (data.data == null) { 13 | var data = { zan: zan, comment: comment, notice: notice }; 14 | that.setData({ data: data }); 15 | return false; 16 | } 17 | data.data.forEach(function (item) { 18 | if (item.type == 'zan') { 19 | zan = item.count; 20 | } 21 | if (item.type == 'comment') { 22 | comment = item.count; 23 | } 24 | if (item.type == 'notice') { 25 | notice = item.count; 26 | } 27 | }) 28 | var data = { zan: zan, comment: comment, notice: notice }; 29 | that.setData({ data: data }); 30 | }) 31 | }, 32 | onShow: function () { 33 | this.msg(); 34 | }, 35 | onPullDownRefresh: function () { 36 | this.msg(); 37 | wx.stopPullDownRefresh(); 38 | }, 39 | 40 | }) -------------------------------------------------------------------------------- /pages/msg/list.js: -------------------------------------------------------------------------------- 1 | // pages/msg/list.js 2 | var util = require('../../utils/util.js'); 3 | var app = getApp(); 4 | var id = 0; 5 | var page = 1; 6 | var arr = new Array(); 7 | Page({ 8 | data:{}, 9 | getList:function(id){ 10 | var that = this; 11 | util.req('msg/get',{type:id,sk:app.globalData.sk,page:page},function(data){ 12 | if(data.data == null){ 13 | that.setData({ 'isnull': true,'nomore':true}); 14 | return false; 15 | } 16 | if(page == 1){ 17 | arr = new Array(); 18 | } 19 | 20 | data.data.forEach(function(item){ 21 | arr.push({ 22 | time: util.getDateBiff(item.time * 1000), 23 | content: item.content, 24 | nickName: item.nickName, 25 | avatarUrl: item.avatarUrl, 26 | url:item.url 27 | }) 28 | }) 29 | 30 | that.setData({'msg':arr}); 31 | }) 32 | }, 33 | onLoad:function(options){ 34 | // 页面初始化 options为页面跳转所带来的参数 35 | id = options.id; 36 | this.getList(options.id); 37 | }, 38 | onPullDownRefresh: function () { 39 | page = 1; 40 | this.getList(id); 41 | wx.stopPullDownRefresh(); 42 | }, 43 | onReachBottom: function () { 44 | if (!this.data.nomore) { 45 | page++; 46 | this.getList(id); 47 | } 48 | } 49 | 50 | 51 | 52 | }) -------------------------------------------------------------------------------- /pages/dynamic/add.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{errorMsg}} 3 | 4 | 5 | 6 |