【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组

前言

本章主要讲解第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组中的题目,接着往下看吧

文章目录

目录

前言

文章目录

第一题:网页ppt

第二题:西游记之西天取经

第三题:商品销量和销售额实时展示

第四题:蓝桥校园一卡通

第五题:会员权益领取中心

第六题:心愿便利贴

第七题:消失的 Token

第八题:趣购

第九题:分页组件

第十题:虚拟滚动列表

结语


第一题:网页ppt

题目要求:单击按钮实现页面切换。

考点:jquery的基本用法

解题思路:

①题目中已经给左右按钮都绑定了单击事件,在事件里共同调用了一个函数switchPage。所以switchPage函数就是用来实现页面切换功能的。且发现按钮禁用主要是靠disable 类。页面隐藏是style.display设置为none的原因。activeIndex属性就是当前页面的下标值(根据左右按钮里的单击事件里的内容可得)。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第1张图片

②首先我们将所有的页面全隐藏,然后将按钮设为全部可见状态。

③然后将下标为activeIndex的页面设置成可见状态。

④判断如果activeIndex为0也就是达到下标左边边界了,则把左按钮置为隐藏。如果activeIndex为4也就是达到下标右边边界了,则把右按钮置为隐藏。

⑤最后还要处理页码,格式为 "当前页码 / 总页码"

function switchPage() {
  // TODO: 请补充该函数,实现根据activeIndex切换页面的功能,并且在到达最后一页或第一页时给相应的按钮添加disable类
  Array.from(document.querySelectorAll('section')).forEach(e => e.style.display = 'none');
  $('.left').removeClass('disable')//删除类
  $('.right').removeClass('disable')
  //显示当前页面
  document.querySelectorAll('section')[activeIndex].style.display = 'block';
  //处理页码
  $('.page').text(`${activeIndex+1} / 5`)
  //判断是否为下标边界
  if(activeIndex===0){
    $('.left').addClass('disable')//增加类
  }
  if(activeIndex===4){
    $('.right').addClass('disable')
  }
}

第二题:西游记之西天取经

题目要求:让动画无限循环。

考点:css动画animation

解题思路:

观察页面效果发现动画只走了八下,打开css发现animation: a1 0.8s steps(8)并没有设置持续事件。所以现在默认是一次,我们将持续事件设置为infinite无限次就可以了。

.actor:first-child {
    width: 200px;
    height: 180px;
    background: url(../images/west_01.png) no-repeat;
    /* TODO 填空 */
    animation: a1 0.8s steps(8) infinite;
}
.actor:nth-child(2) {
    width: 200px;
    height: 180px;
    background: url(../images/west_02.png) no-repeat;
    /* TODO 填空 */
    animation: a2 0.8s steps(8) infinite;
}
.actor:nth-child(3) {
    width: 170px;
    height: 240px;
    background: url(../images/west_03.png) no-repeat;
    /* TODO 填空 */
    animation: a3 0.8s steps(8) infinite; 
}
.actor:last-child {
    width: 210px;
    height: 200px;
    background: url(../images/west_04.png) no-repeat;
    /* TODO 填空 */
    animation: a4 0.8s steps(8) infinite;
}

第三题:商品销量和销售额实时展示

题目要求:达到如下效果

考点:js基础知识、echarts

 【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第2张图片

解题思路:

①第一题补全 yAxis 的设置完全是送分的,直接告诉你写哪,写什么了。

②第二题首先要想的就是数据在哪?观察js发现里面封装了一个接口,在renderChart函数里还调用了这个接口。console.log(result)发现就是我们需要的数据。

③处理数据。处理成想要的样子。再将值赋值给charData中对应的值就可以了。

