uni-app返回页面修改前一个页面的数据 h5/APP/小程序

   var pages=getCurrentPages(), prevPage=null;
   if(pages.length>1){
       prevPage=pages[pages.length-2];
   }
   if(prevPage){
       // #ifdef H5
			prevPage.customerSource=that.source[that.curIndex];
		// #endif
		// #ifdef APP-PLUS || MP-WEIXIN
			prevPage.setData({
				customerSource : that.source[that.curIndex]
			})
		// #endif
   }
   uni.navigateBack();

 

你可能感兴趣的:(uni-app返回页面修改前一个页面的数据 h5/APP/小程序)