├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .wepycache ├── .wepyignore ├── README.md ├── package.json ├── src ├── app.wpy ├── common │ ├── libs │ │ └── css │ │ │ └── zanui.wxss │ └── resources │ │ ├── VIP1.png │ │ ├── add.png │ │ ├── arrow.png │ │ ├── camera.png │ │ ├── chapterExerciseCorrect.jpg │ │ ├── entry1.jpg │ │ ├── huangguan.png │ │ ├── icon_authority.png │ │ ├── icon_check.png │ │ ├── icon_class.png │ │ ├── icon_contact_gzh.png │ │ ├── icon_contact_tel.png │ │ ├── icon_contact_wechat.png │ │ ├── icon_new.png │ │ ├── icon_right.png │ │ ├── icon_tel.png │ │ ├── icon_tuikuan.png │ │ ├── icon_uncheck.png │ │ ├── icon_version.png │ │ ├── icon_vip.png │ │ ├── icon_weapp.png │ │ ├── plus.png │ │ ├── resource.png │ │ ├── resource_chenping.png │ │ ├── resource_fenceng.png │ │ ├── resource_jilu.png │ │ ├── resource_select.png │ │ ├── resource_zhuanti.png │ │ ├── statistics.png │ │ ├── statisticsCorrect.jpg │ │ ├── statistics_select.png │ │ ├── upload.png │ │ ├── user.png │ │ ├── user_select.png │ │ ├── workbook.png │ │ ├── workbookBorder.png │ │ ├── workbook_add.png │ │ ├── workbook_cancel.png │ │ └── workbook_select.png ├── components │ ├── gnb-chapterSelect.wpy │ ├── gnb-subjectSelect.wpy │ ├── gnb-textbookSelect.wpy │ ├── gnb-versionSelect.wpy │ ├── zan-field.wpy │ ├── zan-loadmore.wpy │ └── zan-noticebar.wpy └── pages │ ├── camera │ └── index.wpy │ ├── init │ └── entry.wpy │ ├── my │ ├── classes.wpy │ ├── contact.wpy │ ├── email.wpy │ ├── index.wpy │ ├── info.wpy │ ├── pay.wpy │ └── vip.wpy │ ├── resource │ ├── chengPin.wpy │ ├── chengPinFilter.wpy │ ├── fenCeng.wpy │ ├── filter.wpy │ ├── index.wpy │ └── zhuanTi.wpy │ ├── statistics │ ├── correct.wpy │ ├── error.wpy │ ├── index.wpy │ ├── select.wpy │ └── share.wpy │ └── workbook │ ├── add.wpy │ ├── chapter.wpy │ ├── correct.wpy │ ├── error.wpy │ ├── exercise.wpy │ ├── index.wpy │ ├── join.wpy │ ├── share.wpy │ └── want.wpy ├── wepy.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/.gitignore -------------------------------------------------------------------------------- /.wepycache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/.wepycache -------------------------------------------------------------------------------- /.wepyignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DB_store 4 | *.wpy___jb_tmp___ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/package.json -------------------------------------------------------------------------------- /src/app.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/app.wpy -------------------------------------------------------------------------------- /src/common/libs/css/zanui.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/libs/css/zanui.wxss -------------------------------------------------------------------------------- /src/common/resources/VIP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/VIP1.png -------------------------------------------------------------------------------- /src/common/resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/add.png -------------------------------------------------------------------------------- /src/common/resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/arrow.png -------------------------------------------------------------------------------- /src/common/resources/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/camera.png -------------------------------------------------------------------------------- /src/common/resources/chapterExerciseCorrect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/chapterExerciseCorrect.jpg -------------------------------------------------------------------------------- /src/common/resources/entry1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/entry1.jpg -------------------------------------------------------------------------------- /src/common/resources/huangguan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/huangguan.png -------------------------------------------------------------------------------- /src/common/resources/icon_authority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_authority.png -------------------------------------------------------------------------------- /src/common/resources/icon_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_check.png -------------------------------------------------------------------------------- /src/common/resources/icon_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_class.png -------------------------------------------------------------------------------- /src/common/resources/icon_contact_gzh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_contact_gzh.png -------------------------------------------------------------------------------- /src/common/resources/icon_contact_tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_contact_tel.png -------------------------------------------------------------------------------- /src/common/resources/icon_contact_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_contact_wechat.png -------------------------------------------------------------------------------- /src/common/resources/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_new.png -------------------------------------------------------------------------------- /src/common/resources/icon_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_right.png -------------------------------------------------------------------------------- /src/common/resources/icon_tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_tel.png -------------------------------------------------------------------------------- /src/common/resources/icon_tuikuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_tuikuan.png -------------------------------------------------------------------------------- /src/common/resources/icon_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_uncheck.png -------------------------------------------------------------------------------- /src/common/resources/icon_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_version.png -------------------------------------------------------------------------------- /src/common/resources/icon_vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_vip.png -------------------------------------------------------------------------------- /src/common/resources/icon_weapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/icon_weapp.png -------------------------------------------------------------------------------- /src/common/resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/plus.png -------------------------------------------------------------------------------- /src/common/resources/resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource.png -------------------------------------------------------------------------------- /src/common/resources/resource_chenping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource_chenping.png -------------------------------------------------------------------------------- /src/common/resources/resource_fenceng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource_fenceng.png -------------------------------------------------------------------------------- /src/common/resources/resource_jilu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource_jilu.png -------------------------------------------------------------------------------- /src/common/resources/resource_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource_select.png -------------------------------------------------------------------------------- /src/common/resources/resource_zhuanti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/resource_zhuanti.png -------------------------------------------------------------------------------- /src/common/resources/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/statistics.png -------------------------------------------------------------------------------- /src/common/resources/statisticsCorrect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/statisticsCorrect.jpg -------------------------------------------------------------------------------- /src/common/resources/statistics_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/statistics_select.png -------------------------------------------------------------------------------- /src/common/resources/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/upload.png -------------------------------------------------------------------------------- /src/common/resources/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/user.png -------------------------------------------------------------------------------- /src/common/resources/user_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/user_select.png -------------------------------------------------------------------------------- /src/common/resources/workbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/workbook.png -------------------------------------------------------------------------------- /src/common/resources/workbookBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/workbookBorder.png -------------------------------------------------------------------------------- /src/common/resources/workbook_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/workbook_add.png -------------------------------------------------------------------------------- /src/common/resources/workbook_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/workbook_cancel.png -------------------------------------------------------------------------------- /src/common/resources/workbook_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/common/resources/workbook_select.png -------------------------------------------------------------------------------- /src/components/gnb-chapterSelect.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/gnb-chapterSelect.wpy -------------------------------------------------------------------------------- /src/components/gnb-subjectSelect.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/gnb-subjectSelect.wpy -------------------------------------------------------------------------------- /src/components/gnb-textbookSelect.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/gnb-textbookSelect.wpy -------------------------------------------------------------------------------- /src/components/gnb-versionSelect.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/gnb-versionSelect.wpy -------------------------------------------------------------------------------- /src/components/zan-field.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/zan-field.wpy -------------------------------------------------------------------------------- /src/components/zan-loadmore.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/zan-loadmore.wpy -------------------------------------------------------------------------------- /src/components/zan-noticebar.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/components/zan-noticebar.wpy -------------------------------------------------------------------------------- /src/pages/camera/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/camera/index.wpy -------------------------------------------------------------------------------- /src/pages/init/entry.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/init/entry.wpy -------------------------------------------------------------------------------- /src/pages/my/classes.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/classes.wpy -------------------------------------------------------------------------------- /src/pages/my/contact.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/contact.wpy -------------------------------------------------------------------------------- /src/pages/my/email.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/email.wpy -------------------------------------------------------------------------------- /src/pages/my/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/index.wpy -------------------------------------------------------------------------------- /src/pages/my/info.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/info.wpy -------------------------------------------------------------------------------- /src/pages/my/pay.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/pay.wpy -------------------------------------------------------------------------------- /src/pages/my/vip.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/my/vip.wpy -------------------------------------------------------------------------------- /src/pages/resource/chengPin.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/chengPin.wpy -------------------------------------------------------------------------------- /src/pages/resource/chengPinFilter.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/chengPinFilter.wpy -------------------------------------------------------------------------------- /src/pages/resource/fenCeng.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/fenCeng.wpy -------------------------------------------------------------------------------- /src/pages/resource/filter.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/filter.wpy -------------------------------------------------------------------------------- /src/pages/resource/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/index.wpy -------------------------------------------------------------------------------- /src/pages/resource/zhuanTi.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/resource/zhuanTi.wpy -------------------------------------------------------------------------------- /src/pages/statistics/correct.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/statistics/correct.wpy -------------------------------------------------------------------------------- /src/pages/statistics/error.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/statistics/error.wpy -------------------------------------------------------------------------------- /src/pages/statistics/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/statistics/index.wpy -------------------------------------------------------------------------------- /src/pages/statistics/select.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/statistics/select.wpy -------------------------------------------------------------------------------- /src/pages/statistics/share.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/statistics/share.wpy -------------------------------------------------------------------------------- /src/pages/workbook/add.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/add.wpy -------------------------------------------------------------------------------- /src/pages/workbook/chapter.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/chapter.wpy -------------------------------------------------------------------------------- /src/pages/workbook/correct.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/correct.wpy -------------------------------------------------------------------------------- /src/pages/workbook/error.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/error.wpy -------------------------------------------------------------------------------- /src/pages/workbook/exercise.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/exercise.wpy -------------------------------------------------------------------------------- /src/pages/workbook/index.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/index.wpy -------------------------------------------------------------------------------- /src/pages/workbook/join.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/join.wpy -------------------------------------------------------------------------------- /src/pages/workbook/share.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/share.wpy -------------------------------------------------------------------------------- /src/pages/workbook/want.wpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/src/pages/workbook/want.wpy -------------------------------------------------------------------------------- /wepy.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/wepy.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyncc/WEAPP_GNB_PRIMARY/HEAD/yarn.lock --------------------------------------------------------------------------------