123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- class Common{
- constructor() {
-
- }
-
-
- navTo(url){
- uni.navigateTo({
- url:url
- })
- }
-
- goback(url){
- var page = getCurrentPages();
- let windpowerstationName = uni.getStorageSync('windpowerstationName');
- page[0].$vm.address = windpowerstationName;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
-
- }
- let common = new Common();
- export default common;
|