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