123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- class Common{
- constructor() {
-
- }
-
-
- navTo(url){
- uni.navigateTo({
- url:url
- })
- }
-
- goback(url){
- var page = getCurrentPages();
- let windpowerstationName = uni.getStorageSync('windpowerstationName');
- page[0].$vm.address = windpowerstationName;
- if(windpowerstationName=="宁夏新能源公司"){
- page[0].$vm.FDC="0";
- }
- if(windpowerstationName=="麻黄山风电场"){
- page[0].$vm.FDC="MHS_FDC";
- }
- if(windpowerstationName=="牛首山风电场"){
- page[0].$vm.FDC="NSS_FDC";
- }
- if(windpowerstationName=="石板泉风电场"){
- page[0].$vm.FDC="SBQ_FDC";
- }
- if(windpowerstationName=="青山风电场"){
- page[0].$vm.FDC="QS_FDC";
- }
- if(windpowerstationName=="香山风电场"){
- page[0].$vm.FDC="XS_FDC";
- }
- page[0].target_comprehensive_indicators();
- page[0].target_windSpeed_power();
- page[0].index_windturbine_status();
- page[0].index_electricQuantity();
- page[0].index_target_basic_indicators();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
-
- }
- let common = new Common();
- export default common;
|