对接数据

This commit is contained in:
2025-10-24 15:45:38 +08:00
parent 672a2f4c90
commit d3375a347f
138 changed files with 16904 additions and 1026 deletions

View File

@ -0,0 +1,46 @@
<script>
export default {
data() {
return {
currentPage: 1,
}
},
methods: {
}
}
</script>
<template>
<div>
<el-pagination
background
:page-size="10"
:current-page="currentPage"
layout="prev, pager, next"
:total="100">
</el-pagination>
</div>
</template>
<style scoped lang="scss">
::v-deep .el-pagination {
.btn-prev, .btn-next {
background-color: #FFFFFF !important;
border: 1px solid #E2E8F0 !important;
border-radius: 6px !important;
}
.el-pager {
.number, .more {
background-color: #FFFFFF !important;
border: 1px solid #E2E8F0 !important;
border-radius: 6px !important;
}
.active {
color: #7B61FF !important;
border: 1px solid #7B61FF !important;
background-color: #FFFFFF !important;
}
}
}
</style>