• 2021年6月12日 团队第二阶段冲刺09


    今天完成了一些页面设计,明天总结一下。

    <template>
      <div>
        <div class="movie-item" v-if="movieList.length" v-for="(item,index) in movieList" :key="index">
          <img :src="server+item.poster" alt="" @click="$router.push({path:'/movie_detail',query:{movie_id:item.movie_id}})">
          <div class="info">
            <div class="name" @click="$router.push({path:'/movie_detail',query:{movie_id:item.movie_id}})">{{item.name}}</div>
            <div v-if="new Date()-new Date(item.public_date)>=0">
              <div class="descInfo" v-if="item.score">评分:<span class="number">{{item.score.toFixed(1)}}</span></div>
              <div class="descInfo" v-else>暂无评分</div>
            </div>
            <div v-else>
              <div class="descInfo" v-if="item.wish_num">想看:<span class="number">{{item.wish_num}}</span>人想看</div>
              <div class="descInfo" v-else>暂无想看</div>
            </div>
            <div class="descInfo">类型:{{item.type}}</div>
            <div class="descInfo ellipsis">主演:<span>{{item.actor}}</span></div>
          </div>
          <span class="buy" :class="{pre_sell: new Date(item.public_date)-new Date()>0}" @click="$router.push({path:'/select_cinema',query:{movie_id:item.movie_id}})">{{new Date(item.public_date)-new Date()>0?'预售':'购票'}}</span>
        </div>
      </div>
    </template>
    
    <script>
        export default {
            name: "MovieItem",
            data(){
              return{
                //服务器地址
                server:'http://localhost:3000',
              }
            },
            props: {
              movieList: {
                type: Array,
                require: true,
                default: []
              }
            }
        }
    </script>
    
    <style scoped lang="stylus" ref="stylesheet/stylus">
      .movie-item
        display flex
        justify-content space-around
        align-items center
        padding .2rem 0
        img
          display inline-block
          width 20%
        .info
          width 68%
          display flex
          flex-flow column
          padding .25rem
          font-size .28rem
          color #9d9d9d
          .name
            font-weight 700
            font-size .345rem
            padding-bottom .2rem
            color #333
          .descInfo
            padding-bottom .12rem
            .number
              color #ffb400
              font-family PingFangSC-Regular,Hiragino Sans GB,sans-serif
              font-weight 700
              font-size .315rem
        .buy
          background-color #dd2727
          border-radius .08rem
          font-size .25rem
          color #fff
          width 12%
          padding .16rem .12rem
          text-align center
        .pre_sell
          background-color #2d98f3
    </style>
    <template>
        <div id="date_picker" v-show="showPickerModel">
          <div class="dp_container">
            <div class="dp_header">
              <div class="dp_current_year" :class="{'active':changeContentFlag}" @click="showYearPicker()" >{{this.currentYear}}年</div>
              <div class="dp_current_date" :class="{'active':!changeContentFlag}" @click="showDatePicker()" >{{this.currentMonth+1}}月{{this.currentDay}}日周{{this.week}}</div>
            </div>
            <div class="dp_content">
              <div class="dp_date_content" v-show="!changeContentFlag">
                <div class="dp_switch_month">
                  <span class="dp_left dp_arrow" :class="{'dp_arrow_hide':this.startDate-new Date(this.year,this.month,1)>=0}" @click="preMonth"></span>
                  <span class="dp_current_month">{{this.year}}年{{this.month+1}}月</span>
                  <span class="dp_right dp_arrow" :class="{'dp_arrow_hide':this.endDate-new Date(this.year,this.month+1,1)<=0}" @click="nextMonth"></span>
                </div>
                <div class="dp_weeks">
                  <span class="dp_week" v-for="(item,index) in weeks" :key="index">{{item}}</span>
                </div>
                <div class="dp_pick_day">
                  <span class="dp_day" :class="{'active':(item==currentDay&&month==currentMonth)&&!dayIsDisable(item),'dp_day_disable':dayIsDisable(item)}" v-for="(item,index) in days" :key="index" @click="handleClickDay(item)">{{item?item:' '}}</span>
                </div>
              </div>
              <div class="dp_year_content" v-show="changeContentFlag">
                <ul ref="dp_year_list">
                  <li v-for="(item,index) in years" :key="index" :class="{'active':item==currentYear}" @click="handleClickYear(item)">{{item}}</li>
                </ul>
              </div>
            </div>
            <div class="dp_operate_button">
              <button class="dp_cancel_button dp_button" @click="handleCancel">取消</button>
              <button class="dp_sure_button dp_button" @click="handleConfirm">确认</button>
            </div>
          </div>
        </div>
    </template>
    
    <script>
        export default {
            name: "DatePicker",
            props:{
              showPickerModel:{
                type:Boolean,
                default:false
              },
              defaultDate:{
                type: Date,
                default:()=>{return new Date()}
              },
              startDate:{
                type: Date,
                default: ()=>{return new Date('1900-1-1')}
              },
              endDate:{
                type: Date,
                default: ()=>{return new Date()}
              },
              disableDate:{
                type:Function
              }
            },
            created(){
              if (this.showPickerModel&&this.defaultDate){ //保证刷新,数据不丢失
                this.initDate(this.defaultDate); //初始化日期
              }
            },
            data(){
              return{
                weeks:['一','二','三','四','五','六','日'],
                days:[],
                years:[],
                monthLastDay:[31,28,31,30,31,30,31,31,30,31,30,31],
                year:null,
                currentYear:null,
                month:null,
                currentMonth:null,
                day:null,
                currentDay:null,
                week:null,
                changeContentFlag:false
              }
            },
            watch:{
              showPickerModel(newVal,oldVal){ //监测showPickerModel的变动
                if (newVal){ //showPickerModel由false变为true
                  if (this.defaultDate>=this.startDate&&this.defaultDate<=this.endDate){ //默认时间在起止时间之内
                    this.initDate(this.defaultDate); //初始化
                  } else {
                    this.$emit('cancel');//触发取消事件
                  }
                }
              }
            },
            methods:{
              handleCancel(){ //处理取消点击
                this.changeContentFlag = false; //关闭年份选择面板
                this.$emit('cancel'); //触发取消事件
              },
              handleConfirm(){ //处理确认点击
                this.changeContentFlag = false; //关闭年份选择面板
                this.$emit('confirm',this.currentYear+'-'+(this.currentMonth+1)+'-'+this.currentDay); //触发确认事件,参数为选择的日期,如2019-7-7
              },
              initDate(defaultDate){ //初始化日期
                this.currentYear = this.year = defaultDate.getFullYear(); //
                this.currentMonth = this.month = defaultDate.getMonth(); //
                this.currentDay = this.day = defaultDate.getDate();//
                this.week = this.weeks[(defaultDate.getDay()==0?7:defaultDate.getDay())-1]; //
                this.years = [];
                for (let i=0;i<=this.endDate.getFullYear()-this.startDate.getFullYear();i++){
                  this.years.push(Number(this.startDate.getFullYear())+i); //初始化年份列表
                }
                this.updateDate(this.year,this.month); //根据年月更新日期
              },
              updateDate(year,month){ //根据年月更新日期
                this.monthLastDay[1]=28;//平年
                if(year%4==0&&year%100!=0||year%400==0){ //闰年
                  this.monthLastDay[1]=29; //2月有29天
                }
                let firstDay = new Date(year,month,1).getDay(); //根据年月获取第一天是周几
                if (firstDay==0){ //如果为周日,则置7
                  firstDay=7;
                }
                this.days = [];
                for (let i=1;i<firstDay;i++) {
                  this.days.push(0); //往第一天前面补0,如第一天周二,则需前面补2个0
                }
                for (let j=1;j<=this.monthLastDay[month];j++){
                  this.days.push(j); //补完0后,根据该月最大的天数,从累加,如1,2,3...
                }
              },
              preMonth(){ //上一个月
                if (this.month==0){ //如果当前月为第一个月,年份减一,月份置十二
                  this.year = this.year-1;
                  this.month = 11;
                }else{
                  this.month--;
                }
                this.updateDate(this.year,this.month) //根据年月更新日期
              },
              nextMonth(){ //下一个月
                if (this.month==11){ //如果当前月为最后一个月,年份加一,月份置一
                  this.year = this.year+1;
                  this.month = 0;
                }else{
                  this.month++;
                }
                this.updateDate(this.year,this.month) //根据年月更新日期
              },
              handleClickDay(item){ //处理日期点击事件
                if(this.startDate>new Date(this.year,this.month,item)||this.endDate<new Date(this.year,this.month,item)||item==0){
                  return; //不在指定范围的,属于禁用的日期不做点击处理
                }
                if(typeof this.disableDate == 'function'&&this.disableDate(this.year+'-'+(this.month+1)+'-'+item)){ ////禁用函数存在,符合禁用规则
                  return;
                }
                this.currentYear = this.year; //更新到当前点击日期
                this.currentMonth = this.month;
                this.currentDay = this.day = item;
                let date = new Date(this.currentYear,this.currentMonth,this.currentDay);
                this.week = this.weeks[(date.getDay()==0?7:date.getDay())-1]; //获取更新日期周
              },
              handleClickYear(item){ //处理年份点击事件
                if(new Date(item,this.month,this.day)<this.startDate){ //超出最小可选日期,置为最小日期
                  this.year = this.currentYear = this.startDate.getFullYear();
                  this.month = this.currentMonth = this.startDate.getMonth();
                  this.day = this.currentDay = this.startDate.getDate();
                  this.week = this.weeks[(this.startDate.getDay()==0?7:this.startDate.getDay())-1];
                } else if(new Date(item,this.month,this.day)>this.endDate){ //超出最大可选日期,置为最大日期
                  this.year = this.currentYear = this.endDate.getFullYear();
                  this.month = this.currentMonth = this.endDate.getMonth();
                  this.day = this.currentDay = this.endDate.getDate();
                  this.week = this.weeks[(this.endDate.getDay()==0?7:this.endDate.getDay())-1];
                } else{ //更新到当前点击日期
                  if(typeof this.disableDate == 'function'&&this.disableDate(item+'-'+(this.currentMonth+1)+'-'+this.day)){ //禁用函数存在,符合禁用规则
                    this.year = item; //更新切换面板年月
                    this.updateDate(this.year,this.month); //根据年月更新日期
                    this.changeContentFlag = false;//关闭年份选择面板
                    return;
                  }
                  if(!(item%4==0&&item%100!=0||item%400==0)&&this.currentMonth==1&&this.currentDay==29){ //从闰年2月29日到平年
                    this.year = item; //更新切换面板年月
                    this.updateDate(this.year,this.month); //根据年月更新日期
                    this.changeContentFlag = false;//关闭年份选择面板
                    return;
                  }
                  this.year = this.currentYear = item;
                  this.month = this.currentMonth;
                  this.day = this.currentDay; //更新切换面板年月日
                  let date = new Date(this.year,this.month,this.day)
                  this.week = this.weeks[(date.getDay()==0?7:date.getDay())-1];
                }
                this.updateDate(this.year,this.month); //根据年月更新日期
                this.changeContentFlag = false; //关闭年份选择面板
              },
              showDatePicker(){ //显示选择日期面板
                if(this.changeContentFlag){
                  this.changeContentFlag = false;
                }
              },
              showYearPicker(){ //显示选择年份面板
                if(!this.changeContentFlag){
                  this.changeContentFlag = true;
                  let scrollYearListY; //年份列表Y轴上滚动距离
                  this.$nextTick(() => { //使用nextTick为了保证dom元素都已经渲染完毕
                    scrollYearListY = (this.currentYear-this.startDate.getFullYear()-2)*this.$refs.dp_year_list.firstElementChild.offsetHeight;
                    scrollYearListY = scrollYearListY<0?0:scrollYearListY;
                    this.$refs.dp_year_list.scrollTop = scrollYearListY;
                  });
                }
              },
              dayIsDisable(item){ //禁用日期,返回true为禁用
                if(item==0){
                  return false;
                }
                if(this.startDate-new Date(this.year+'-'+(this.month+1)+'-'+item)>0||new Date(this.year+'-'+(this.month+1)+'-'+item)-this.endDate>0){ //日期不在起止日期范围禁用
                  return true;
                } else if(this.disableDate && typeof this.disableDate == 'function'){ //禁用函数存在,符合函数规则,禁用
                  if(this.disableDate(this.year+'-'+(this.month+1)+'-'+item))
                    return true;
                }
                return false;
              },
            }
        }
    </script>
    
    <style>
        #date_picker{
          position: fixed;
          top: 0;
          left: 0;
          bottom: 0;
           100%;
          height: 100%;
          background-color: rgba(0,0,0,.5);
          display: flex;
          justify-content: center;
          align-items: center;
        }
        .dp_container{
           80%;
          height: 10rem;
          background-color: #fff;
        }
        .dp_header{
          height: 2rem;
          background-color: #dd2727;
          box-sizing: border-box;
          color: #eee;
          padding: .4rem .6rem;
        }
        .dp_current_year{
          font-size: .3125rem;
          margin-bottom: .2rem;
        }
        .dp_current_date{
          font-size: .6125rem;
        }
        .dp_current_year.active, .dp_current_date.active{
          color: #fff;
        }
        .dp_content{
           100%;
          height: 6.8rem;
          background: #fff;
        }
        .dp_date_content{
           100%;
          height: 100%;
          box-sizing: border-box;
          padding: 0 .6rem .4rem;
        }
        .dp_switch_month{
          display:flex;
          justify-content: space-between;
          align-items: center;
          height: 1.2rem;
          font-weight: 500;
          font-size: .3125rem;
        }
        .dp_arrow{
          display: inline-block;
           .16rem;
          height: .16rem;
          border-top: .04rem solid #000;
          border-left: .04rem solid #000;
        }
        .dp_left{
          transform:rotate(-45deg);
        }
        .dp_right{
          transform:rotate(135deg);
        }
        .dp_arrow_hide{
          visibility: hidden;
        }
        .dp_weeks{
           100%;
          display: flex;
          align-items: center;
          font-size: .24rem;
          color: #888;
        }
        .dp_week{
           14.2%;
          height: .8rem;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        .dp_pick_day{
          font-size: .24rem;
           100%;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
        }
        .dp_day{
           14.2%;
          height: .8rem;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        .dp_day.active{
           14.2%;
          background-color: #dd2727;
          border-radius: 50%;
          color: #fff;
        }
        .dp_day_disable{
          background-color: #f5f7fa;
          cursor: not-allowed;
          color: #c0c4cc;
        }
        .dp_year_content{
           100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          border-bottom: .02rem solid #eee;
        }
        .dp_year_content ul{
           100%;
          height: 100%;
          overflow: scroll;
          font-size: .3125rem;
        }
        .dp_year_content ul li{
          padding: .4rem 0;
          height: 1rem;
          text-align: center;
          box-sizing: border-box;
        }
        .dp_year_content ul li.active{
          font-size: .465rem;
          color: #dd2727;
        }
        .dp_operate_button{
          margin: 0 .6rem;
          height: 1.2rem;
          display: flex;
          justify-content: flex-end;
          align-items: center;
        }
        .dp_button{
          border: none;
          outline: none;
          color: #dd2727;
          background-color: #fff;
          font-weight: 500;
        }
        .dp_cancel_button{
          margin-right: .4rem;
        }
    </style>
  • 相关阅读:
    linux 6.9 补丁修补漏洞
    更改交换分区
    MariaDB Windows 安装
    关于Oracle内存分配-解决实际运行时最大Session数不一致远小于系统配置最大的Session数目
    Angular 相关概念
    实用工具推荐
    DDD目录结构
    全局异常处理区分返回响应类型是页面还是JSON
    Lambda学习总结(三)--方法引用
    Lambda学习总结(二)--Stream流
  • 原文地址:https://www.cnblogs.com/j-y-s/p/14903408.html
Copyright © 2020-2023  润新知