├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── jsLinters │ └── eslint.xml ├── misc.xml ├── modules.xml ├── myproj.iml ├── vagrant.xml └── vcs.xml ├── .prettierrc ├── .wepycache ├── .wepyignore ├── README.md ├── package.json ├── project.config.json ├── src ├── app.wpy ├── common │ └── eventHub.js ├── components │ ├── cardSwiper │ │ ├── cardSwiper.js │ │ ├── cardSwiper.json │ │ ├── cardSwiper.wxml │ │ ├── cardSwiper.wxss │ │ └── utils │ │ │ └── touchEvent.js │ ├── editInforCom.wpy │ ├── navigation.wpy │ ├── noticeCom.wpy │ ├── skeleton │ │ ├── skeleton-btn.js │ │ ├── skeleton-btn.json │ │ ├── skeleton-btn.wxml │ │ ├── skeleton-btn.wxss │ │ ├── skeleton.js │ │ ├── skeleton.json │ │ ├── skeleton.wxml │ │ └── skeleton.wxss │ ├── uploadFile.wpy │ ├── uploadFileV2.wpy │ ├── weplug-add-tips │ │ ├── README.md │ │ ├── assets │ │ │ ├── fav-1.jpg │ │ │ ├── fav-2.jpg │ │ │ └── fav-3.jpg │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ └── wxShareCom.wpy ├── config.js ├── images │ ├── icon │ │ ├── avatarIcon.png │ │ ├── back_icon.png │ │ ├── back_icon_w.png │ │ ├── call_icon.png │ │ ├── camera_icon.png │ │ ├── close_icon.png │ │ ├── close_icon_v2.png │ │ ├── close_icon_v3.png │ │ ├── del_icon.png │ │ ├── del_icon_red.png │ │ ├── dlybyq_icon.png │ │ ├── edit_icon.png │ │ ├── fenxiang_icon.png │ │ ├── ghtp_icon.png │ │ ├── goTop_icon.png │ │ ├── institution_icon.png │ │ ├── map_icon.png │ │ ├── nav_icon.png │ │ ├── next_icon.png │ │ ├── next_iconV2.png │ │ ├── notice_icon.png │ │ ├── open_icon.png │ │ ├── person_icon.png │ │ ├── pyq_icon.png │ │ ├── retract_icon.png │ │ ├── right_icon.png │ │ ├── search_icon.png │ │ ├── selected_icon.png │ │ ├── selected_icon_n.png │ │ ├── shanchu_icon.png │ │ ├── share_icon.png │ │ ├── wallet_icon.png │ │ └── wx_icon.png │ └── tabbar │ │ ├── home.png │ │ ├── home_a.png │ │ ├── library.png │ │ ├── library_a.png │ │ ├── user.png │ │ └── user_a.png ├── mixins │ ├── aliyun-upload-sdk-1.0.1.min.js │ ├── base.js │ ├── https.js │ └── test.js ├── pages │ ├── index.wpy │ ├── register.wpy │ ├── sub_page │ │ ├── BookComment.wpy │ │ ├── BorrowBook.wpy │ │ ├── BorrowManage.wpy │ │ ├── Management.wpy │ │ ├── bookClassList.wpy │ │ ├── bookDetail.wpy │ │ ├── bookLibrary.wpy │ │ ├── classBooks.wpy │ │ ├── createBookComment.wpy │ │ ├── createLibrary.wpy │ │ ├── editBook.wpy │ │ ├── enteringBooks.wpy │ │ ├── libraryDetail.wpy │ │ ├── searchBooks.wpy │ │ └── searchLibrary.wpy │ ├── tabBar │ │ ├── chat.wpy │ │ ├── home.wpy │ │ ├── library.wpy │ │ ├── user.wpy │ │ └── welcome.wpy │ └── user_page │ │ ├── myBorrow.wpy │ │ ├── myDeposit.wpy │ │ ├── myLibrary.wpy │ │ ├── myWallet.wpy │ │ └── userInfor.wpy ├── store │ └── index.js ├── styles │ ├── animation.wxss │ ├── flex.wxss │ ├── icon.wxss │ ├── index.less │ ├── main.wxss │ ├── reset.less │ └── theme.less └── utils │ ├── dateTimePicker.js │ └── util.js ├── static └── .gitignore └── wepy.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | weapp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | # 基于编辑器的 HTTP 客户端请求 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/jsLinters/eslint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/jsLinters/eslint.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/myproj.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/myproj.iml -------------------------------------------------------------------------------- /.idea/vagrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/vagrant.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.wepycache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/.wepycache -------------------------------------------------------------------------------- /.wepyignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store 4 | *.wpy___jb_tmp___ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/project.config.json -------------------------------------------------------------------------------- /src/app.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/app.wpy -------------------------------------------------------------------------------- /src/common/eventHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/common/eventHub.js -------------------------------------------------------------------------------- /src/components/cardSwiper/cardSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/cardSwiper/cardSwiper.js -------------------------------------------------------------------------------- /src/components/cardSwiper/cardSwiper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/cardSwiper/cardSwiper.json -------------------------------------------------------------------------------- /src/components/cardSwiper/cardSwiper.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/cardSwiper/cardSwiper.wxml -------------------------------------------------------------------------------- /src/components/cardSwiper/cardSwiper.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/cardSwiper/cardSwiper.wxss -------------------------------------------------------------------------------- /src/components/cardSwiper/utils/touchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/cardSwiper/utils/touchEvent.js -------------------------------------------------------------------------------- /src/components/editInforCom.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/editInforCom.wpy -------------------------------------------------------------------------------- /src/components/navigation.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/navigation.wpy -------------------------------------------------------------------------------- /src/components/noticeCom.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/noticeCom.wpy -------------------------------------------------------------------------------- /src/components/skeleton/skeleton-btn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton-btn.js -------------------------------------------------------------------------------- /src/components/skeleton/skeleton-btn.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /src/components/skeleton/skeleton-btn.wxml: -------------------------------------------------------------------------------- 1 | 2 | {{ isShow ? '关闭' : '骨架屏' }} 3 | 4 | -------------------------------------------------------------------------------- /src/components/skeleton/skeleton-btn.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton-btn.wxss -------------------------------------------------------------------------------- /src/components/skeleton/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton.js -------------------------------------------------------------------------------- /src/components/skeleton/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton.json -------------------------------------------------------------------------------- /src/components/skeleton/skeleton.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton.wxml -------------------------------------------------------------------------------- /src/components/skeleton/skeleton.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/skeleton/skeleton.wxss -------------------------------------------------------------------------------- /src/components/uploadFile.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/uploadFile.wpy -------------------------------------------------------------------------------- /src/components/uploadFileV2.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/uploadFileV2.wpy -------------------------------------------------------------------------------- /src/components/weplug-add-tips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/README.md -------------------------------------------------------------------------------- /src/components/weplug-add-tips/assets/fav-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/assets/fav-1.jpg -------------------------------------------------------------------------------- /src/components/weplug-add-tips/assets/fav-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/assets/fav-2.jpg -------------------------------------------------------------------------------- /src/components/weplug-add-tips/assets/fav-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/assets/fav-3.jpg -------------------------------------------------------------------------------- /src/components/weplug-add-tips/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/index.js -------------------------------------------------------------------------------- /src/components/weplug-add-tips/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/index.json -------------------------------------------------------------------------------- /src/components/weplug-add-tips/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/index.wxml -------------------------------------------------------------------------------- /src/components/weplug-add-tips/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/weplug-add-tips/index.wxss -------------------------------------------------------------------------------- /src/components/wxShareCom.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/components/wxShareCom.wpy -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/config.js -------------------------------------------------------------------------------- /src/images/icon/avatarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/avatarIcon.png -------------------------------------------------------------------------------- /src/images/icon/back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/back_icon.png -------------------------------------------------------------------------------- /src/images/icon/back_icon_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/back_icon_w.png -------------------------------------------------------------------------------- /src/images/icon/call_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/call_icon.png -------------------------------------------------------------------------------- /src/images/icon/camera_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/camera_icon.png -------------------------------------------------------------------------------- /src/images/icon/close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/close_icon.png -------------------------------------------------------------------------------- /src/images/icon/close_icon_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/close_icon_v2.png -------------------------------------------------------------------------------- /src/images/icon/close_icon_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/close_icon_v3.png -------------------------------------------------------------------------------- /src/images/icon/del_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/del_icon.png -------------------------------------------------------------------------------- /src/images/icon/del_icon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/del_icon_red.png -------------------------------------------------------------------------------- /src/images/icon/dlybyq_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/dlybyq_icon.png -------------------------------------------------------------------------------- /src/images/icon/edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/edit_icon.png -------------------------------------------------------------------------------- /src/images/icon/fenxiang_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/fenxiang_icon.png -------------------------------------------------------------------------------- /src/images/icon/ghtp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/ghtp_icon.png -------------------------------------------------------------------------------- /src/images/icon/goTop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/goTop_icon.png -------------------------------------------------------------------------------- /src/images/icon/institution_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/institution_icon.png -------------------------------------------------------------------------------- /src/images/icon/map_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/map_icon.png -------------------------------------------------------------------------------- /src/images/icon/nav_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/nav_icon.png -------------------------------------------------------------------------------- /src/images/icon/next_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/next_icon.png -------------------------------------------------------------------------------- /src/images/icon/next_iconV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/next_iconV2.png -------------------------------------------------------------------------------- /src/images/icon/notice_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/notice_icon.png -------------------------------------------------------------------------------- /src/images/icon/open_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/open_icon.png -------------------------------------------------------------------------------- /src/images/icon/person_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/person_icon.png -------------------------------------------------------------------------------- /src/images/icon/pyq_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/pyq_icon.png -------------------------------------------------------------------------------- /src/images/icon/retract_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/retract_icon.png -------------------------------------------------------------------------------- /src/images/icon/right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/right_icon.png -------------------------------------------------------------------------------- /src/images/icon/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/search_icon.png -------------------------------------------------------------------------------- /src/images/icon/selected_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/selected_icon.png -------------------------------------------------------------------------------- /src/images/icon/selected_icon_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/selected_icon_n.png -------------------------------------------------------------------------------- /src/images/icon/shanchu_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/shanchu_icon.png -------------------------------------------------------------------------------- /src/images/icon/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/share_icon.png -------------------------------------------------------------------------------- /src/images/icon/wallet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/wallet_icon.png -------------------------------------------------------------------------------- /src/images/icon/wx_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/icon/wx_icon.png -------------------------------------------------------------------------------- /src/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/home.png -------------------------------------------------------------------------------- /src/images/tabbar/home_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/home_a.png -------------------------------------------------------------------------------- /src/images/tabbar/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/library.png -------------------------------------------------------------------------------- /src/images/tabbar/library_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/library_a.png -------------------------------------------------------------------------------- /src/images/tabbar/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/user.png -------------------------------------------------------------------------------- /src/images/tabbar/user_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/images/tabbar/user_a.png -------------------------------------------------------------------------------- /src/mixins/aliyun-upload-sdk-1.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/mixins/aliyun-upload-sdk-1.0.1.min.js -------------------------------------------------------------------------------- /src/mixins/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/mixins/base.js -------------------------------------------------------------------------------- /src/mixins/https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/mixins/https.js -------------------------------------------------------------------------------- /src/mixins/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/mixins/test.js -------------------------------------------------------------------------------- /src/pages/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/index.wpy -------------------------------------------------------------------------------- /src/pages/register.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/register.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/BookComment.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/BookComment.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/BorrowBook.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/BorrowBook.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/BorrowManage.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/BorrowManage.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/Management.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/Management.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/bookClassList.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/bookClassList.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/bookDetail.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/bookDetail.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/bookLibrary.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/bookLibrary.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/classBooks.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/classBooks.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/createBookComment.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/createBookComment.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/createLibrary.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/createLibrary.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/editBook.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/editBook.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/enteringBooks.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/enteringBooks.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/libraryDetail.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/libraryDetail.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/searchBooks.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/searchBooks.wpy -------------------------------------------------------------------------------- /src/pages/sub_page/searchLibrary.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/sub_page/searchLibrary.wpy -------------------------------------------------------------------------------- /src/pages/tabBar/chat.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/tabBar/chat.wpy -------------------------------------------------------------------------------- /src/pages/tabBar/home.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/tabBar/home.wpy -------------------------------------------------------------------------------- /src/pages/tabBar/library.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/tabBar/library.wpy -------------------------------------------------------------------------------- /src/pages/tabBar/user.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/tabBar/user.wpy -------------------------------------------------------------------------------- /src/pages/tabBar/welcome.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/tabBar/welcome.wpy -------------------------------------------------------------------------------- /src/pages/user_page/myBorrow.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/user_page/myBorrow.wpy -------------------------------------------------------------------------------- /src/pages/user_page/myDeposit.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/user_page/myDeposit.wpy -------------------------------------------------------------------------------- /src/pages/user_page/myLibrary.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/user_page/myLibrary.wpy -------------------------------------------------------------------------------- /src/pages/user_page/myWallet.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/user_page/myWallet.wpy -------------------------------------------------------------------------------- /src/pages/user_page/userInfor.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/pages/user_page/userInfor.wpy -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/styles/animation.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/animation.wxss -------------------------------------------------------------------------------- /src/styles/flex.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/flex.wxss -------------------------------------------------------------------------------- /src/styles/icon.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/icon.wxss -------------------------------------------------------------------------------- /src/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/index.less -------------------------------------------------------------------------------- /src/styles/main.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/main.wxss -------------------------------------------------------------------------------- /src/styles/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/reset.less -------------------------------------------------------------------------------- /src/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/styles/theme.less -------------------------------------------------------------------------------- /src/utils/dateTimePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/utils/dateTimePicker.js -------------------------------------------------------------------------------- /src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/src/utils/util.js -------------------------------------------------------------------------------- /static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wepy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glore/library/HEAD/wepy.config.js --------------------------------------------------------------------------------