// 指定图表的配置项和数据
const charData = {
    title: {
        text: '云课课程销量和销售额看板',
        width: 100,
        height: 50,
        textStyle: {
            lineHeight: 50,
        },
        left: 'center',

    },
    grid: {
        top: 80,
    },
    tooltip:{
        show: true,
    },
    xAxis: {
        data: [],
    },
    // TODO:补全 `yAxis` 的设置,要求“销售额”(即,配置项 `name`)的位置(即,配置项 `position`)在图表的左侧,“销量”(即,配置项 `name`)的位置(即,配置项 `position`)在图表的右侧。
    yAxis: [{
        type: 'value',
        name: '销售额',
        position: '',
    },
    {
        type: 'value',
        name: '销量',
        position: '',
    }],
    series: [
        {
            name: '销售额',
            type: 'line',
            data: [],
            yAxisIndex: 0,
            smooth: true
        },
        {
            name: '销量',
            type: 'bar',
            data: [],
            yAxisIndex: 1,
            smooth: true
        }
    ]
};
……………………
async function renderChart() {
    const result = await Ajax();
    document.querySelector("#result").innerText = JSON.stringify(result);
    const myChart = echarts.init(document.getElementById('main'));
    // TODO:补全代码,正确给 X 轴的时间,以及 Y 轴的商品的销售额 saleObj 和销量赋值 countObj。
    const data=result.data
    let countdata={x:[],y:[]}
    let saledata={x:[],y:[]}
    countdata.x=Object.keys(data.countObj)
    countdata.y=Object.values(data.countObj)
    saledata.x=Object.keys(data.saleObj)
    saledata.y=Object.values(data.saleObj)
    charData.xAxis.data=countdata.x
    charData.series[0].data=saledata.y
    charData.series[1].data=countdata.y
    myChart.setOption(charData, true);
    document.querySelector("#data").innerText = JSON.stringify(charData);
}
renderChart();
let times = 0;
let timer = setInterval(() => {
    renderChart();
    ++times == 6 && clearInterval(timer);
}, 2000)

第四题:蓝桥校园一卡通

题目要求:完成表单验证。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第3张图片

考点:js基础知识

解题思路:

①根据题目要求

②利用正则表达式的text属性判断文本框值是否符合要求。如果符合要求那么就将提示(不符合要求)的文字隐藏。如果不符合要求,那么提示文字显示,且为表单项(class=form-group)添加类 class=has-error。不在继续下面的代码了。这是为了防止最后那条代码运行。

