comment.js 372 B

123456789101112131415161718192021222324252627
  1. /*
  2. * 芸众商城
  3. *
  4. * @author 微赞科技
  5. */
  6. define(['jquery','core'], function($){
  7. var comment = {
  8. currentpage: 0, //当前页
  9. pagesize: 10 //每页记录数
  10. };
  11. //获取评论
  12. comment.get = function(){
  13. }
  14. //发表评论
  15. comment.post = function(){
  16. }
  17. });