├── .gitignore ├── README.md ├── client ├── LICENSE ├── README.md ├── app.js ├── app.json ├── config.js ├── package.json ├── pages │ ├── VS │ │ ├── VS.js │ │ ├── VS.json │ │ ├── VS.wxml │ │ └── VS.wxss │ ├── chat │ │ ├── chat.js │ │ ├── chat.json │ │ ├── chat.wxml │ │ └── chat.wxss │ ├── choose │ │ ├── choose.js │ │ ├── choose.json │ │ ├── choose.wxml │ │ └── choose.wxss │ ├── images │ │ ├── cry.png │ │ ├── fight.png │ │ ├── home.png │ │ ├── note.png │ │ ├── rank.png │ │ └── smile.png │ ├── index │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── match_result │ │ ├── match_result.js │ │ ├── match_result.json │ │ ├── match_result.wxml │ │ └── match_result.wxss │ ├── matching │ │ ├── matching.js │ │ ├── matching.json │ │ ├── matching.wxml │ │ └── matching.wxss │ ├── note │ │ ├── note.js │ │ ├── note.json │ │ ├── note.wxml │ │ └── note.wxss │ ├── question_detail │ │ ├── question_detail.js │ │ ├── question_detail.json │ │ ├── question_detail.wxml │ │ └── question_detail.wxss │ ├── rank │ │ ├── rank.js │ │ ├── rank.json │ │ ├── rank.wxml │ │ └── rank.wxss │ ├── result │ │ ├── result.js │ │ ├── result.json │ │ ├── result.wxml │ │ └── result.wxss │ ├── subjects │ │ ├── subjects.js │ │ ├── subjects.json │ │ ├── subjects.wxml │ │ └── subjects.wxss │ └── test │ │ ├── test.js │ │ ├── test.json │ │ ├── test.wxml │ │ └── test.wxss └── vendor │ └── wafer2-client-sdk │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ ├── constants.js │ ├── login.js │ ├── request.js │ ├── session.js │ ├── tunnel.js │ ├── utils.js │ └── wxTunnel.js │ └── package.json ├── project.config.json └── server ├── .eslintrc.json ├── README.md ├── app.js ├── config.js ├── config.local.js.example ├── controllers ├── demo.js ├── index.js ├── login.js ├── message.js ├── query.js ├── questions.js ├── tunnel.js ├── update.js ├── upload.js └── user.js ├── middlewares ├── bodyparser.js └── response.js ├── nodemon.json ├── package.json ├── process.prod.json ├── qcloud.js ├── routes └── index.js ├── tools.md ├── tools ├── cAuth.sql └── initdb.js └── utils └── questionsId.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/README.md -------------------------------------------------------------------------------- /client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/LICENSE -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/README.md -------------------------------------------------------------------------------- /client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/app.js -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/app.json -------------------------------------------------------------------------------- /client/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/config.js -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/package.json -------------------------------------------------------------------------------- /client/pages/VS/VS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/VS/VS.js -------------------------------------------------------------------------------- /client/pages/VS/VS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/VS/VS.json -------------------------------------------------------------------------------- /client/pages/VS/VS.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/VS/VS.wxml -------------------------------------------------------------------------------- /client/pages/VS/VS.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/VS/VS.wxss -------------------------------------------------------------------------------- /client/pages/chat/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/chat/chat.js -------------------------------------------------------------------------------- /client/pages/chat/chat.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/chat/chat.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/chat/chat.wxml -------------------------------------------------------------------------------- /client/pages/chat/chat.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/chat/chat.wxss -------------------------------------------------------------------------------- /client/pages/choose/choose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/choose/choose.js -------------------------------------------------------------------------------- /client/pages/choose/choose.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/choose/choose.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/choose/choose.wxml -------------------------------------------------------------------------------- /client/pages/choose/choose.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/choose/choose.wxss -------------------------------------------------------------------------------- /client/pages/images/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/cry.png -------------------------------------------------------------------------------- /client/pages/images/fight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/fight.png -------------------------------------------------------------------------------- /client/pages/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/home.png -------------------------------------------------------------------------------- /client/pages/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/note.png -------------------------------------------------------------------------------- /client/pages/images/rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/rank.png -------------------------------------------------------------------------------- /client/pages/images/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/images/smile.png -------------------------------------------------------------------------------- /client/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/index/index.js -------------------------------------------------------------------------------- /client/pages/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/index/index.json -------------------------------------------------------------------------------- /client/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/index/index.wxml -------------------------------------------------------------------------------- /client/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/index/index.wxss -------------------------------------------------------------------------------- /client/pages/match_result/match_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/match_result/match_result.js -------------------------------------------------------------------------------- /client/pages/match_result/match_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/match_result/match_result.json -------------------------------------------------------------------------------- /client/pages/match_result/match_result.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/match_result/match_result.wxml -------------------------------------------------------------------------------- /client/pages/match_result/match_result.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/match_result/match_result.wxss -------------------------------------------------------------------------------- /client/pages/matching/matching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/matching/matching.js -------------------------------------------------------------------------------- /client/pages/matching/matching.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/matching/matching.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/matching/matching.wxml -------------------------------------------------------------------------------- /client/pages/matching/matching.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/matching/matching.wxss -------------------------------------------------------------------------------- /client/pages/note/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/note/note.js -------------------------------------------------------------------------------- /client/pages/note/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/note/note.json -------------------------------------------------------------------------------- /client/pages/note/note.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/note/note.wxml -------------------------------------------------------------------------------- /client/pages/note/note.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/note/note.wxss -------------------------------------------------------------------------------- /client/pages/question_detail/question_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/question_detail/question_detail.js -------------------------------------------------------------------------------- /client/pages/question_detail/question_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/question_detail/question_detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/question_detail/question_detail.wxml -------------------------------------------------------------------------------- /client/pages/question_detail/question_detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/question_detail/question_detail.wxss -------------------------------------------------------------------------------- /client/pages/rank/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/rank/rank.js -------------------------------------------------------------------------------- /client/pages/rank/rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/rank/rank.json -------------------------------------------------------------------------------- /client/pages/rank/rank.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/rank/rank.wxml -------------------------------------------------------------------------------- /client/pages/rank/rank.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/rank/rank.wxss -------------------------------------------------------------------------------- /client/pages/result/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/result/result.js -------------------------------------------------------------------------------- /client/pages/result/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/result/result.json -------------------------------------------------------------------------------- /client/pages/result/result.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/result/result.wxml -------------------------------------------------------------------------------- /client/pages/result/result.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/result/result.wxss -------------------------------------------------------------------------------- /client/pages/subjects/subjects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/subjects/subjects.js -------------------------------------------------------------------------------- /client/pages/subjects/subjects.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /client/pages/subjects/subjects.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/subjects/subjects.wxml -------------------------------------------------------------------------------- /client/pages/subjects/subjects.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/subjects/subjects.wxss -------------------------------------------------------------------------------- /client/pages/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/test/test.js -------------------------------------------------------------------------------- /client/pages/test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/test/test.json -------------------------------------------------------------------------------- /client/pages/test/test.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/test/test.wxml -------------------------------------------------------------------------------- /client/pages/test/test.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/pages/test/test.wxss -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/LICENSE -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/README.md -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/index.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/constants.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/login.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/request.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/session.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/tunnel.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/utils.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/lib/wxTunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/lib/wxTunnel.js -------------------------------------------------------------------------------- /client/vendor/wafer2-client-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/client/vendor/wafer2-client-sdk/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/project.config.json -------------------------------------------------------------------------------- /server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/.eslintrc.json -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/README.md -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/config.js -------------------------------------------------------------------------------- /server/config.local.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/config.local.js.example -------------------------------------------------------------------------------- /server/controllers/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/demo.js -------------------------------------------------------------------------------- /server/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/index.js -------------------------------------------------------------------------------- /server/controllers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/login.js -------------------------------------------------------------------------------- /server/controllers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/message.js -------------------------------------------------------------------------------- /server/controllers/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/query.js -------------------------------------------------------------------------------- /server/controllers/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/questions.js -------------------------------------------------------------------------------- /server/controllers/tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/tunnel.js -------------------------------------------------------------------------------- /server/controllers/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/update.js -------------------------------------------------------------------------------- /server/controllers/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/upload.js -------------------------------------------------------------------------------- /server/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/controllers/user.js -------------------------------------------------------------------------------- /server/middlewares/bodyparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/middlewares/bodyparser.js -------------------------------------------------------------------------------- /server/middlewares/response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/middlewares/response.js -------------------------------------------------------------------------------- /server/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/nodemon.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/package.json -------------------------------------------------------------------------------- /server/process.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/process.prod.json -------------------------------------------------------------------------------- /server/qcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/qcloud.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/tools.md -------------------------------------------------------------------------------- /server/tools/cAuth.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/tools/cAuth.sql -------------------------------------------------------------------------------- /server/tools/initdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/tools/initdb.js -------------------------------------------------------------------------------- /server/utils/questionsId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tdye24/KC-wechat-miniprogram/HEAD/server/utils/questionsId.js --------------------------------------------------------------------------------