├── .gitignore ├── LICENSE ├── README.md ├── cloudfunctions ├── login │ ├── config.json │ ├── index.js │ └── package.json ├── querySeat │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── query_appointment │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── random │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_13 │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_13_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_15 │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_15_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_19 │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_19_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_7_15 │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_7_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_9 │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_9_15_cancel │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── trigger_end │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── update │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── updateSeat │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── updateSeatStatus │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── updateUserStatus │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json └── update_seat │ ├── config.json │ ├── index.js │ ├── package-lock.json │ └── package.json ├── minicode ├── uploadImage │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── image │ │ └── no_image.jpg │ ├── pages │ │ ├── index │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── index.wxml │ │ │ └── index.wxss │ │ └── uploadImage │ │ │ ├── uploadImage.js │ │ │ ├── uploadImage.json │ │ │ ├── uploadImage.wxml │ │ │ └── uploadImage.wxss │ ├── project.config.json │ └── sitemap.json └── wxapp-bluetooth │ ├── app.js │ ├── app.json │ ├── app.wxss │ ├── pages │ ├── bluetooth │ │ ├── bluetooth.js │ │ ├── bluetooth.json │ │ ├── bluetooth.wxml │ │ └── bluetooth.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── logs │ │ ├── logs.js │ │ ├── logs.json │ │ ├── logs.wxml │ │ └── logs.wxss │ ├── project.config.json │ ├── sitemap.json │ └── utils │ └── util.js ├── miniprogram ├── app.js ├── app.json ├── app.wxss ├── components │ ├── cell │ │ ├── cell.js │ │ ├── cell.json │ │ ├── cell.wxml │ │ └── cell.wxss │ ├── cells │ │ ├── cells.js │ │ ├── cells.json │ │ └── cells.wxml │ ├── chatroom │ │ ├── chatroom.js │ │ ├── chatroom.json │ │ ├── chatroom.wxml │ │ ├── chatroom.wxss │ │ ├── dots.gif │ │ └── photo.png │ └── circle │ │ ├── circle.js │ │ ├── circle.json │ │ ├── circle.wxml │ │ └── circle.wxss ├── icon │ ├── gift-01.png │ ├── gift-02.png │ ├── gift-03.png │ ├── icon_home.png │ ├── icon_home_fill.png │ ├── icon_order.png │ ├── icon_order_fill.png │ ├── icon_person.png │ ├── icon_person_fill.png │ ├── icon_report.png │ ├── icon_report_fill.png │ ├── nculogo1.png │ └── nculogo3.png ├── images │ ├── circle_green.png │ ├── code-cloud-callback-config.png │ ├── code-db-inc-dec.png │ ├── code-db-onAdd.png │ ├── code-db-onQuery.png │ ├── code-db-onRemove.png │ ├── code-func-sum.png │ ├── console-entrance.png │ ├── create-collection.png │ ├── icon_logout.png │ └── no_image.jpg ├── pages │ ├── accuse │ │ ├── accuse.js │ │ ├── accuse.json │ │ ├── accuse.wxml │ │ └── accuse.wxss │ ├── accusehistory │ │ ├── accusehistory.js │ │ ├── accusehistory.json │ │ ├── accusehistory.wxml │ │ └── accusehistory.wxss │ ├── addFunction │ │ ├── addFunction.js │ │ ├── addFunction.json │ │ ├── addFunction.wxml │ │ └── addFunction.wxss │ ├── chooseLib │ │ ├── chooseLib.js │ │ ├── chooseLib.json │ │ ├── chooseLib.wxml │ │ └── chooseLib.wxss │ ├── deployFunctions │ │ ├── deployFunctions.js │ │ ├── deployFunctions.json │ │ ├── deployFunctions.wxml │ │ └── deployFunctions.wxss │ ├── im │ │ ├── im.js │ │ ├── im.json │ │ ├── im.wxml │ │ ├── im.wxss │ │ └── room │ │ │ ├── index.js │ │ │ ├── room.js │ │ │ ├── room.json │ │ │ ├── room.wxml │ │ │ └── room.wxss │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── user-unlogin.png │ ├── linkbt │ │ ├── linkbt.js │ │ ├── linkbt.json │ │ ├── linkbt.wxml │ │ └── linkbt.wxss │ ├── logs │ │ ├── logs.js │ │ ├── logs.json │ │ ├── logs.wxml │ │ └── logs.wxss │ ├── openapi │ │ ├── callback │ │ │ ├── callback.js │ │ │ ├── callback.json │ │ │ ├── callback.wxml │ │ │ └── callback.wxss │ │ ├── cloudid │ │ │ ├── cloudid.js │ │ │ ├── cloudid.json │ │ │ ├── cloudid.wxml │ │ │ └── cloudid.wxss │ │ ├── openapi.js │ │ ├── openapi.json │ │ ├── openapi.wxml │ │ ├── openapi.wxss │ │ └── serverapi │ │ │ ├── serverapi.js │ │ │ ├── serverapi.json │ │ │ ├── serverapi.wxml │ │ │ └── serverapi.wxss │ ├── order │ │ ├── order.js │ │ ├── order.json │ │ ├── order.wxml │ │ └── order.wxss │ ├── orderview │ │ ├── orderview.js │ │ ├── orderview.json │ │ ├── orderview.wxml │ │ └── orderview.wxss │ ├── person │ │ ├── person.js │ │ ├── person.json │ │ ├── person.wxml │ │ └── person.wxss │ ├── scorehistory │ │ ├── scorehistory.js │ │ ├── scorehistory.json │ │ ├── scorehistory.wxml │ │ └── scorehistory.wxss │ ├── seat │ │ ├── seat.js │ │ ├── seat.json │ │ ├── seat.wxml │ │ └── seat.wxss │ ├── storageConsole │ │ ├── storageConsole.js │ │ ├── storageConsole.json │ │ ├── storageConsole.wxml │ │ └── storageConsole.wxss │ ├── updateinfor │ │ └── updateInfor.js │ └── userConsole │ │ ├── userConsole.js │ │ ├── userConsole.json │ │ ├── userConsole.wxml │ │ └── userConsole.wxss ├── sitemap.json ├── style │ ├── guide.wxss │ └── weui.wxss └── util │ └── util.js └── project.config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/README.md -------------------------------------------------------------------------------- /cloudfunctions/login/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/login/config.json -------------------------------------------------------------------------------- /cloudfunctions/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/login/index.js -------------------------------------------------------------------------------- /cloudfunctions/login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/login/package.json -------------------------------------------------------------------------------- /cloudfunctions/querySeat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/querySeat/config.json -------------------------------------------------------------------------------- /cloudfunctions/querySeat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/querySeat/index.js -------------------------------------------------------------------------------- /cloudfunctions/querySeat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/querySeat/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/querySeat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/querySeat/package.json -------------------------------------------------------------------------------- /cloudfunctions/query_appointment/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/query_appointment/config.json -------------------------------------------------------------------------------- /cloudfunctions/query_appointment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/query_appointment/index.js -------------------------------------------------------------------------------- /cloudfunctions/query_appointment/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/query_appointment/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/query_appointment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/query_appointment/package.json -------------------------------------------------------------------------------- /cloudfunctions/random/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/random/config.json -------------------------------------------------------------------------------- /cloudfunctions/random/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/random/index.js -------------------------------------------------------------------------------- /cloudfunctions/random/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/random/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/random/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/random/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_13/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_13_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_13_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_13_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_15/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_19/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_19_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_19_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_19_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_7_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_7_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9_15_cancel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9_15_cancel/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9_15_cancel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9_15_cancel/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_9_15_cancel/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9_15_cancel/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_9_15_cancel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_9_15_cancel/package.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_end/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_end/config.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_end/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_end/index.js -------------------------------------------------------------------------------- /cloudfunctions/trigger_end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_end/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/trigger_end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/trigger_end/package.json -------------------------------------------------------------------------------- /cloudfunctions/update/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update/config.json -------------------------------------------------------------------------------- /cloudfunctions/update/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update/index.js -------------------------------------------------------------------------------- /cloudfunctions/update/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/update/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update/package.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeat/config.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeat/index.js -------------------------------------------------------------------------------- /cloudfunctions/updateSeat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeat/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeat/package.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeatStatus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeatStatus/config.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeatStatus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeatStatus/index.js -------------------------------------------------------------------------------- /cloudfunctions/updateSeatStatus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeatStatus/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/updateSeatStatus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateSeatStatus/package.json -------------------------------------------------------------------------------- /cloudfunctions/updateUserStatus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateUserStatus/config.json -------------------------------------------------------------------------------- /cloudfunctions/updateUserStatus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateUserStatus/index.js -------------------------------------------------------------------------------- /cloudfunctions/updateUserStatus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateUserStatus/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/updateUserStatus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/updateUserStatus/package.json -------------------------------------------------------------------------------- /cloudfunctions/update_seat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update_seat/config.json -------------------------------------------------------------------------------- /cloudfunctions/update_seat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update_seat/index.js -------------------------------------------------------------------------------- /cloudfunctions/update_seat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update_seat/package-lock.json -------------------------------------------------------------------------------- /cloudfunctions/update_seat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/cloudfunctions/update_seat/package.json -------------------------------------------------------------------------------- /minicode/uploadImage/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/app.js -------------------------------------------------------------------------------- /minicode/uploadImage/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/app.json -------------------------------------------------------------------------------- /minicode/uploadImage/app.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minicode/uploadImage/image/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/image/no_image.jpg -------------------------------------------------------------------------------- /minicode/uploadImage/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/index/index.js -------------------------------------------------------------------------------- /minicode/uploadImage/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /minicode/uploadImage/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/index/index.wxml -------------------------------------------------------------------------------- /minicode/uploadImage/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/index/index.wxss -------------------------------------------------------------------------------- /minicode/uploadImage/pages/uploadImage/uploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/uploadImage/uploadImage.js -------------------------------------------------------------------------------- /minicode/uploadImage/pages/uploadImage/uploadImage.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /minicode/uploadImage/pages/uploadImage/uploadImage.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/uploadImage/uploadImage.wxml -------------------------------------------------------------------------------- /minicode/uploadImage/pages/uploadImage/uploadImage.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/pages/uploadImage/uploadImage.wxss -------------------------------------------------------------------------------- /minicode/uploadImage/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/project.config.json -------------------------------------------------------------------------------- /minicode/uploadImage/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/uploadImage/sitemap.json -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/app.js -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/app.json -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/app.wxss -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.js -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "蓝牙" 3 | } 4 | -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.wxml -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/bluetooth/bluetooth.wxss -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/index/index.js -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/index/index.wxml -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/index/index.wxss -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/logs/logs.js -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "查看启动日志", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/logs/logs.wxml -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/pages/logs/logs.wxss -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/project.config.json -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/sitemap.json -------------------------------------------------------------------------------- /minicode/wxapp-bluetooth/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/minicode/wxapp-bluetooth/utils/util.js -------------------------------------------------------------------------------- /miniprogram/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/app.js -------------------------------------------------------------------------------- /miniprogram/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/app.json -------------------------------------------------------------------------------- /miniprogram/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/app.wxss -------------------------------------------------------------------------------- /miniprogram/components/cell/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cell/cell.js -------------------------------------------------------------------------------- /miniprogram/components/cell/cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cell/cell.json -------------------------------------------------------------------------------- /miniprogram/components/cell/cell.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cell/cell.wxml -------------------------------------------------------------------------------- /miniprogram/components/cell/cell.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cell/cell.wxss -------------------------------------------------------------------------------- /miniprogram/components/cells/cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cells/cells.js -------------------------------------------------------------------------------- /miniprogram/components/cells/cells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cells/cells.json -------------------------------------------------------------------------------- /miniprogram/components/cells/cells.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/cells/cells.wxml -------------------------------------------------------------------------------- /miniprogram/components/chatroom/chatroom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/chatroom.js -------------------------------------------------------------------------------- /miniprogram/components/chatroom/chatroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/chatroom.json -------------------------------------------------------------------------------- /miniprogram/components/chatroom/chatroom.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/chatroom.wxml -------------------------------------------------------------------------------- /miniprogram/components/chatroom/chatroom.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/chatroom.wxss -------------------------------------------------------------------------------- /miniprogram/components/chatroom/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/dots.gif -------------------------------------------------------------------------------- /miniprogram/components/chatroom/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/chatroom/photo.png -------------------------------------------------------------------------------- /miniprogram/components/circle/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/circle/circle.js -------------------------------------------------------------------------------- /miniprogram/components/circle/circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/circle/circle.json -------------------------------------------------------------------------------- /miniprogram/components/circle/circle.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/circle/circle.wxml -------------------------------------------------------------------------------- /miniprogram/components/circle/circle.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/components/circle/circle.wxss -------------------------------------------------------------------------------- /miniprogram/icon/gift-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/gift-01.png -------------------------------------------------------------------------------- /miniprogram/icon/gift-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/gift-02.png -------------------------------------------------------------------------------- /miniprogram/icon/gift-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/gift-03.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_home.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_home_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_home_fill.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_order.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_order_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_order_fill.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_person.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_person_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_person_fill.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_report.png -------------------------------------------------------------------------------- /miniprogram/icon/icon_report_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/icon_report_fill.png -------------------------------------------------------------------------------- /miniprogram/icon/nculogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/nculogo1.png -------------------------------------------------------------------------------- /miniprogram/icon/nculogo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/icon/nculogo3.png -------------------------------------------------------------------------------- /miniprogram/images/circle_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/circle_green.png -------------------------------------------------------------------------------- /miniprogram/images/code-cloud-callback-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-cloud-callback-config.png -------------------------------------------------------------------------------- /miniprogram/images/code-db-inc-dec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-db-inc-dec.png -------------------------------------------------------------------------------- /miniprogram/images/code-db-onAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-db-onAdd.png -------------------------------------------------------------------------------- /miniprogram/images/code-db-onQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-db-onQuery.png -------------------------------------------------------------------------------- /miniprogram/images/code-db-onRemove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-db-onRemove.png -------------------------------------------------------------------------------- /miniprogram/images/code-func-sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/code-func-sum.png -------------------------------------------------------------------------------- /miniprogram/images/console-entrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/console-entrance.png -------------------------------------------------------------------------------- /miniprogram/images/create-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/create-collection.png -------------------------------------------------------------------------------- /miniprogram/images/icon_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/icon_logout.png -------------------------------------------------------------------------------- /miniprogram/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/images/no_image.jpg -------------------------------------------------------------------------------- /miniprogram/pages/accuse/accuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accuse/accuse.js -------------------------------------------------------------------------------- /miniprogram/pages/accuse/accuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accuse/accuse.json -------------------------------------------------------------------------------- /miniprogram/pages/accuse/accuse.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accuse/accuse.wxml -------------------------------------------------------------------------------- /miniprogram/pages/accuse/accuse.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accuse/accuse.wxss -------------------------------------------------------------------------------- /miniprogram/pages/accusehistory/accusehistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accusehistory/accusehistory.js -------------------------------------------------------------------------------- /miniprogram/pages/accusehistory/accusehistory.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/accusehistory/accusehistory.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accusehistory/accusehistory.wxml -------------------------------------------------------------------------------- /miniprogram/pages/accusehistory/accusehistory.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/accusehistory/accusehistory.wxss -------------------------------------------------------------------------------- /miniprogram/pages/addFunction/addFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/addFunction/addFunction.js -------------------------------------------------------------------------------- /miniprogram/pages/addFunction/addFunction.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "云函数指引", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/addFunction/addFunction.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/addFunction/addFunction.wxml -------------------------------------------------------------------------------- /miniprogram/pages/addFunction/addFunction.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/addFunction/addFunction.wxss -------------------------------------------------------------------------------- /miniprogram/pages/chooseLib/chooseLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/chooseLib/chooseLib.js -------------------------------------------------------------------------------- /miniprogram/pages/chooseLib/chooseLib.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "选择基础库", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/chooseLib/chooseLib.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/chooseLib/chooseLib.wxml -------------------------------------------------------------------------------- /miniprogram/pages/chooseLib/chooseLib.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/chooseLib/chooseLib.wxss -------------------------------------------------------------------------------- /miniprogram/pages/deployFunctions/deployFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/deployFunctions/deployFunctions.js -------------------------------------------------------------------------------- /miniprogram/pages/deployFunctions/deployFunctions.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "部署云函数", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/deployFunctions/deployFunctions.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/deployFunctions/deployFunctions.wxml -------------------------------------------------------------------------------- /miniprogram/pages/deployFunctions/deployFunctions.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/deployFunctions/deployFunctions.wxss -------------------------------------------------------------------------------- /miniprogram/pages/im/im.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/im.js -------------------------------------------------------------------------------- /miniprogram/pages/im/im.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "数据库指引", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/im/im.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/im.wxml -------------------------------------------------------------------------------- /miniprogram/pages/im/im.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/im.wxss -------------------------------------------------------------------------------- /miniprogram/pages/im/room/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/room/index.js -------------------------------------------------------------------------------- /miniprogram/pages/im/room/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/room/room.js -------------------------------------------------------------------------------- /miniprogram/pages/im/room/room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/room/room.json -------------------------------------------------------------------------------- /miniprogram/pages/im/room/room.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/room/room.wxml -------------------------------------------------------------------------------- /miniprogram/pages/im/room/room.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/im/room/room.wxss -------------------------------------------------------------------------------- /miniprogram/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/index/index.js -------------------------------------------------------------------------------- /miniprogram/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/index/index.wxml -------------------------------------------------------------------------------- /miniprogram/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/index/index.wxss -------------------------------------------------------------------------------- /miniprogram/pages/index/user-unlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/index/user-unlogin.png -------------------------------------------------------------------------------- /miniprogram/pages/linkbt/linkbt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/linkbt/linkbt.js -------------------------------------------------------------------------------- /miniprogram/pages/linkbt/linkbt.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/linkbt/linkbt.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/linkbt/linkbt.wxml -------------------------------------------------------------------------------- /miniprogram/pages/linkbt/linkbt.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/linkbt/linkbt.wxss -------------------------------------------------------------------------------- /miniprogram/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/logs/logs.js -------------------------------------------------------------------------------- /miniprogram/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/logs/logs.wxml -------------------------------------------------------------------------------- /miniprogram/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/logs/logs.wxss -------------------------------------------------------------------------------- /miniprogram/pages/openapi/callback/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/callback/callback.js -------------------------------------------------------------------------------- /miniprogram/pages/openapi/callback/callback.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/openapi/callback/callback.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/callback/callback.wxml -------------------------------------------------------------------------------- /miniprogram/pages/openapi/callback/callback.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/callback/callback.wxss -------------------------------------------------------------------------------- /miniprogram/pages/openapi/cloudid/cloudid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/cloudid/cloudid.js -------------------------------------------------------------------------------- /miniprogram/pages/openapi/cloudid/cloudid.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/openapi/cloudid/cloudid.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/cloudid/cloudid.wxml -------------------------------------------------------------------------------- /miniprogram/pages/openapi/cloudid/cloudid.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/cloudid/cloudid.wxss -------------------------------------------------------------------------------- /miniprogram/pages/openapi/openapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/openapi.js -------------------------------------------------------------------------------- /miniprogram/pages/openapi/openapi.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/openapi/openapi.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/openapi.wxml -------------------------------------------------------------------------------- /miniprogram/pages/openapi/openapi.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/openapi.wxss -------------------------------------------------------------------------------- /miniprogram/pages/openapi/serverapi/serverapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/serverapi/serverapi.js -------------------------------------------------------------------------------- /miniprogram/pages/openapi/serverapi/serverapi.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/openapi/serverapi/serverapi.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/serverapi/serverapi.wxml -------------------------------------------------------------------------------- /miniprogram/pages/openapi/serverapi/serverapi.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/openapi/serverapi/serverapi.wxss -------------------------------------------------------------------------------- /miniprogram/pages/order/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/order/order.js -------------------------------------------------------------------------------- /miniprogram/pages/order/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/order/order.json -------------------------------------------------------------------------------- /miniprogram/pages/order/order.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/order/order.wxml -------------------------------------------------------------------------------- /miniprogram/pages/order/order.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/order/order.wxss -------------------------------------------------------------------------------- /miniprogram/pages/orderview/orderview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/orderview/orderview.js -------------------------------------------------------------------------------- /miniprogram/pages/orderview/orderview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/orderview/orderview.json -------------------------------------------------------------------------------- /miniprogram/pages/orderview/orderview.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/orderview/orderview.wxml -------------------------------------------------------------------------------- /miniprogram/pages/orderview/orderview.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/orderview/orderview.wxss -------------------------------------------------------------------------------- /miniprogram/pages/person/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/person/person.js -------------------------------------------------------------------------------- /miniprogram/pages/person/person.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人信息", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/person/person.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/person/person.wxml -------------------------------------------------------------------------------- /miniprogram/pages/person/person.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/person/person.wxss -------------------------------------------------------------------------------- /miniprogram/pages/scorehistory/scorehistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/scorehistory/scorehistory.js -------------------------------------------------------------------------------- /miniprogram/pages/scorehistory/scorehistory.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/pages/scorehistory/scorehistory.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/scorehistory/scorehistory.wxml -------------------------------------------------------------------------------- /miniprogram/pages/scorehistory/scorehistory.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/scorehistory/scorehistory.wxss -------------------------------------------------------------------------------- /miniprogram/pages/seat/seat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/seat/seat.js -------------------------------------------------------------------------------- /miniprogram/pages/seat/seat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/seat/seat.json -------------------------------------------------------------------------------- /miniprogram/pages/seat/seat.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/seat/seat.wxml -------------------------------------------------------------------------------- /miniprogram/pages/seat/seat.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/seat/seat.wxss -------------------------------------------------------------------------------- /miniprogram/pages/storageConsole/storageConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/storageConsole/storageConsole.js -------------------------------------------------------------------------------- /miniprogram/pages/storageConsole/storageConsole.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "文件存储指引", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/storageConsole/storageConsole.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/storageConsole/storageConsole.wxml -------------------------------------------------------------------------------- /miniprogram/pages/storageConsole/storageConsole.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/storageConsole/storageConsole.wxss -------------------------------------------------------------------------------- /miniprogram/pages/updateinfor/updateInfor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/updateinfor/updateInfor.js -------------------------------------------------------------------------------- /miniprogram/pages/userConsole/userConsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/userConsole/userConsole.js -------------------------------------------------------------------------------- /miniprogram/pages/userConsole/userConsole.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "用户管理指引", 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/userConsole/userConsole.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/userConsole/userConsole.wxml -------------------------------------------------------------------------------- /miniprogram/pages/userConsole/userConsole.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/pages/userConsole/userConsole.wxss -------------------------------------------------------------------------------- /miniprogram/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/sitemap.json -------------------------------------------------------------------------------- /miniprogram/style/guide.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/style/guide.wxss -------------------------------------------------------------------------------- /miniprogram/style/weui.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/style/weui.wxss -------------------------------------------------------------------------------- /miniprogram/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/miniprogram/util/util.js -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzz91225/wxapp-library_selfstudy/HEAD/project.config.json --------------------------------------------------------------------------------