|
@@ -236,8 +236,8 @@
|
|
|
<el-pagination
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
- :current-page=form.pageNum
|
|
|
- :page-size=form.pageSize
|
|
|
+ :current-page=queryParams.pageNum
|
|
|
+ :page-size=queryParams.pageSize
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
:total=dataList.total
|
|
|
>
|
|
@@ -250,15 +250,20 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import {cityQuery, getBidingInfo} from "@/api/business/bid/biding";
|
|
|
-import TemplateList from "@/views/business/spd/target/targetMk/templateDownload.vue";
|
|
|
|
|
|
export default {
|
|
|
- components: {TemplateList},
|
|
|
-
|
|
|
+ components:{},
|
|
|
created() {
|
|
|
+ console.log("this.$route.query.queryParam.pageSize",this.$route.query.queryParam)
|
|
|
+ if(this.$route.query.queryParam!=null){
|
|
|
+ this.queryParams=this.$route.query.queryParam
|
|
|
+ this.btnQuery()
|
|
|
+ }else {
|
|
|
+ this.btnQuery()
|
|
|
+ }
|
|
|
this.getCity()
|
|
|
this.getTableHeight()
|
|
|
- this.btnQuery()
|
|
|
+
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
this.saveQueryParams=this.queryParams
|
|
@@ -326,7 +331,7 @@ export default {
|
|
|
},
|
|
|
handleRouter(row,event,colum) {
|
|
|
// this.dialogVisible=true
|
|
|
- let resolve = this.$router.push({path:'/business/bid/bidingInfo',query:{id:row.id}});
|
|
|
+ let resolve = this.$router.push({path:'/business/bid/bidingInfo',query:{id:row.id,queryParam:this.queryParams}});
|
|
|
},
|
|
|
btnQuery() {
|
|
|
if (!this.queryParams.releasedTime) {
|