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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| /**
| 入驻小区
| **/
| (function(vc){
| var DEFAULT_PAGE = 1;
| var DEFAULT_ROWS = 10;
| vc.extends({
| data:{
| serviceBindingInfo:{
| $step:'',
| index:0,
| }
| },
| _initMethod:function(){
| vc.component._initStep();
| },
| _initEvent:function(){
|
| },
| methods:{
| _initStep:function(){
| vc.component.serviceBindingInfo.$step = $("#step");
| vc.component.serviceBindingInfo.$step.step({
| index: 0,
| time: 500,
| title: ["选择应用", "选择服务", "确认绑定"]
| });
| vc.component.serviceBindingInfo.index = vc.component.serviceBindingInfo.$step.getIndex();
| },
| _prevStep:function(){
| vc.component.serviceBindingInfo.$step.prevStep();
| vc.component.serviceBindingInfo.index = vc.component.serviceBindingInfo.$step.getIndex();
| },
| _nextStep:function(){
| vc.component.serviceBindingInfo.$step.nextStep();
| vc.component.serviceBindingInfo.index = vc.component.serviceBindingInfo.$step.getIndex();
| }
| }
| });
| })(window.vc);
|
|