③当然再最开始的时候将表单项(class=form-group身上的类class=has-error全删除了。

④最后都满足要求那么就正确显示卡片。为卡片附上对应的值。

第五题:会员权益领取中心

题目要求:页面布局题

解题思路:这题属实有些变态了,也太多了……每个人有每个人的写法吧,仅供参考。这种题,最好留到最后写吧,比较费时间。


  
    
    
    
    会员权益领取中心
    
  
  
    
  • 小兰同学 L57
  • 已加入蓝桥云课 300 天
  • 会员到期时间:2022-01-06
我的邀请码: 7088DCA 邀请好友
  • 会员权益升级
  • 会员专属特权
    高级会员
    标准会员
  • 50+ 备赛精品课
    享受8折
  • 200+ 企业实战项目
    享受8折
  • 400+ 编程实验课
  • 7大热招岗位学习路径
    仅基础阶段可学
  • 保存 2 个开发环境
  • 50+ IT 行业经典简历模板
  • 20讲简历面试指导课
  • 模拟面试 1 次
  • 实习推荐 1 次
  • 更多精选内容
每日仅2.1元
高级会员
标准会员
订单详情
开通时常
赠送30天
1年
赠送30天
2年
优惠券
100元优惠卷
优惠码
支付方式

订单金额
¥1299
¥720
同意蓝桥云课VIP会员使用协议
  • 备赛精品课
名师备赛精品课,助你一站式夺奖
/* TODO: 待补充代码*/
*{
    margin: 0;
    padding: 0;
}

li{
    list-style: none;
}

/* header */
header{
    width: 1440px;
    height: 208px;
    background: url('../images/top_banner.png') no-repeat;
    background-size: 100% 100%;
    margin: 0 auto;
    padding-top: 32px;
}

.card{
    position: relative;
    width: 290px;
    height: 176px;
    background-image: linear-gradient(180deg, #191720 0%, #080810 100%);
    border-radius: 4px;
    margin-left: 1000px;
}

.card-l{
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../images/touxiang.png') no-repeat;
    background-size: 100% 100%;
    top: 41px;
    left: 24px;
}

.card-r{
    position: absolute;
    top: 30px;
    left: 94px;
}

.card-ul>li:nth-child(1)>span:nth-child(1){
    width: 80px;
    height: 20px;
    font-family: PingFangSC-Regular;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 400;
}

.card-ul>li:nth-child(1)>span:nth-child(2){
    width: 22px;
    height: 18px;
    font-family: SourceHanSansCN-Heavy;
    font-size: 12px;
    color: #FFC200;
    letter-spacing: 0;
    font-weight: 900;
}

.card-ul>li:nth-child(2){
    width: 147px;
    height: 14px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 14px;
    font-weight: 400;
    margin-top: 13px;
}

.card-ul>li:nth-child(3){
    width: 154px;
    height: 12px;
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #C6C6C6;
    letter-spacing: 0;
    line-height: 12px;
    font-weight: 400;
    margin-top: 12px;
}

.card>div:nth-child(2){
    position:absolute;
    top: 130px;
    left: 24px;
}

.card>div:nth-child(2)>span:nth-child(1){
    width: 84px;
    height: 14px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 14px;
    font-weight: 400;
}

.card>div:nth-child(2)>span:nth-child(2){
    width: 63px;
    height: 14px;
    font-family: PingFangSC-Semibold;
    font-size: 14px;
    color: #FF9630;
    letter-spacing: 0;
    line-height: 14px;
    font-weight: 600;
}

.card>div:nth-child(2)>span:nth-child(3){
    width: 69px;
    height: 24px;
    background-color: #FF9630;
    border-radius: 4px;
    margin-left: 27px;
}

.card>div:nth-child(2)>span:nth-child(3)>span{
    width: 57px;
    height: 20px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0.14px;
    font-weight: 400;
}


/* main */
main{
    width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 48px;
    background: #FCFDFF;
}

/* benefitsUpgrade */
.benefitsUpgrade{
    padding: 60px 0;
    overflow: hidden;
}

.benefitsUpgrade-t{
    float: left;
    width: 760px;
    height: 704px;
    margin-left: 150px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(229,235,241,1);
    border-radius: 10px;
}

.benefitsUpgrade-t-ul>li{
    width: 100%;
    height: 64px;
    line-height: 64px;
    display: flex;
    justify-content:space-around;
}

.benefitsUpgrade-t-ul>li:nth-child(even){
    background: #F7F8FA;
}

.benefitsUpgrade-t-ul>li>div:nth-child(1){
    width: 250px;
}

.benefitsUpgrade-t-ul>li>div:nth-child(1)>img{
    width: 42px;
    height: 42px;
    vertical-align: middle;
}

.benefitsUpgrade-t-ul>li>div:nth-child(1)>span{
    width: 100%;
    height: 14px;
}

.benefitsUpgrade-t-ul>li>div:nth-child(2){
    width: 150px;
    text-align: center;
}

.benefitsUpgrade-t-ul>li>div:nth-child(3){
    width: 150px;
    text-align: center;
}

.box1{
    width: 96px;
    height: 16px;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 500;
}

.box2>img,
.box3>img{
    width: 19px;
    height: 19px;
    vertical-align: middle;
}

.box2>span,
.box3>span{
    width: 64px;
    height: 16px;
    vertical-align: middle;
    margin-left: 8px;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    line-height: 16px;
    font-weight: 500;
}

.benefitsUpgrade-ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefitsUpgrade>div:nth-child(2){
    margin-top: 40px;
}

.benefitsUpgrade-ul>li:nth-child(2){
    width: 180px;
    height: 30px;
    font-family: PingFangSC-Medium;
    font-size: 30px;
    color: #232A33;
    letter-spacing: 0;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
}

/* benefitsUpgrade-b */
.benefitsUpgrade-b{
    float: left;
    width: 360px;
    height: 704px;
    margin-left: 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(229,235,241,1);
    border-radius: 10px;
}

.benefitsUpgrade-b .top{
    position: relative;
    width: 360px;
    height: 56px;
    background: #EEF0F6;
    border-radius: 10px 10px 0px 0px;
}

.benefitsUpgrade-b .top>div:nth-child(1){
    position:absolute;
    width: 80px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-image: linear-gradient(135deg, #FF5760 0%, #EE0000 100%);
    border-radius: 0px 10px 0px 0px;
    top: -11px;
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 400;
}

.benefitsUpgrade-b .top>div:nth-child(2){
    float: left;
    width: 196px;
    height: 56px;
    line-height: 56px;
    background: url('../images/vip-bg.png');
    text-align: center;
    font-family: PingFangSC-Medium;
    font-size: 20px;
    color: #F7D8A6;
    letter-spacing: 0;
    font-weight: 500;
}

.benefitsUpgrade-b .top>div:nth-child(3){
    height: 56px;
    line-height: 56px;
    text-align: center;
    font-family: PingFangSC-Medium;
    font-size: 20px;
    color: #999999;
    letter-spacing: 0;
    font-weight: 500;
}

.order{
    width: 64px;
    height: 22px;
    line-height: 22px;
    margin-top: 32px;
    margin-left: 20px;
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 500;
}

.open{
    width: 56px;
    height: 20px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 400;
    margin-top: 32px;
    margin-left: 20px;
}

.open-year{
    margin-top: 23px;
    margin-left: 20px;
}

.active{
    position: relative;
    float: left;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid rgba(0,128,246,1);
}

.year{
    position: relative;
    float: left;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
    border: 1px solid rgba(232,232,232,1);
    border-radius: 4px;
    margin-left: 10px;
}

.open-year>div>p>img{
    vertical-align: middle;
}

.open-year>div>div:nth-child(1){
    position:absolute;
    width: 69px;
    height: 23.58px;
    line-height:  23.58px;
    background: url('../images/bq.png');
    text-align: center;
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #EE0000;
    letter-spacing: 0;
    font-weight: 400;
    right: 0;
    top: -13px;
}

.open-year>div>img{
    position:absolute;
    bottom: 0;
    right: 0;
}

.Preferential{
    display: flex;
    margin-top: 34px;
    margin-left: 20px;
    justify-content: space-between;
}

.Preferential>div:nth-child(1)>span{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 400;
    vertical-align: middle;
}

.Preferential>div:nth-child(1)>img{
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
}

.Preferential>div:nth-child(2){
    margin-right: 20px;
}

.Preferential>div:nth-child(2)>span{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    line-height: 20px;
    font-weight: 400;
    vertical-align: middle;
}

.Preferential>div:nth-child(2)>img{
    width: 7px;
    height: 10.5px;
    vertical-align: middle;
    margin-left: 10px;
}

.ma{
    margin-top: 36px;
    margin-left: 20px;
}

.ma>img{
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.ma>span{
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    vertical-align: middle;
}

.OrderAmount{
    display: flex;
    justify-content:space-between;
    margin: 100px 20px 0 20px;
}

.OrderAmount>div{
    display: flex;
}

.OrderAmount>div:nth-child(1){
    width: 56px;
    height: 30px;
    line-height: 50px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
}

.OrderAmount>div:nth-child(2)>div:nth-child(1){
    width: 40px;
    height: 30px;
    line-height: 50px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #898989;
    letter-spacing: 0;
    text-align: center;
    font-weight: 400;
    /* 删除线 */
    text-decoration-line:line-through;

}

.OrderAmount>div:nth-child(2)>div:nth-child(2){
    width: 71px;
    height: 30px;
    font-family: PingFangSC-Semibold;
    font-size: 30px;
    color: #EE0000;
    letter-spacing: 0;
    text-align: center;
    font-weight: 600;
}

.login{
    width: 320px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-image: linear-gradient(135deg, #FF5760 0%, #EE0000 100%);
    border-radius: 100px;
    font-family: PingFangSC-Regular;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 400;
    margin: 20px 0 0 20px;
}

.checked>div{
    float: left;
}

.checked>div:nth-child(1){
    margin: 13px 0 0 20px;
}

.checked>div:nth-child(2){
    margin: 11px 0 0 8px;
}

/* BoutiqueClass */
.BoutiqueClass>div:nth-child(1)>div{
    width: 300px;
    height: 28px;
    font-family: PingFangSC-Regular;
    font-size: 20px;
    color: #898989;
    letter-spacing: 0;
    text-align: center;
    font-weight: 400;
    margin: 16px auto 40px auto;
}

.BoutiqueClass-ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.title{
    width: 150px;
    height: 30px;
    font-family: PingFangSC-Medium;
    font-size: 30px;
    color: #232A33;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 500;
}

第六题:心愿便利贴

题目要求:完成验证功能并展示到页面。

考点:elmentui表单组件

解题思路:

题目给出了elmentui表单组件验证相关的知识和案例。所以根据案例写出来很快。可以说是送分题。


第七题:消失的 Token

考点:这是一道排错题,主要是考察vuex的知识。

解题思路:

①我们应该先去看一下Vuex相关的代码,在UserModule.js中会发现UserModule这个模块开启了命名空间。

index.js中是通过user字段来引入UserModule的,所以在使用UserModule模块的内容时就需要注意要通过命名空间user来引用,之后检查index.html就很容易发现问题所在了。

第八题:趣购

题目要求:拖拉上面的商品实现添加到购物车并计算总和的操作。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第4张图片

解题思路:

①首先为需要为被拖拉的元素绑定属性draggable="true",表示元素可以拖动

②由于图片或者链接元素不用添加属性draggable="true"也可以拖拉,为了防止用户拖拉错误,要为他们添加属性draggable="false"阻止它们拖拉。

③为被拖拉的元素绑定用户拖拉开始事件dragstart,获取需要用到的元素数据并将它们保存在 event dataTransfer 属性里。题目中提供了关于保存数据到event dataTransfer的方法,如下图所示

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第5张图片

④为需要放置到的元素 drop事件 (当元素或选中的文本在可释放目标上被释放时触发。)

⑤根据题目要求拖拉商品到放置区放开的时候就会添加进购物车并总计,所以在drop事件中要拿到元素的数据。题目中提供了如何从获取event dataTransfer属性里的数据(就是刚刚拖拉元素开始时保存到里面的数据)。

此时你会发现drop事件不能触发,题目中给了提示说想要 ondrop 能正确触发,有时需要在前置 dragover 事件中禁用默认行为所有再为放置到的元素绑定dragover事件(当元素或选中的文本被拖到一个可释放目标上时触发) ,再阻止默认行为,drop就可以正常触发了。

如下图所示,因为通过页面结构发现bought是用来存每一天数据的,bought里面有几条数据购物车上的小红点上就显示几,所以要将拿到的数据以一个对象的形式存到data的bought中。然后就需要展示在页面上的购物车商品和商品总计了。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第6张图片

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第7张图片

如下图所示,购物车商品是通过goodDetail的数据绑定的,总计是通过totalPrice的数据绑定的,所以要在计算里处理一下这两个数据变成效果的那样。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第8张图片

⑦我们先来算总计的数据。我们知道的是目前所有商品的数据都放在了this.bought里。它是以[{name:"畅销书",price:”30“}{name:"纸巾",price:”20“}]的形式存放商品的,所以我们可以使用reduce函数或者for……in……遍历来将所有的商品价格相加,再返回。

⑧购物车商品需要展示成畅销书*1收纳箱*2这样的形式,而目前数据是这样[{name:"畅销书",price:”30“}{name:"纸巾",price:”20“}]的形式,且目前的数据里存在相同的数据。还得把相同的商品数据归到一起。(直接讲不太好描述,我写在下面的代码的注释里了。)



也可以通过produce函数来算商品总计。

totalPrice() {
  const {bought} = this;
  return bought.reduce((prev,next)=>{
    prev+=next.price;
    return prev;
  },0)
},

第九题:分页组件

这道题虽然要求很多,但是也不要怕,按照要求一步一步的写不要跳要求写。因为是按照要求来给分的。

最终实现分页效果。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第9张图片

要求一:

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第10张图片

首先使用axios调用接口获取数据,对result中的data和total进行赋值。注意result中data需要的数据是当前页的数据而不是全部数据,所以这里我使用slice(开始下标,结束下标)在原数据中截取当前页的数据在赋值给result的data。

async function ajax({ url, method = "get", data, query: { currentPage, pageSize } }) {
    // TODO:根据函数参数 `query` 对象  `currentPage, pageSize` 获得当前页的数据
    let result = {
        data:[],
        total:0
    }

    /*用于存放页面原数据*/
    let resdata=[]
    /*调接口存数据*/
    let res=await axios[method ](url,data)
    if(res.status===200){
        resdata=res.data.data
        result.total=res.data.total
    }
    /*当前页要展示的页面数据*/
    result.data=resdata.slice((currentPage-1)*pageSize,currentPage*pageSize)

    return result;
}

要求二:

按要求给出的条件写,<按钮最小为1,所以当前页面>1的时候才可以将对当前页码进行-1的操作。>按钮也是同理。最后要都要调一下this.initPagination()函数。(因为要求中写了当前页码改变时页面上的分页组件效果同步更新,而在注释里明确写了initPagination()函数是用在当前页码更新时调用的)

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第11张图片

initEvents() {
        this.root.querySelector("#btn-prev").addEventListener('click', () => {
            // TODO:"<" 按钮的点击事件, 点击时 this.currentPage - 1
            if(this.currentPage>1){
                this.currentPage--;
                this.initPagination();
            }
        })
        this.root.querySelector("#btn-next").addEventListener('click', () => {
            // TODO:">" 按钮的点击事件, 点击时 this.currentPage + 1
            if(this.currentPage {
            if (e.target.nodeName.toLowerCase() === 'li') {
                if (this.currentPage === e.target.innerText) return;
                if (e.target.classList.contains('more')) return;
                this.currentPage = Number(e.target.innerText)
            }
            this.initPagination();
        });
    }

要求三:

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第12张图片

 这里应该是本题最复杂的任务了,需要完成的是求出当前页码在页面中因该显示的页码数(有点绕口不要紧,我们接着往下看吧),需要考虑以下两种情况:

totalPages<=pagerCount也就是说总的页码数量小于等于页码按钮的数量,那么直接遍历[1~totalPages]的数据添加到indexArr中去就可以了。

totalPages>pagerCount当总的页码数大于页码按钮的数量时,还需要考虑以下三种情况的出现。

下面内容可能讲解的有些绕,所以我画了一张图,帮助大家理解,如下图所示。

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第13张图片

1.页码靠左连续显示,例如[1,2,3,4,10]。当当前页码小于pagerCount-2,也就是靠左边显示连续页码的取值范围。那么页码范围就是[1~(pagerCount-1)],最后添加最后一个页码。

为什么当前页码小于pagerCount-2就是靠左连续显示,因为点击的时候靠左连续页码的最后一个页码时,页码开始连续中间显示,所以最大就是取到pagerCount-2。为什么是pagerCount-1?因为一共展示pageCount个页码按钮,最后一个页码一定有,所以前面就只有pageCount-1个页码按钮了。

2.页码中间连续显示,例如[1,3,4,5,10]。当页码大于pagerCount-2且小于currentPage<=totalPages-pagerCount+2,也就是中间的页码取值范围。最后就是添加响应的值到indexArr中了。注意:这里pageCount为奇数时和偶数时是不一样的。

3.页码靠右连续显示,例如[1,7,8,9,10]。当页码大于totalPages-pagerCount+2,也就是靠右边显示连续页码的取值范围。最后就是添加响应的值到indexArr中了。

注意:第二种情况下,我的最外层判断是用于判断页码是处于哪个位置显示的(右边、中间或是左边),最里面的循环求的是indexArr的值。

/**
 * @description 得到分页数组 indexArr,如[1,2,3,4,10],[1,3,4,5,10],[1,7,8,9,10]
 * @param {number} currentPage 当前页数,默认为第一页	
 * @param {number} totalPages 总的页码数
 * @param {number} pagerCount 设置最大页码按钮数。 页码按钮的数量,当总页数超过该值时会折叠
 * @return {Array} 分页数组 indexArr
*/
const createPaginationIndexArr = (currentPage, totalPages, pagerCount) => {
    let indexArr = [];
    // TODO:根据传参生成分页数组 indexArr
    indexArr[0]=1 //第1个永远是1
    if(totalPages<=pagerCount){
        for(let i=1;i

要求四:

【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第14张图片

计算template。如果后一个数与前一个数不是连续的数字,那么就添加

  • ...
  • 然后再添加
  • ${next}
  • `,否则就直接添加
  • ${next}
  • `。注意:要判断是否为当前页码,当前页码需要添加active类。

        renderPagination(indexArr) {
            let template = '';
            // TODO:根据 indexArr 数组生成分页组件的字符串模板 template
            template=indexArr.reduce((prev,next,index)=>{
                if(indexArr[index]-indexArr[index-1]>1){
                    prev+=`
  • ...
  • ` prev+=`
  • ${next}
  • ` }else{ prev+=`
  • ${next}
  • ` } return prev; },'') this.root.innerHTML = ` `; }

    第十题:虚拟滚动列表

    题目要求:只显示滚动到位置的数据,且往上再加载5条,往后再加载5条,优化效果。

    【蓝桥杯Web】第十四届蓝桥杯(Web 应用开发)模拟赛 3 期-职业院校组_第15张图片

    考点:vue、scroll事件

    解题思路:

    ①获取数据,将数据保存到list中,再将整个滚动框的高度给totalHeight。不给的话滚动条就不能被高度撑开后面的也就无法实现了。

    ②绑定滚动事件,计算出当前滚动位置第一个列表项的索引值。为当前的滚动高度除以一个的列表项高度就是有几个列表项,再向下取整。这个值就是当前滚动位置第一个列表项的索引值。

    ③然后为showlist返回当前可视区域的值,使用slice截取list中的相应数据。我们之前已经拿到了滚动条滚动到的第一个位置的值start,所以当start

    开始范围:起始索引

    结束范围:起始索引+列表项可视范围内的个数+buffer

    ④最后设置列表偏移量translateY,不然滚动的时候数据是发生改变了,但位置却永远停留在最上面了。

    
    
    

    结语

    希望本章内容对你有用。如有错误请帮忙及时指出,谢谢。最后,祝各位小伙伴们,在蓝桥杯中取得满意的成绩。

    你可能感兴趣的:(蓝桥杯Web,javascript,前端,jquery,html,蓝桥杯)