File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
public/pages/property/listOweFee Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 229
229
}
230
230
//&configIds= + _configIds
231
231
let _conditions = vc . objToGetParam ( $that . listOweFeeInfo . conditions )
232
- vc . jumpToPage ( '/callComponent/exportReportFee/exportData?pagePath=listOweFee' + "&" + _conditions ) ;
232
+ //vc.jumpToPage('/callComponent/exportReportFee/exportData?pagePath=listOweFee' + "&" + _conditions);
233
+ _conditions . pagePath = 'listOweFee' ;
234
+ let param = {
235
+ params : _conditions
236
+ } ;
237
+ //发送get请求
238
+ vc . http . apiGet ( '/export.exportData' , param ,
239
+ function ( json , res ) {
240
+ let _json = JSON . parse ( json ) ;
241
+ vc . toast ( _json . msg ) ;
242
+ if ( _json . code == 0 ) {
243
+ vc . jumpToPage ( '/#/pages/property/downloadTempFile?tab=下载中心' )
244
+ }
245
+ } ,
246
+ function ( errInfo , error ) {
247
+ console . log ( '请求失败处理' ) ;
248
+ } ) ;
233
249
} ,
234
250
_toFeeCollectionOrderManage : function ( ) {
235
251
vc . jumpToPage ( '/#/pages/property/feeCollectionOrderManage' ) ;
You can’t perform that action at this time.
0 commit comments