element ui实现一个页面里跳转上一步下一步

<template>
  <div>
     <div class="deplDeploy">
           <el-steps :active="active" finish-status="success" align-center="center">
             <el-step title="个人信息"></el-step>
             <el-step title="家庭成员以及社会关系"></el-step>
             <el-step title="简历"></el-step>
           </el-steps>
           <div v-if="active === 0">000</div>
           <div v-if="active === 1">123</div>
           <div v-if="active === 2">321</div>
           <div v-if="active === 3">22</div>
           <div class="Btn">
             <el-button @click="prev" v-if="active == 1 || active == 2  ">上一步</el-button>
             <el-button @click="next" v-if="active == 0 || active == 1 ">下一步</el-button>
             <el-button v-if="active == 2">提交</el-button>

           </div>
     </div>
  </div>
</template>

<script>
export default {
data() {
      return {
       active:0
      };
    },
    methods: {
     prev(){
       --this.active;
       if(this.active < 0) this.active = 0
     },
     next() {
       if(this.active++ > 2) this.active = 0;
     }
    }
}
</script>

<style>

</style>

element-ui可以通过el-pagination组件来实现页面跳转。在el-pagination组件中,可以通过设置total属性来指定总条数,通过设置current-page属性来指定当前页码。当用户点击分页组件的页码时,可以通过监听current-change事件来获取当前点击的页码,并进行相应的处理。 以下是一个示例代码,演示了如何使用el-pagination组件实现页面跳转: ```html <template> <div> <el-pagination v-show="showPagination" background="" @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page.sync="currentPage" :page-sizes="[1, 2, 3, 4]" :page-size="pageSize" :total="totalItems" v-if="totalItems !== 0" layout="prev, pager, next, total" ></el-pagination> </div> </template> <script> export default { data() { return { showPagination: true, currentPage: 1, pageSize: 10, totalItems: 0 }; }, methods: { handleSizeChange(size) { // 处理每页显示条数变化的逻辑 this.pageSize = size; // 重新请求数据 this.getData(); }, handleCurrentChange(currentPage) { // 处理页码变化的逻辑 this.currentPage = currentPage; // 重新请求数据 this.getData(); }, getData() { // 根据当前页码和每页显示条数请求数据 // ... } } }; </script> ``` 在上述代码中,el-pagination组件的current-page属性绑定了currentPage变量,通过设置currentPage的值来指定当前页码。当用户点击分页组件的页码时,会触发handleCurrentChange方法,该方法会更新currentPage的值,并重新请求数据。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值