##頁面跳轉
* 無參數頁面跳轉
~~~
wjSystem.go('system.user'); //跳轉到system模塊的user欄目
~~~
* 帶一個參數頁面跳轉
~~~
wjSystem.go('system.user',100);
wjSystem.go('system.user','abc');
~~~
* 帶多個參數頁面跳轉
> wjSystem.go目錄只支持兩個參數,第一個參數為(模塊標簽.頁面標識),第二個參數為傳值參數,如果需要傳多個參數,那要以數組或對象方式傳
~~~
wjSystem.go('system.password',[1,2,3,'a','b','c']);
~~~
* 運算傳參數頁面跳轉
> 有時候,業務需求可能在傳參數的時候,我們需要先運算一些業務邏輯動態轉參,那wjSystem.go第二個參數直接寫成function返回運算的結果值就可以了
~~~
//跳轉頁面并傳一個隨機參數值
wjSystem.go('system.password',function () {
return Math.random();
});
~~~