1. 程式人生 > 程式設計 >vue實現價格日曆效果

vue實現價格日曆效果

本文例項為大家分享了vue實現價格日曆效果的具體程式碼,供大家參考,具體內容如下

1、效果圖

vue實現價格日曆效果

2、下載全域性安裝:npm install ele-calendar

3、在components下新建檔案calendar.vue,內容:

<template>
  <div style="width:600px">
    <ele-calendar
      :render-content="renderContent"
      :data="datedef"
      :prop="prop"
      :disabledDate="disabledDate"
      :effectiveTimeLimit="effectiveTimeLimit"
      :defaultValue="defaultValue"
    >
    </ele-calendar>
  </div>
</template>

<script>
import eleCalendar from 'ele-calendar'
import 'ele-calendar/dist/vue-calendar.
css
' export default { props: { datedef: { type: Array,default: () => { return [] } },defaultPrice: { type: String,default: () => { return '' } },ef程式設計客棧fectiveTimeLimit: { type: String,defaultValue: { type: Date,default: () => { return new Date() } } },data () { const self = this return { prop: 'date',// 對應日期欄位名 disabledDate: date => { return ( date.valueOf() < new Date().valueOf() - 1 * 24 * 60 * 60 * 1000 || date.valueOf() > new Date(self.effectiveTimeLimit).valu
程式設計客棧
eOf() ) } } },compwww.cppcns.comonents: { eleCalendar },methods: { // jsX語法 renderContent (h,parmas) { const self = this const loop = data => { return ( <div class={data.defvalue.value ? 'active' : ''}> <div>{data.defvalue.text}</div> <div> ¥ <i-input value={ data.defvalue.value.content ? data.defvalue.value.content : self.defaultPrice } on-on-blur={event => self.handleChange( event,data.defvalue.value ? data.defvalue.value.date : self.handleDate(data.defdate) ) } disabled={ data.defvalue.value ? new Date(data.defvalue.value.date).valueOf() < new Date().valueOf() - 1 * 24 * 60 * 60 * 1000 || new Date(data.defvalue.value.date).valueOf() > new Date(self.effectiveTimeLimit).valueOf() : data.defdate.valueOf() < new Date().valueOf() - 1 * 24 * 60 * 60 * 1000 || data.defdate.valueOf() > new Date(self.effectiveTimeLimit).valueOf() } key={ data.defvalue.value ? data.defvalue.value.date : self.handleDate(data.defdate) } /> </div> </div> ) } return <div style='min-height:60px;'>{loop(parmas)}</div> },handleChange (event,date) { console.log(event,date,'dddddd') const self = this const index = self.datedef.findIndex(item => { return item.date === date }) if (isNaN(event.target.value)) { self.$Message.error('請輸入正確的價格') event.target.value = self.defaultPrice return } if (event.target.value && index === -1) { if (event.target.value === self.defaultPrice) { return } self.datedef.push({ date,content: event.target.value,cid: null
程式設計客棧
}) console.log('self.datedef',self.datedef) this.$emit('aaa',self.datedef) } else if (event.target.value && index !== -1) { if (event.target.value === self.defaultPrice) { self.datedef.splice(index,1) return } const selectItem = self.datedef[index] selectItem.content = event.target.value self.datedef.splice(index,1,selectItem) } else if (!event.target.value && index !== -1) { self.datedef.splice(index,1) } else { event.target.value =VHTZbLld self.defaultPrice } },handleDate (date) { const year = date.getFullYear() let month = date.getMonth() + 1 month = month >= 10 ? month : '0' + month let idate = date.getDate() idate = idate >= 10 ? idate : '0' + idate return `${year}-${month}-${idate}` } } } </script> <style lang="scss"> .el-picker-panel-calendar.el-date-picker-calendar.el-popper { box-shadow: none; } .el-date-table-calendar td > div > div { border: 1px solid #aaa; color: #fff; margin: 5px; & > div:first-child { background-color: #aaa; } & > div:nth-child(2) { padding: 5px; color: #000; .ivu-input-wrapper { width: 80%; } } &.active { border: 1px solid #2ab561; & > div:first-child { background-color: #2ab561; } & > div:nth-child(2) { padding: 5px; color: #000; .ivu-input-wrapper { width: 80%; } } } } // 這段如果放開的話當天之前的所有框置灰 // .el-date-table-calendar td.disabled > div > div { // border: 1px solid #aaa; // color: #fff; // margin: 5px; // & > div:first-child { // background-color: #aaa; // } // & > div:nth-child(2) { // padding: 5px; // color: #000; // .ivu-input-wrapper { // width: 80%; // } // } // } .el-date-table-calendar td.available:hover { color: #000; } .el-date-table-calendar td.available.today { color: #000; font-weight: normal; } .el-date-table-calendar tr td.current.available:not(.disabled) { background-color: #fff; } </style>

4、頁面引入註冊

<script>
 import calendar from '../../components/calendar'
 export default {
    components: { calendar}
  }
  data() {
    return {
      effectiveTimeLimit: '',ruleForm: {
        price: '',configPriceList: []
      }
      },rules: {
      }
 }
    }
</script>

5、html

我是寫在dialog中的

<el-form-item label="價格設定" prop="calendarPrice">
 <calendar
 :datedef="ruleForm.configPriceList"
 :default-price="ruleForm.price"
 :effectiveTimeLimit="effectiveTimeLimit"
 ></calendar>
</el-form-item>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。