├── pages ├── licai │ ├── licai.wxss │ ├── licai.json │ ├── licai.wxml │ └── licai.js ├── touzi │ ├── touzi.wxss │ ├── touzi.json │ ├── touzi.wxml │ └── touzi.js ├── index │ ├── calendar │ │ ├── calendar.js │ │ ├── calendar.wxml │ │ └── calendar.wxss │ ├── userinfo │ │ ├── userinfo.js │ │ ├── userinfo.wxss │ │ └── userinfo.wxml │ ├── userassets │ │ ├── userassets.js │ │ ├── userassets.wxss │ │ └── userassets.wxml │ ├── index.json │ ├── images │ │ ├── bt.png │ │ ├── bzx.png │ │ ├── cgz.png │ │ ├── db.png │ │ ├── dj.png │ │ ├── gb.png │ │ ├── gp.png │ │ ├── hj.png │ │ ├── hk.png │ │ ├── jj.png │ │ ├── jt.png │ │ ├── jy.png │ │ ├── plf.png │ │ ├── ss.png │ │ ├── xbk.png │ │ ├── xjk.png │ │ ├── yhq.png │ │ ├── zc.png │ │ ├── bbjh.png │ │ ├── bmlc.png │ │ ├── bthk.png │ │ ├── btsc.png │ │ ├── btsf.png │ │ ├── btte.png │ │ ├── dqhk.png │ │ ├── hfkzr.png │ │ ├── sjcz.png │ │ ├── xblc.png │ │ ├── xbxy.png │ │ ├── xybt.png │ │ ├── xykhk.png │ │ ├── eye@2x.png │ │ ├── eye@3x.png │ │ ├── newarea@2x.png │ │ ├── newarea@3x.png │ │ ├── investment@2x.png │ │ ├── investment@3x.png │ │ ├── right_arrow@2x.png │ │ ├── right_arrow@3x.png │ │ ├── servicearea@2x.png │ │ └── servicearea@3x.png │ ├── servicearea │ │ ├── servicearea.wxss │ │ └── servicearea.wxml │ ├── index.js │ ├── index.wxml │ ├── baitiao │ │ ├── baitiao.wxml │ │ └── baitiao.wxss │ ├── newsarea │ │ ├── newsarea.wxss │ │ └── newsarea.wxml │ ├── index.wxss │ └── investment │ │ ├── investment.wxss │ │ └── investment.wxml ├── baitiao │ ├── baitiao.json │ ├── images │ │ ├── more@2x.png │ │ ├── phone@2x.png │ │ ├── baipai@2x.png │ │ ├── daikuan@2x.png │ │ ├── gangbeng@2x.png │ │ ├── xiaoyuan@2x.png │ │ ├── baina_icon@2x.png │ │ ├── shangcheng@2x.png │ │ ├── sibaitiao@2x.png │ │ ├── xiaobaika@2x.png │ │ └── youhuijuan@2x.png │ ├── baitiao.wxss │ ├── mainad │ │ ├── mainad.wxss │ │ └── mainad.wxml │ ├── baitiao.wxml │ ├── channelbottom │ │ ├── channelbottom.wxss │ │ └── channelbottom.wxml │ ├── channel │ │ ├── channel.wxss │ │ └── channel.wxml │ ├── baitiao.js │ └── limitarea │ │ ├── limitarea.wxml │ │ └── limitarea.wxss ├── logs │ ├── logs.json │ ├── logs.wxss │ ├── logs.wxml │ └── logs.js └── zhongchou │ ├── zhongchou.json │ ├── zhongchou.wxml │ ├── zhongchou.js │ └── zhongchou.wxss ├── page ├── API │ ├── navigator │ │ ├── navigator.wxss │ │ ├── navigator.json │ │ ├── navigator.js │ │ └── navigator.wxml │ ├── request │ │ ├── request.wxss │ │ ├── request.js │ │ ├── request.json │ │ └── request.wxml │ ├── storage │ │ ├── storage.wxss │ │ ├── storage.json │ │ ├── storage.wxml │ │ └── storage.js │ ├── upload-file │ │ ├── upload-file.wxss │ │ ├── upload-file.js │ │ ├── upload-file.json │ │ └── upload-file.wxml │ ├── web-socket │ │ ├── web-socket.wxss │ │ ├── web-socket.js │ │ ├── web-socket.json │ │ └── web-socket.wxml │ ├── download-file │ │ ├── download-file.wxss │ │ ├── download-file.js │ │ ├── download-file.json │ │ └── download-file.wxml │ ├── open-location │ │ ├── open-location.wxss │ │ ├── open-location.json │ │ ├── open-location.js │ │ └── open-location.wxml │ ├── get-system-info │ │ ├── get-system-info.wxss │ │ ├── get-system-info.json │ │ ├── get-system-info.js │ │ └── get-system-info.wxml │ ├── request-payment │ │ ├── request-payment.wxss │ │ ├── request-payment.js │ │ ├── request-payment.json │ │ └── request-payment.wxml │ ├── navigation-bar-loading │ │ ├── navigation-bar-loading.wxss │ │ ├── navigation-bar-loading.json │ │ ├── navigation-bar-loading.js │ │ └── navigation-bar-loading.wxml │ ├── set-navigation-bar-title │ │ ├── set-navigation-bar-title.wxss │ │ ├── set-navigation-bar-title.json │ │ ├── set-navigation-bar-title.js │ │ └── set-navigation-bar-title.wxml │ ├── file │ │ ├── file.json │ │ ├── file.wxss │ │ ├── file.wxml │ │ └── file.js │ ├── image │ │ ├── image.json │ │ ├── image.wxss │ │ ├── image.js │ │ └── image.wxml │ ├── login │ │ ├── login.json │ │ ├── login.js │ │ ├── login.wxss │ │ └── login.wxml │ ├── voice │ │ ├── voice.json │ │ ├── voice.wxss │ │ ├── voice.js │ │ └── voice.wxml │ ├── canvas │ │ ├── canvas.json │ │ ├── example.wxml │ │ ├── canvas.wxss │ │ ├── canvas.wxml │ │ ├── canvas.js │ │ └── example.js │ ├── video │ │ ├── video.json │ │ ├── video.wxss │ │ ├── video.js │ │ └── video.wxml │ ├── animation │ │ ├── animation.json │ │ ├── animation.wxss │ │ ├── animation.wxml │ │ └── animation.js │ ├── get-location │ │ ├── get-location.json │ │ ├── format-location.js │ │ ├── get-location.wxss │ │ ├── get-location.js │ │ └── get-location.wxml │ ├── get-user-info │ │ ├── get-user-info.json │ │ ├── get-user-info.wxss │ │ ├── get-user-info.js │ │ └── get-user-info.wxml │ ├── background-audio │ │ ├── background-audio.json │ │ ├── background-audio.wxss │ │ ├── background-audio.wxml │ │ └── background-audio.js │ ├── get-network-type │ │ ├── get-network-type.json │ │ ├── get-network-type.wxss │ │ ├── get-network-type.js │ │ └── get-network-type.wxml │ ├── on-compass-change │ │ ├── on-compass-change.json │ │ ├── on-compass-change.wxss │ │ ├── on-compass-change.js │ │ └── on-compass-change.wxml │ ├── on-accelerometer-change │ │ ├── on-accelerometer-change.json │ │ ├── on-accelerometer-change.wxss │ │ ├── on-accelerometer-change.wxml │ │ └── on-accelerometer-change.js │ ├── common │ │ ├── footer.wxml │ │ └── header.wxml │ ├── pull-down-refresh │ │ ├── pull-down-refresh.json │ │ ├── pull-down-refresh.wxss │ │ ├── pull-down-refresh.js │ │ └── pull-down-refresh.wxml │ └── index │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── index.js └── component │ ├── component-pages │ ├── input │ │ ├── input.wxss │ │ ├── input.js │ │ └── input.wxml │ ├── button │ │ ├── button.wxss │ │ ├── button.js │ │ └── button.wxml │ ├── slide-tab │ │ ├── slide-tab.wxss │ │ ├── slide-tab.js │ │ └── slide-tab.wxml │ ├── view │ │ ├── view.js │ │ ├── view.wxss │ │ └── view.wxml │ ├── image │ │ ├── image.js │ │ ├── image.wxss │ │ └── image.wxml │ ├── navigator │ │ ├── navigator.js │ │ ├── navigator.wxss │ │ ├── navigate.js │ │ ├── redirect.js │ │ ├── navigate.wxml │ │ ├── redirect.wxml │ │ └── navigator.wxml │ ├── progress │ │ ├── progress.js │ │ ├── progress.wxss │ │ └── progress.wxml │ ├── map │ │ ├── map.json │ │ ├── map.wxml │ │ └── map.js │ ├── canvas │ │ ├── canvas.json │ │ ├── canvas.wxss │ │ ├── canvas.wxml │ │ └── canvas.js │ ├── icon │ │ ├── icon.wxss │ │ ├── icon.js │ │ └── icon.wxml │ ├── radio │ │ ├── radio.wxss │ │ ├── radio.js │ │ └── radio.wxml │ ├── swiper │ │ ├── swiper.wxss │ │ ├── swiper.js │ │ └── swiper.wxml │ ├── picker │ │ ├── picker.wxss │ │ ├── picker.js │ │ └── picker.wxml │ ├── checkbox │ │ ├── checkbox.wxss │ │ ├── checkbox.js │ │ └── checkbox.wxml │ ├── label │ │ ├── label.wxss │ │ ├── label.js │ │ └── label.wxml │ ├── action-sheet │ │ ├── action-sheet.wxss │ │ ├── action-sheet.js │ │ └── action-sheet.wxml │ ├── form │ │ ├── form.wxss │ │ ├── form.js │ │ └── form.wxml │ ├── scroll-view │ │ ├── scroll-view.wxss │ │ ├── scroll-view.js │ │ └── scroll-view.wxml │ ├── switch │ │ ├── switch.js │ │ └── switch.wxml │ ├── slider │ │ ├── slider.js │ │ └── slider.wxml │ ├── video │ │ ├── video.js │ │ └── video.wxml │ ├── loading │ │ ├── loading.js │ │ └── loading.wxml │ ├── audio │ │ ├── audio.wxml │ │ └── audio.js │ ├── text │ │ ├── text.wxml │ │ └── text.js │ ├── modal │ │ ├── modal.js │ │ └── modal.wxml │ └── toast │ │ ├── toast.js │ │ └── toast.wxml │ ├── resources │ ├── pic │ │ ├── 1.jpg │ │ └── 2.jpg │ └── kind │ │ ├── form.png │ │ ├── map.png │ │ ├── nav.png │ │ ├── view.png │ │ ├── canvas.png │ │ ├── content.png │ │ ├── media.png │ │ └── interact.png │ ├── index.wxml │ ├── index.js │ └── index.wxss ├── image ├── pause.png ├── play.png ├── plus.png ├── record.png ├── stop.png ├── trash.png ├── wechat.png ├── icon_API.png ├── wechatHL.png ├── arrowright.png ├── green_tri.png ├── icon_API_HL.png ├── icon_component.png ├── icon64_appwx_logo.png └── icon_component_HL.png ├── images ├── icon │ ├── bt-normal.png │ ├── bt-select.png │ ├── lc-normal.png │ ├── lc-select.png │ ├── tz-normal.png │ ├── tz-select.png │ ├── wo-normal.png │ ├── wo-select.png │ ├── zc-normal.png │ └── zc-select.png ├── right_arrow@2x.png └── right_arrow@3x.png ├── util └── util.js ├── README.md ├── utils └── util.js ├── app.js ├── app.json └── app.wxss /pages/licai/licai.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/touzi/touzi.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/navigator/navigator.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/request/request.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/storage/storage.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/index/calendar/calendar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/index/userinfo/userinfo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/upload-file/upload-file.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/web-socket/web-socket.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/index/userassets/userassets.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/download-file/download-file.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/open-location/open-location.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/request/request.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /page/API/get-system-info/get-system-info.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/request-payment/request-payment.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/upload-file/upload-file.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /page/API/web-socket/web-socket.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /page/component/component-pages/input/input.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/download-file/download-file.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /page/component/component-pages/button/button.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/component/component-pages/slide-tab/slide-tab.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/component/component-pages/view/view.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /page/API/navigation-bar-loading/navigation-bar-loading.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/API/request-payment/request-payment.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | }) 3 | -------------------------------------------------------------------------------- /page/API/set-navigation-bar-title/set-navigation-bar-title.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /page/component/component-pages/image/image.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | }) 3 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/navigator.js: -------------------------------------------------------------------------------- 1 | Page({}) -------------------------------------------------------------------------------- /page/component/component-pages/progress/progress.js: -------------------------------------------------------------------------------- 1 | Page({}) 2 | -------------------------------------------------------------------------------- /pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "首页" 3 | } -------------------------------------------------------------------------------- /pages/licai/licai.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "理财" 3 | } -------------------------------------------------------------------------------- /pages/touzi/touzi.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "投资" 3 | } -------------------------------------------------------------------------------- /pages/baitiao/baitiao.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "白条" 3 | } -------------------------------------------------------------------------------- /pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志" 3 | } -------------------------------------------------------------------------------- /page/API/file/file.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "文件" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/image/image.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "图片" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "微信登录" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/voice/voice.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "录音" 3 | } 4 | -------------------------------------------------------------------------------- /pages/zhongchou/zhongchou.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "众筹" 3 | } -------------------------------------------------------------------------------- /page/API/canvas/canvas.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "创建画布" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/request/request.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "网络请求" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/storage/storage.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "数据存储" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/video/video.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "拍摄/选择视频" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/animation/animation.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "动画" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/navigator/navigator.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "页面跳转" 3 | } 4 | -------------------------------------------------------------------------------- /image/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/pause.png -------------------------------------------------------------------------------- /image/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/play.png -------------------------------------------------------------------------------- /image/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/plus.png -------------------------------------------------------------------------------- /image/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/record.png -------------------------------------------------------------------------------- /image/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/stop.png -------------------------------------------------------------------------------- /image/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/trash.png -------------------------------------------------------------------------------- /image/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/wechat.png -------------------------------------------------------------------------------- /page/API/get-location/get-location.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取位置" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/upload-file/upload-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "上传文件" 3 | } 4 | -------------------------------------------------------------------------------- /image/icon_API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/icon_API.png -------------------------------------------------------------------------------- /image/wechatHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/wechatHL.png -------------------------------------------------------------------------------- /page/API/download-file/download-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "下载文件" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/get-user-info/get-user-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取用户信息" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/open-location/open-location.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看位置" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/request-payment/request-payment.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "发起支付" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/web-socket/web-socket.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "Web Socket" 3 | } 4 | -------------------------------------------------------------------------------- /page/component/component-pages/map/map.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "地图" 3 | } 4 | -------------------------------------------------------------------------------- /image/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/arrowright.png -------------------------------------------------------------------------------- /image/green_tri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/green_tri.png -------------------------------------------------------------------------------- /image/icon_API_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/icon_API_HL.png -------------------------------------------------------------------------------- /page/API/background-audio/background-audio.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "背景音乐" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/get-system-info/get-system-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取手机系统信息" 3 | } 4 | -------------------------------------------------------------------------------- /page/component/component-pages/canvas/canvas.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "画布" 3 | } 4 | -------------------------------------------------------------------------------- /page/component/component-pages/progress/progress.wxss: -------------------------------------------------------------------------------- 1 | progress{ 2 | margin-bottom: 60rpx; 3 | } 4 | -------------------------------------------------------------------------------- /pages/licai/licai.wxml: -------------------------------------------------------------------------------- 1 | 2 | coming soon 3 | -------------------------------------------------------------------------------- /pages/touzi/touzi.wxml: -------------------------------------------------------------------------------- 1 | 2 | coming soon 3 | -------------------------------------------------------------------------------- /page/API/get-network-type/get-network-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "获取手机网络状态" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/on-compass-change/on-compass-change.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "监听罗盘数据" 3 | } 4 | -------------------------------------------------------------------------------- /image/icon_component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/icon_component.png -------------------------------------------------------------------------------- /images/icon/bt-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/bt-normal.png -------------------------------------------------------------------------------- /images/icon/bt-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/bt-select.png -------------------------------------------------------------------------------- /images/icon/lc-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/lc-normal.png -------------------------------------------------------------------------------- /images/icon/lc-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/lc-select.png -------------------------------------------------------------------------------- /images/icon/tz-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/tz-normal.png -------------------------------------------------------------------------------- /images/icon/tz-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/tz-select.png -------------------------------------------------------------------------------- /images/icon/wo-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/wo-normal.png -------------------------------------------------------------------------------- /images/icon/wo-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/wo-select.png -------------------------------------------------------------------------------- /images/icon/zc-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/zc-normal.png -------------------------------------------------------------------------------- /images/icon/zc-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/icon/zc-select.png -------------------------------------------------------------------------------- /images/right_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/right_arrow@2x.png -------------------------------------------------------------------------------- /images/right_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/images/right_arrow@3x.png -------------------------------------------------------------------------------- /pages/index/images/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/bt.png -------------------------------------------------------------------------------- /pages/index/images/bzx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/bzx.png -------------------------------------------------------------------------------- /pages/index/images/cgz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/cgz.png -------------------------------------------------------------------------------- /pages/index/images/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/db.png -------------------------------------------------------------------------------- /pages/index/images/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/dj.png -------------------------------------------------------------------------------- /pages/index/images/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/gb.png -------------------------------------------------------------------------------- /pages/index/images/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/gp.png -------------------------------------------------------------------------------- /pages/index/images/hj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/hj.png -------------------------------------------------------------------------------- /pages/index/images/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/hk.png -------------------------------------------------------------------------------- /pages/index/images/jj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/jj.png -------------------------------------------------------------------------------- /pages/index/images/jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/jt.png -------------------------------------------------------------------------------- /pages/index/images/jy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/jy.png -------------------------------------------------------------------------------- /pages/index/images/plf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/plf.png -------------------------------------------------------------------------------- /pages/index/images/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/ss.png -------------------------------------------------------------------------------- /pages/index/images/xbk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xbk.png -------------------------------------------------------------------------------- /pages/index/images/xjk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xjk.png -------------------------------------------------------------------------------- /pages/index/images/yhq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/yhq.png -------------------------------------------------------------------------------- /pages/index/images/zc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/zc.png -------------------------------------------------------------------------------- /image/icon64_appwx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/icon64_appwx_logo.png -------------------------------------------------------------------------------- /image/icon_component_HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/image/icon_component_HL.png -------------------------------------------------------------------------------- /page/API/navigation-bar-loading/navigation-bar-loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "标题栏加载动画" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/on-accelerometer-change/on-accelerometer-change.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "监听重力感应数据" 3 | } 4 | -------------------------------------------------------------------------------- /page/API/set-navigation-bar-title/set-navigation-bar-title.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "设置页面标题" 3 | } 4 | -------------------------------------------------------------------------------- /page/component/component-pages/icon/icon.wxss: -------------------------------------------------------------------------------- 1 | .group{ 2 | flex-direction: row; 3 | align-items: center; 4 | } 5 | -------------------------------------------------------------------------------- /page/component/component-pages/radio/radio.wxss: -------------------------------------------------------------------------------- 1 | .radio { 2 | display: block; 3 | margin-bottom: 20rpx; 4 | } 5 | -------------------------------------------------------------------------------- /page/component/component-pages/swiper/swiper.wxss: -------------------------------------------------------------------------------- 1 | .swiper-item{ 2 | display: block; 3 | height: 150px; 4 | } 5 | -------------------------------------------------------------------------------- /pages/index/images/bbjh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/bbjh.png -------------------------------------------------------------------------------- /pages/index/images/bmlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/bmlc.png -------------------------------------------------------------------------------- /pages/index/images/bthk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/bthk.png -------------------------------------------------------------------------------- /pages/index/images/btsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/btsc.png -------------------------------------------------------------------------------- /pages/index/images/btsf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/btsf.png -------------------------------------------------------------------------------- /pages/index/images/btte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/btte.png -------------------------------------------------------------------------------- /pages/index/images/dqhk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/dqhk.png -------------------------------------------------------------------------------- /pages/index/images/hfkzr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/hfkzr.png -------------------------------------------------------------------------------- /pages/index/images/sjcz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/sjcz.png -------------------------------------------------------------------------------- /pages/index/images/xblc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xblc.png -------------------------------------------------------------------------------- /pages/index/images/xbxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xbxy.png -------------------------------------------------------------------------------- /pages/index/images/xybt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xybt.png -------------------------------------------------------------------------------- /pages/index/images/xykhk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/xykhk.png -------------------------------------------------------------------------------- /page/component/component-pages/picker/picker.wxss: -------------------------------------------------------------------------------- 1 | .picker{ 2 | padding: 26rpx; 3 | background-color: #FFFFFF; 4 | } 5 | -------------------------------------------------------------------------------- /pages/index/images/eye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/eye@2x.png -------------------------------------------------------------------------------- /pages/index/images/eye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/eye@3x.png -------------------------------------------------------------------------------- /page/component/component-pages/checkbox/checkbox.wxss: -------------------------------------------------------------------------------- 1 | .checkbox{ 2 | display: block; 3 | margin-bottom: 20rpx; 4 | } 5 | -------------------------------------------------------------------------------- /pages/baitiao/images/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/more@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/phone@2x.png -------------------------------------------------------------------------------- /pages/index/images/newarea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/newarea@2x.png -------------------------------------------------------------------------------- /pages/index/images/newarea@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/newarea@3x.png -------------------------------------------------------------------------------- /page/component/resources/pic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/pic/1.jpg -------------------------------------------------------------------------------- /page/component/resources/pic/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/pic/2.jpg -------------------------------------------------------------------------------- /pages/baitiao/images/baipai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/baipai@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/daikuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/daikuan@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/gangbeng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/gangbeng@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/xiaoyuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/xiaoyuan@2x.png -------------------------------------------------------------------------------- /pages/index/images/investment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/investment@2x.png -------------------------------------------------------------------------------- /pages/index/images/investment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/investment@3x.png -------------------------------------------------------------------------------- /page/API/common/footer.wxml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /page/component/resources/kind/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/form.png -------------------------------------------------------------------------------- /page/component/resources/kind/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/map.png -------------------------------------------------------------------------------- /page/component/resources/kind/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/nav.png -------------------------------------------------------------------------------- /page/component/resources/kind/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/view.png -------------------------------------------------------------------------------- /pages/baitiao/images/baina_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/baina_icon@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/shangcheng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/shangcheng@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/sibaitiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/sibaitiao@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/xiaobaika@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/xiaobaika@2x.png -------------------------------------------------------------------------------- /pages/baitiao/images/youhuijuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/baitiao/images/youhuijuan@2x.png -------------------------------------------------------------------------------- /pages/index/images/right_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/right_arrow@2x.png -------------------------------------------------------------------------------- /pages/index/images/right_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/right_arrow@3x.png -------------------------------------------------------------------------------- /pages/index/images/servicearea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/servicearea@2x.png -------------------------------------------------------------------------------- /pages/index/images/servicearea@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/pages/index/images/servicearea@3x.png -------------------------------------------------------------------------------- /page/API/pull-down-refresh/pull-down-refresh.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "下拉刷新", 3 | "enablePullDownRefresh": true 4 | } 5 | -------------------------------------------------------------------------------- /page/component/component-pages/canvas/canvas.wxss: -------------------------------------------------------------------------------- 1 | .canvas { 2 | width: 305px; 3 | height: 305px; 4 | background-color: #fff; 5 | } 6 | -------------------------------------------------------------------------------- /page/component/resources/kind/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/canvas.png -------------------------------------------------------------------------------- /page/component/resources/kind/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/content.png -------------------------------------------------------------------------------- /page/component/resources/kind/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/media.png -------------------------------------------------------------------------------- /page/component/resources/kind/interact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-jd-baitiao/HEAD/page/component/resources/kind/interact.png -------------------------------------------------------------------------------- /pages/logs/logs.wxss: -------------------------------------------------------------------------------- 1 | .log-list { 2 | display: flex; 3 | flex-direction: column; 4 | padding: 40rpx; 5 | } 6 | .log-item { 7 | margin: 10rpx; 8 | } 9 | -------------------------------------------------------------------------------- /page/component/component-pages/image/image.wxss: -------------------------------------------------------------------------------- 1 | .section__ctn{ 2 | text-align: center; 3 | } 4 | .image{ 5 | width: 580rpx; 6 | height: 208rpx; 7 | } -------------------------------------------------------------------------------- /page/component/component-pages/label/label.wxss: -------------------------------------------------------------------------------- 1 | .label-1, .label-2{ 2 | margin-bottom: 30rpx; 3 | } 4 | 5 | .label-4_text{ 6 | text-align: center; 7 | margin-top: 30rpx; 8 | } 9 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/navigator.wxss: -------------------------------------------------------------------------------- 1 | .navigator-hover button{ 2 | background-color:blue; 3 | } 4 | .other-navigator-hover button{ 5 | background-color:red; 6 | } 7 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/navigate.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | onLoad: function(options) { 3 | console.log(options) 4 | this.setData({ 5 | title: options.title 6 | }) 7 | } 8 | }) 9 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/redirect.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | onLoad: function(options) { 3 | console.log(options) 4 | this.setData({ 5 | title: options.title 6 | }) 7 | } 8 | }) 9 | -------------------------------------------------------------------------------- /page/component/component-pages/action-sheet/action-sheet.wxss: -------------------------------------------------------------------------------- 1 | /* 2 | .cancel { 3 | color: white; 4 | background: #303F9F; 5 | } 6 | .item { 7 | color: black; 8 | background: #C5CAE9; 9 | }*/ 10 | -------------------------------------------------------------------------------- /page/API/common/header.wxml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /pages/baitiao/baitiao.wxss: -------------------------------------------------------------------------------- 1 | /*用户信息*/ 2 | @import "limitarea/limitarea.wxss"; 3 | /*主广告位*/ 4 | @import "mainad/mainad.wxss"; 5 | /*频道入口*/ 6 | @import "channel/channel.wxss"; 7 | /*频道底部*/ 8 | @import "channelbottom/channelbottom.wxss"; -------------------------------------------------------------------------------- /pages/logs/logs.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{index + 1}}. {{log}} 5 | 6 | 7 | -------------------------------------------------------------------------------- /page/API/get-network-type/get-network-type.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info { 2 | height: 200rpx; 3 | } 4 | .page-body-text-network-type { 5 | font-size: 80rpx; 6 | font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; 7 | } 8 | -------------------------------------------------------------------------------- /page/API/on-compass-change/on-compass-change.wxss: -------------------------------------------------------------------------------- 1 | .direction { 2 | margin-top: 100rpx; 3 | display: flex; 4 | } 5 | .direction-value { 6 | font-size: 200rpx; 7 | } 8 | .direction-degree { 9 | font-size: 40rpx; 10 | } 11 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/navigate.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 新建的页面 4 | 这是新建的页面,点击左上角返回回到之前页面 5 | 6 | 7 | -------------------------------------------------------------------------------- /page/component/component-pages/navigator/redirect.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 当前页 4 | 这是当前页,点击左上角返回回到上级菜单 5 | 6 | 7 | -------------------------------------------------------------------------------- /pages/licai/licai.js: -------------------------------------------------------------------------------- 1 | //licai.js 2 | //获取应用实例 3 | 4 | Page({ 5 | data: { 6 | }, 7 | onLoad: function () { 8 | console.log('理财'); 9 | }, 10 | onReady: function () { 11 | console.log('理财'); 12 | } 13 | }) 14 | -------------------------------------------------------------------------------- /pages/touzi/touzi.js: -------------------------------------------------------------------------------- 1 | //touzi.js 2 | //获取应用实例 3 | 4 | Page({ 5 | data: { 6 | }, 7 | onLoad: function () { 8 | console.log('touzi'); 9 | }, 10 | onReady: function () { 11 | console.log('touzi'); 12 | } 13 | }) 14 | -------------------------------------------------------------------------------- /page/API/navigation-bar-loading/navigation-bar-loading.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | showNavigationBarLoading: function () { 3 | wx.showNavigationBarLoading() 4 | }, 5 | hideNavigationBarLoading: function () { 6 | wx.hideNavigationBarLoading() 7 | } 8 | }) 9 | -------------------------------------------------------------------------------- /page/API/set-navigation-bar-title/set-navigation-bar-title.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | setNaivgationBarTitle: function (e) { 3 | var title = e.detail.value.title 4 | console.log(title) 5 | wx.setNavigationBarTitle({ 6 | title: title 7 | }) 8 | } 9 | }) 10 | -------------------------------------------------------------------------------- /page/component/component-pages/form/form.wxss: -------------------------------------------------------------------------------- 1 | wx-button { 2 | margin-top: 20rpx; 3 | margin-bottom: 20rpx; 4 | } 5 | wx-label { 6 | display: block; 7 | margin-top: 10rpx; 8 | } 9 | .picker-text { 10 | margin-left: 20rpx; 11 | position: relative; 12 | } 13 | -------------------------------------------------------------------------------- /page/component/component-pages/scroll-view/scroll-view.wxss: -------------------------------------------------------------------------------- 1 | .scroll-view_H{ 2 | white-space: nowrap; 3 | } 4 | .scroll-view-item{ 5 | height: 200px; 6 | } 7 | .scroll-view-item_H{ 8 | display: inline-block; 9 | width: 100%; 10 | height: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /page/API/pull-down-refresh/pull-down-refresh.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info { 2 | background-color: transparent; 3 | } 4 | .page-body-buttons button { 5 | color: #21c932; 6 | margin: 0 100rpx; 7 | } 8 | .page-body-buttons button:after { 9 | border-color: #21c932; 10 | } 11 | -------------------------------------------------------------------------------- /page/component/component-pages/switch/switch.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | switch1Change: function (e){ 3 | console.log('switch1 发生 change 事件,携带值为', e.detail.value) 4 | }, 5 | switch2Change: function (e){ 6 | console.log('switch2 发生 change 事件,携带值为', e.detail.value) 7 | } 8 | }) 9 | -------------------------------------------------------------------------------- /page/API/get-user-info/get-user-info.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info { 2 | height: 350rpx; 3 | } 4 | .userinfo-avatar { 5 | border-radius: 128rpx; 6 | width: 128rpx; 7 | height: 128rpx; 8 | } 9 | .userinfo-nickname { 10 | margin-top: 20rpx; 11 | font-size: 38rpx; 12 | } 13 | -------------------------------------------------------------------------------- /page/API/navigator/navigator.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | navigateTo: function () { 3 | wx.navigateTo({ url: './navigator' }) 4 | }, 5 | navigateBack: function () { 6 | wx.navigateBack() 7 | }, 8 | redirectTo: function () { 9 | wx.redirectTo({ url: './navigator' }) 10 | } 11 | }) 12 | -------------------------------------------------------------------------------- /page/component/component-pages/view/view.wxss: -------------------------------------------------------------------------------- 1 | .flex-wrp{ 2 | height: 100px; 3 | display:flex; 4 | background-color: #FFFFFF; 5 | } 6 | .flex-item{ 7 | width: 100px; 8 | height: 100px; 9 | color: #FFFFFF; 10 | display: flex; 11 | justify-content: center; 12 | align-items: center; 13 | } 14 | -------------------------------------------------------------------------------- /page/API/on-compass-change/on-compass-change.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | direction: 0 4 | }, 5 | onReady: function () { 6 | var that = this 7 | wx.onCompassChange(function (res) { 8 | that.setData({ 9 | direction: parseInt(res.direction) 10 | }) 11 | }) 12 | } 13 | }) 14 | -------------------------------------------------------------------------------- /page/component/component-pages/slider/slider.js: -------------------------------------------------------------------------------- 1 | var pageData = {} 2 | for (var i = 1; i < 5; ++i) { 3 | (function (index) { 4 | pageData['slider' + index + 'change'] = function(e) { 5 | console.log('slider' + index + '发生change事件,携带值为', e.detail.value) 6 | } 7 | })(i) 8 | } 9 | Page(pageData) 10 | -------------------------------------------------------------------------------- /pages/baitiao/mainad/mainad.wxss: -------------------------------------------------------------------------------- 1 | .mainad-area{ 2 | padding-bottom: 40rpx; 3 | } 4 | 5 | .swiper-item{ 6 | display: block; 7 | height: 150px; 8 | } 9 | 10 | .slide-image{ 11 | width: 100%; 12 | } 13 | 14 | .section_gap .repeat{ 15 | background-color: #DDDDDD; 16 | width: 12rpx; 17 | height: 12rpx; 18 | } -------------------------------------------------------------------------------- /pages/baitiao/baitiao.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /page/API/get-location/format-location.js: -------------------------------------------------------------------------------- 1 | function formatLocation(longitude, latitude) { 2 | longitude = longitude.toFixed(2) 3 | latitude = latitude.toFixed(2) 4 | 5 | return { 6 | longitude: longitude.toString().split('.'), 7 | latitude: latitude.toString().split('.') 8 | } 9 | } 10 | 11 | module.exports = formatLocation 12 | -------------------------------------------------------------------------------- /page/API/get-location/get-location.wxss: -------------------------------------------------------------------------------- 1 | .page-body-info { 2 | height: 250rpx; 3 | } 4 | .page-body-text-small { 5 | font-size: 24rpx; 6 | color: #000; 7 | margin-bottom: 100rpx; 8 | } 9 | .page-body-text-location { 10 | display: flex; 11 | font-size: 50rpx; 12 | } 13 | .page-body-text-location text { 14 | margin: 10rpx; 15 | } 16 | -------------------------------------------------------------------------------- /pages/logs/logs.js: -------------------------------------------------------------------------------- 1 | //logs.js 2 | var util = require('../../utils/util.js') 3 | Page({ 4 | data: { 5 | logs: [] 6 | }, 7 | onLoad: function () { 8 | this.setData({ 9 | logs: (wx.getStorageSync('logs') || []).map(function (log) { 10 | return util.formatTime(new Date(log)) 11 | }) 12 | }) 13 | } 14 | }) 15 | -------------------------------------------------------------------------------- /page/API/pull-down-refresh/pull-down-refresh.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | onPullDownRefresh: function () { 3 | console.log('onPullDownRefresh', new Date()) 4 | }, 5 | stopPullDownRefresh: function () { 6 | wx.stopPullDownRefresh({ 7 | complete: function (res) { 8 | console.log(res, new Date()) 9 | } 10 | }) 11 | } 12 | }) 13 | -------------------------------------------------------------------------------- /page/component/component-pages/video/video.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data:{ 3 | src: "http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400" 4 | } 5 | }) 6 | -------------------------------------------------------------------------------- /page/API/get-system-info/get-system-info.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | systemInfo: {} 4 | }, 5 | getSystemInfo: function () { 6 | var that = this 7 | wx.getSystemInfo({ 8 | success: function (res) { 9 | that.setData({ 10 | systemInfo: res 11 | }) 12 | that.update() 13 | } 14 | }) 15 | } 16 | }) 17 | -------------------------------------------------------------------------------- /page/component/component-pages/canvas/canvas.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | canvas 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /page/API/open-location/open-location.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | openLocation: function (e) { 3 | console.log(e) 4 | var value = e.detail.value 5 | console.log(value) 6 | wx.openLocation({ 7 | longitude: Number(value.longitude), 8 | latitude: Number(value.latitude), 9 | name: value.name, 10 | address: value.address 11 | }) 12 | } 13 | }) 14 | -------------------------------------------------------------------------------- /page/API/canvas/example.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{method}} 4 | {{introduction}} 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /page/component/component-pages/loading/loading.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | hidden: true 4 | }, 5 | loadingChange: function() { 6 | this.setData({ 7 | hidden: true 8 | }) 9 | }, 10 | loadingTap: function() { 11 | this.setData({ 12 | hidden: false 13 | }) 14 | 15 | var that = this 16 | setTimeout(function() { 17 | that.setData({ 18 | hidden: true 19 | }) 20 | }, 1500) 21 | } 22 | }) 23 | -------------------------------------------------------------------------------- /page/component/component-pages/radio/radio.js: -------------------------------------------------------------------------------- 1 | Page({ 2 | data: { 3 | items: [ 4 | {name: 'USA', value: '美国'}, 5 | {name: 'CHN', value: '中国', checked: 'true'}, 6 | {name: 'BRA', value: '巴西'}, 7 | {name: 'JPN', value: '日本'}, 8 | {name: 'ENG', value: '英国'}, 9 | {name: 'FRA', value: '法国'}, 10 | ] 11 | }, 12 | radioChange: function(e) { 13 | console.log('radio发生change事件,携带value值为:', e.detail.value) 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /page/API/request/request.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |