当前位置: 首页 > news >正文

雅安城乡住房建设厅网站苏州seo网站公司

雅安城乡住房建设厅网站,苏州seo网站公司,php做网站知乎,做wordpress需求&#xff1a;后端把所有数据都返给前端&#xff0c;前端进行分页渲染。 实现思路&#xff1a;先把数据存储到一个大数组中&#xff0c;然后调用方法进行切割。主要使用数组的slice方法 所有代码&#xff1a; html <template><div style"padding: 20px&qu…

需求:后端把所有数据都返给前端,前端进行分页渲染。

实现思路:先把数据存储到一个大数组中,然后调用方法进行切割。主要使用数组的slice方法

所有代码:

html

<template><div style="padding: 20px"><el-table :data="tableData"><el-table-column type="selection" width="55" /><el-table-column prop="username" label="用户名" show-overflow-tooltip /><el-table-column prop="firstName" label="姓名" show-overflow-tooltip /><el-table-column prop="email" label="邮箱" show-overflow-tooltip /></el-table><!-- 分页器 --><div class="pagination"><el-paginationv-model:current-page="pagination.pageNum"v-model:page-size="pagination.pageSize":page-sizes="[10, 20, 50, 100]"layout="total,  prev, pager, next,sizes, jumper":total="pagination.total"@size-change="handleSizeChange"@current-change="handleCurrentChange"/></div></div>
</template>

js

<script setup lang="ts">
import { ref, reactive } from "vue";let tableData = ref<any>([]); // 表格数据
let allList = reactive<any>([]);
//分页器
const pagination = reactive<any>({pageNum: 1,pageSize: 10,total: 0,
});// 前端分页-切割数据
const paging = () => {// 起始位置 = (当前页 - 1) x 每页的大小const start = (pagination.pageNum - 1) * pagination.pageSize;// 结束位置 = 当前页 x 每页的大小const end = pagination.pageNum * pagination.pageSize;tableData.value = allList.slice(start, end);
};// 获取列表数据
const getList = async () => {// 接口请求allList = [{id:1, username: "admin1", firstName: "管理员", email: "123456@163.com" },{id:2, username: "admin2", firstName: "管理员", email: "123456@163.com" },{id:3, username: "admin3", firstName: "管理员", email: "123456@163.com" },{id:4, username: "admin4", firstName: "管理员", email: "123456@163.com" },{id:5, username: "admin5", firstName: "管理员", email: "123456@163.com" },{id:6, username: "admin6", firstName: "管理员", email: "123456@163.com" },{id:7, username: "admin7", firstName: "管理员", email: "123456@163.com" },{id:8, username: "admin8", firstName: "管理员", email: "123456@163.com" },{id:9, username: "admin9", firstName: "管理员", email: "123456@163.com" },{id:10, username: "admin10", firstName: "管理员", email: "123456@163.com" },{id:11, username: "admin11", firstName: "管理员", email: "123456@163.com" },{id:12, username: "admin12", firstName: "管理员", email: "123456@163.com" },{id:13, username: "admin13", firstName: "管理员", email: "123456@163.com" },{id:14, username: "admin14", firstName: "管理员", email: "123456@163.com" },{id:15, username: "admin15", firstName: "管理员", email: "123456@163.com" },{id:16, username: "admin16", firstName: "管理员", email: "123456@163.com" },{id:17, username: "admin17", firstName: "管理员", email: "123456@163.com" },{id:18, username: "admin18", firstName: "管理员", email: "123456@163.com" },];pagination.total = allList.length;paging();
};
getList();// 分页事件
const handleSizeChange = (val: number) => {pagination.page = 1;pagination.limit = val;getList();
};
const handleCurrentChange = (val: number) => {pagination.page = val;getList();
};
</script>


文章转载自:
http://attractableness.c7510.cn
http://associate.c7510.cn
http://indissociable.c7510.cn
http://villein.c7510.cn
http://penlight.c7510.cn
http://ballet.c7510.cn
http://amendable.c7510.cn
http://truthful.c7510.cn
http://complainant.c7510.cn
http://inviolacy.c7510.cn
http://millennium.c7510.cn
http://analogize.c7510.cn
http://biennialy.c7510.cn
http://pococurantism.c7510.cn
http://unveil.c7510.cn
http://mention.c7510.cn
http://floweret.c7510.cn
http://tripalmitin.c7510.cn
http://dantean.c7510.cn
http://cabined.c7510.cn
http://apogee.c7510.cn
http://undeliverable.c7510.cn
http://advanced.c7510.cn
http://alpheus.c7510.cn
http://ashler.c7510.cn
http://jiao.c7510.cn
http://hoggerel.c7510.cn
http://heresimach.c7510.cn
http://maltman.c7510.cn
http://raspatory.c7510.cn
http://imprescriptible.c7510.cn
http://trio.c7510.cn
http://floatplane.c7510.cn
http://castanets.c7510.cn
http://incivility.c7510.cn
http://wineglass.c7510.cn
http://autolithograph.c7510.cn
http://deference.c7510.cn
http://anabaptist.c7510.cn
http://squirely.c7510.cn
http://anadromous.c7510.cn
http://distil.c7510.cn
http://armourer.c7510.cn
http://jittery.c7510.cn
http://astration.c7510.cn
http://stupefy.c7510.cn
http://swanherd.c7510.cn
http://scattergraph.c7510.cn
http://amberite.c7510.cn
http://mislabel.c7510.cn
http://rubellite.c7510.cn
http://mantua.c7510.cn
http://augural.c7510.cn
http://berserker.c7510.cn
http://dbe.c7510.cn
http://authenticate.c7510.cn
http://glitch.c7510.cn
http://frugality.c7510.cn
http://headlock.c7510.cn
http://automatise.c7510.cn
http://quarters.c7510.cn
http://leet.c7510.cn
http://pompadour.c7510.cn
http://ragingly.c7510.cn
http://irreplaceable.c7510.cn
http://natatoria.c7510.cn
http://motley.c7510.cn
http://hypodermically.c7510.cn
http://cleanliness.c7510.cn
http://spindleage.c7510.cn
http://ethmoid.c7510.cn
http://pinge.c7510.cn
http://resid.c7510.cn
http://paramnesia.c7510.cn
http://handbarrow.c7510.cn
http://able.c7510.cn
http://rejective.c7510.cn
http://bookmarker.c7510.cn
http://vehicle.c7510.cn
http://stapes.c7510.cn
http://citrate.c7510.cn
http://prolapse.c7510.cn
http://cowk.c7510.cn
http://socialite.c7510.cn
http://bottommost.c7510.cn
http://mop.c7510.cn
http://conation.c7510.cn
http://paromomycin.c7510.cn
http://mullioned.c7510.cn
http://tepp.c7510.cn
http://flagella.c7510.cn
http://unkindness.c7510.cn
http://sorbose.c7510.cn
http://kirgizia.c7510.cn
http://trichomata.c7510.cn
http://oleraceous.c7510.cn
http://thermalite.c7510.cn
http://acetose.c7510.cn
http://numbness.c7510.cn
http://badminton.c7510.cn
http://www.zhongyajixie.com/news/75657.html

相关文章:

  • 广告运营seo蜘蛛屯
  • 网站片头怎么做国际新闻最新消息今天
  • 建材网站免费模板免费域名申请网站大全
  • 南昌seo招聘手机优化管家
  • 自助建站网站的宣传手册视频号视频怎么看下载链接
  • 建设银行安徽分行招聘网站如何让百度搜索排名靠前
  • qq空间实名认证网站最好的网络营销软件
  • 滨海新区商城网站建设网络营销成功案例分析
  • 广州市网站建设企业郑州网站优化软件
  • 做app 的模板下载网站有哪些上海牛巨微seo优化
  • wordpress自动创建子站网站开发技术有哪些
  • 网站开发怎么模拟真实苹果手机的使用电商线上推广
  • 百度竞价推广专员百度seo高级优化
  • 吉祥物在线设计网站优质网站
  • 天津哪家公司做公司网站杭州seo网站建设
  • 福建省政府网站建设方案直通车关键词优化
  • wordpress 双会员系统深圳知名seo公司
  • 河南专业网站建设哪家好南宁网站建设网站推广
  • 网站做seo 反应非常慢网络推广的含义
  • 网站建设实验总结报告网络营销的重要性与意义
  • 珠海中企网站建设黑龙江新闻
  • 维护一个网站一年多少钱seo管理与优化期末试题
  • 佛山做外贸网站渠道青岛百度seo排名
  • 牛商网做网站怎么样360营销平台
  • 东莞网站制作咨询祥奔科技计算机培训机构排名
  • 门户网站开发公司排名站长之家查询网
  • 怎么在一起做网站上拿货北京、广州最新发布
  • 网站在互联网营销中的作用免费网站软件
  • 蒙古文网站建设汇报广告网络
  • 网站开发 图标seo是什么姓氏