本教程实现 页面一点击后 跳转至页面二 查看消费订单列表,并且携带筛选参数
页面一
<template>
<el-table :data="consumeList">
<el-table-column label="名称" width="190" align="center" fixed>
<template slot-scope="{row}">
<span class="link-type" @click="consumeOrderLists(row.id)">
{{ row.name }}
</span>
</template>
</el-table-column>
</el-table>
</template>
<script>
export default {
methods: {
consumeOrderLists(id) {
// 跳转至订单列表页面传参
this.$router.push({
path: '/pay-order/role',
query: {
id: id,
date_time: 1606899965
}
}) // 带参跳转
},
}
}
</script>
页面二
<script>
export default {
data() {
return {
listQuery: {
date_time: new Date().getTime(),
id: ''
},
}
},
created() {
// 如果是跳转来的,则接受初始化参数
if (this.$route.query) {
this.listQuery.id = this.$route.query.id
this.listQuery.date_time = this.$route.query.date_time
}
}
}
</script>
如有疑问 请VX联系我 qubojie