|
|
|
@ -14,7 +14,13 @@ Page({ |
|
|
|
safeBottom: app.globalData.safeBottom, |
|
|
|
orderList: [], |
|
|
|
tableSgin: null, |
|
|
|
loading: false |
|
|
|
loading: false, |
|
|
|
pximg:'/assets/info/px-mr.png', |
|
|
|
querFrom:{ |
|
|
|
queryWay: 1, |
|
|
|
priceSort:0 |
|
|
|
}, |
|
|
|
factoryList:[] |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
|
@ -63,4 +69,30 @@ Page({ |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
changeSort:function(){ |
|
|
|
if(this.data.pximg=='/assets/info/px-mr.png'){ |
|
|
|
this.setData({ |
|
|
|
pximg:'/assets/info/px-sx.png' |
|
|
|
}) |
|
|
|
this.data.querFrom.priceSort=1 |
|
|
|
this.getPaperMillOfInformationListFct(this.data.querFrom) |
|
|
|
return |
|
|
|
} |
|
|
|
if(this.data.pximg=='/assets/info/px-sx.png'){ |
|
|
|
this.setData({ |
|
|
|
pximg:'/assets/info/px-jx.png' |
|
|
|
}) |
|
|
|
this.data.querFrom.priceSort=0 |
|
|
|
this.getPaperMillOfInformationListFct(this.data.querFrom) |
|
|
|
return |
|
|
|
} |
|
|
|
if(this.data.pximg=='/assets/info/px-jx.png'){ |
|
|
|
this.setData({ |
|
|
|
pximg:'/assets/info/px-mr.png' |
|
|
|
}) |
|
|
|
this.data.querFrom.priceSort=0 |
|
|
|
this.getPaperMillOfInformationListFct(this.data.querFrom) |
|
|
|
return |
|
|
|
} |
|
|
|
}, |
|
|
|
}) |