1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
| <template> <u-popup :show="show" mode="bottom" :round="10" @close="close" closeable> <div class="Title">选择送达时间</div> <div class="Time"> <div class="Time_YMD"> <u-list @scrolltolower="scrolltolowerYMD" height="100%"> <u-list-item> <p class="YMD_p">YMDtime</p> </u-list-item> </u-list> </div> <div class="Time_HMS"> <u-list @scrolltolower="scrolltolowerHMS" height="100%"> <u-list-item v-for="(val ,ind) in timeArray"> <div class="HMS_li" @click="onHMSLi(val)">val</div> </u-list-item> </u-list> </div> </div> </u-popup> </template>
<script> export default { data() { return { show: false, YMDtime: "", timeArray: [], HMSindex:null, } }, methods: { scrolltolowerYMD() {}, scrolltolowerHMS() {}, calculation(star, interval) { let Home = star.split(':')[0] let front = Number(Home) let after = Number(front) + 1 for (let i = Home; i < 24*Number(interval); i++) { this.timeArray.push(front + ':00 - ' + after + ':00') front = front + 1 after = front + 1 } }, timestamp(star, date) { let newHMS = Number(star) + (24 * 60 * 60 * 1000) * Number(date) let time = new Date(newHMS) let Y = time.getFullYear() + '年' let M = (time.getMonth() + 1 < 10 ? '0' + (time.getMonth() + 1) : time.getMonth() + 1) + '月' let D = (time.getDate() < 10 ? '0' + time.getDate() : time.getDate()) + '日' return Y + M + D }, onHMSLi(val){ this.show = false }, close(){ this.show = false } }, mounted() { var myDate = new Date(); myDate.getTime(); this.YMDtime = this.timestamp(myDate.getTime(), 1) var mytime = myDate.toLocaleTimeString(); this.calculation("00:00:00", 1) } } </script>
<style lang="scss" scoped> .Title { text-align: center; padding: 40rpx; border-bottom: 1px solid #f4f4f4; }
.Time { display: flex; justify-content: space-between; background-color: #e7e7e7; .Time_YMD, .Time_HMS { height: 50vh; } .Time_YMD{width: 40vw;} .Time_HMS{width: 60vw;} .YMD_p{ font-size: 14px; background-color: #fff; padding: 15px 10px; text-align: center; color: #5AAF76; font-weight: 600; } .HMS_li{ font-size: 14px; border-bottom: 1px solid #eaeaea; background-color: #fff; padding:15px 10px; } } </style>
|