serviceBinding.js 477 B

1234567891011121314151617181920212223242526
  1. /**
  2. 入驻小区
  3. **/
  4. (function(vc){
  5. var DEFAULT_PAGE = 1;
  6. var DEFAULT_ROWS = 10;
  7. vc.extends({
  8. data:{
  9. serviceBindingInfo:{
  10. step:1,
  11. }
  12. },
  13. _initMethod:function(){
  14. vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS);
  15. },
  16. _initEvent:function(){
  17. },
  18. methods:{
  19. _listServices:function(_page, _rows){
  20. }
  21. }
  22. });
  23. })(window.vc);