├── README.md ├── component └── WxComment │ ├── WxComment.js │ ├── WxComment.json │ ├── WxComment.wxml │ ├── WxComment.wxss │ └── images │ ├── coffee.png │ ├── comment.png │ ├── views.png │ ├── zan.png │ └── zan_self.png ├── libs ├── leancloud │ ├── .gitignore │ └── av-weapp-min.js └── scripts │ └── common.js └── screenshot ├── admin.png ├── screenshot.png └── xiaobaiai.jpg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/README.md -------------------------------------------------------------------------------- /component/WxComment/WxComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/WxComment.js -------------------------------------------------------------------------------- /component/WxComment/WxComment.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /component/WxComment/WxComment.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/WxComment.wxml -------------------------------------------------------------------------------- /component/WxComment/WxComment.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/WxComment.wxss -------------------------------------------------------------------------------- /component/WxComment/images/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/images/coffee.png -------------------------------------------------------------------------------- /component/WxComment/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/images/comment.png -------------------------------------------------------------------------------- /component/WxComment/images/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/images/views.png -------------------------------------------------------------------------------- /component/WxComment/images/zan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/images/zan.png -------------------------------------------------------------------------------- /component/WxComment/images/zan_self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/component/WxComment/images/zan_self.png -------------------------------------------------------------------------------- /libs/leancloud/.gitignore: -------------------------------------------------------------------------------- 1 | rest_api_leancloud.js 2 | -------------------------------------------------------------------------------- /libs/leancloud/av-weapp-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/libs/leancloud/av-weapp-min.js -------------------------------------------------------------------------------- /libs/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/libs/scripts/common.js -------------------------------------------------------------------------------- /screenshot/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/screenshot/admin.png -------------------------------------------------------------------------------- /screenshot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/screenshot/screenshot.png -------------------------------------------------------------------------------- /screenshot/xiaobaiai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yicm/WxComment/HEAD/screenshot/xiaobaiai.jpg --------------------------------------------------------------------------------