123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- <template>
- <view @touchmove.stop.prevent="" class="time-bg cross-center">
- <view class="time-dialog">
- <view class="dialog-title">筛选时间</view>
- <view class="flex-wrap main-between time-area">
- <view @click="change(item.id)"
- :style="{'color': choose==item.id ? theme.color : '#666','border-color':choose==item.id ? theme.color : '#ddd'}"
- v-for="item in timeType" :key="item.id" class="dialog-choose-item time-area-item">{{item.name}}</view>
- <view class="dialog-choose-item" style='border: 0'></view>
- </view>
- <view class="choose-time" v-if="custom">
- <view class="time-title">起始时间</view>
- <view class="year-1">年</view>
- <view class="month-1">月</view>
- <view class="day-1">日</view>
- <picker-view :value="start" :indicator-style="indicatorStyle" class="picker-view" @change="startChange">
- <picker-view-column v-for="(date,i) in startList" :key="i">
- <view v-for="(item,idx) in date" :key="item"
- :style="{ color: startVal[i] == idx ? theme.color : startVal[i] == idx + 1 || startVal[i] == idx - 1 ? '#999999' : startVal[i] == idx + 2 || startVal[i] == idx - 2 ? '#cdcdcd': '', lineHeight: lineHeight }">{{item}}</view>
- </picker-view-column>
- </picker-view>
- <view class="time-title">结束时间</view>
- <view class="year-2">年</view>
- <view class="month-2">月</view>
- <view class="day-2">日</view>
- <picker-view :value="end" :indicator-style="indicatorStyle" class="picker-view" @change="endChange">
- <picker-view-column v-for="(date,i) in endList" :key="i">
- <view v-for="(item,idx) in date" :key="item"
- :style="{ color: endVal[i] == idx ? theme.color : endVal[i] == idx + 1 || endVal[i] == idx - 1 ? '#999999' : endVal[i] == idx + 2 || endVal[i] == idx - 2 ? '#cdcdcd': '', lineHeight: lineHeight }">{{item}}</view>
- </picker-view-column>
- </picker-view>
- </view>
- <view class="main-center btn-area">
- <view class="submit-btn" @click='cancel' style="color: #666;">取消</view>
- <view class="line"></view>
- <view class="submit-btn" :style="{'color': theme.color}" @click='click'>确认</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const date = new Date()
- const years = []
- const months = [1,2,3,4,5,6,7,8,9,10,11,12]
- const bigDays = []
- const smallDays = []
- const secDays = []
- const otherDays = []
- for (let i = 2017; i <= date.getFullYear(); i++) {
- years.push(i)
- }
- for (let i = 1; i <= 31; i++) {
- bigDays.push(i)
- }
- for (let i = 1; i <= 30; i++) {
- smallDays.push(i)
- }
- for (let i = 1; i <= 28; i++) {
- secDays.push(i)
- }
- for (let i = 1; i <= 29; i++) {
- otherDays.push(i)
- }
-
- export default {
- name: "app-time-screening",
- props: {
- startDate: String,
- endDate: String,
- time: {
- type: Number,
- default() {
- return 0;
- }
- },
- theme: Object,
- },
- data() {
- return {
- timeType: [
- {id:0, name: '汇总'},
- {id:1, name: '今日'},
- {id:2, name: '昨日'},
- {id:3, name: '7日'},
- {id:4, name: '自定义'},
- ],
- lineHeight: '72rpx',
- indicatorStyle: '',
- choose: 0,
- today: '',
- yesterday: '',
- weekday: '',
- date_end: '',
- date_start: '',
- years: years,
- months: months,
- startDays: bigDays,
- endDays: bigDays,
- bigDays: bigDays,
- smallDays: smallDays,
- secDays: secDays,
- otherDays: otherDays,
- start: [],
- end: [],
- startVal: [],
- endVal: [],
- custom: false,
- startList: [],
- endList: [],
- }
- },
- methods: {
- click() {
- let that = this;
- if (that.choose != 4) {
- that.date_start = '';
- that.date_end = that.today + ' 23:59:59';
- switch (that.choose.toString()) {
- case '0':
- that.date_start = '';
- that.date_end = '';
- break;
- case '1':
- that.date_start = that.today;
- break;
- case '2':
- that.date_start = that.yesterday;
- that.date_end = that.yesterday + ' 23:59:59';
- break;
- case '3':
- that.date_start = that.weekday;
- break;
- }
- that.$emit('click', {date_start: that.date_start,date_end: that.date_end,choose:that.choose});
- } else {
- let endTime = that.date_end.substring(0, 10)
- let startTime = that.date_start.substring(0, 10)
- let end = endTime.split("-");
- let start = startTime.split("-");
- if (+end[0] < +start[0]) {
- uni.showToast({
- title: '结束时间不应早于开始时间',
- icon: 'none',
- duration: 1000
- })
- } else if (+end[0] == +start[0]) {
- if (+end[1] < +start[1]) {
- uni.showToast({
- title: '结束时间不应早于开始时间',
- icon: 'none',
- duration: 1000
- })
- } else if (+end[1] == +start[1]) {
- if (+end[2] < +start[2]) {
- uni.showToast({
- title: '结束时间不应早于开始时间',
- icon: 'none',
- duration: 1000
- })
- }else {
- that.$emit('click', {date_start: that.date_start,date_end: that.date_end,choose:that.choose});
- }
- }else {
- that.$emit('click', {date_start: that.date_start,date_end: that.date_end,choose:that.choose});
- }
- }else {
- that.$emit('click', {date_start: that.date_start,date_end: that.date_end,choose:that.choose});
- }
- }
- },
- cancel() {
- this.$emit('cancel');
- },
- change(e) {
- let that = this;
- that.choose = e;
- that.custom = false;
- if (that.choose == 4) {
- that.custom = true;
- that.date_end = that.today;
- that.date_start = that.today + ' 00:00:00';
- }
- },
- startChange: function(e) {
- const val = e.detail.value;
- this.startVal = e.detail.value;
- let years = this.years;
- let year = this.years[val[0]];
- let month = this.months[val[1]];
- if(month == 2) {
- if(year%4 == 0 && year %400 != 0) {
- this.startDays = this.otherDays
- }else {
- this.startDays = this.secDays
- }
- }else if((month < 8 && month%2 == 1) || (month > 7 && month%2 == 0)) {
- this.startDays = this.bigDays
- }else {
- this.startDays = this.smallDays
- }
- let day = this.startDays[val[2]];
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- if (day >= 1 && day <= 9) {
- day = "0" + day;
- }
- this.date_start = year + '-' + month + '-' + day;
- this.startList = [this.years,this.months,this.startDays];
- },
- endChange: function(e) {
- const val = e.detail.value;
- this.endVal = e.detail.value;
- let year = this.years[val[0]];
- let month = this.months[val[1]];
- if(month == 2) {
- if(year%4 == 0 && year %400 != 0) {
- this.endDays = this.otherDays
- }else {
- this.endDays = this.secDays
- }
- }else if((month < 8 && month%2 == 1) || (month > 7 && month%2 == 0)) {
- this.endDays = this.bigDays
- }else {
- this.endDays = this.smallDays
- }
- let day = this.endDays[val[2]];
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- if (day >= 1 && day <= 9) {
- day = "0" + day;
- }
- this.date_end = year + '-' + month + '-' + day + " 23:59:59";
- this.endList = [this.years,this.months,this.endDays];
- },
- },
- created() {
- let that = this;
- let screenWidth = uni.getSystemInfoSync().windowWidth;
- let p = 375 / screenWidth;
- this.lineHeight = 72*p + 'rpx'
- that.choose = that.time;
- if(that.choose == 4) {
- that.custom = true
- }
- that.date_start = that.startDate;
- that.date_end = that.endDate;
- that.indicatorStyle = 'height: 36px;font-size:14px;';
- var myDate = new Date();
- // 今天
- let year = myDate.getFullYear();
- let month = myDate.getMonth() + 1;
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- let now = myDate.getDate();
- that.today = year + "-" + month + "-" + now;
- let timestamp = Date.parse(new Date());
- // 昨天
- let yesterTime = (timestamp / 1000 - 24 * 60 * 60) * 1000;
- let yesterDate = new Date(yesterTime)
- let yester_year = yesterDate.getFullYear();
- let yester_month = yesterDate.getMonth() + 1;
- if (yester_month >= 1 && yester_month <= 9) {
- yester_month = "0" + yester_month;
- }
- let yester_now = yesterDate.getDate();
- that.yesterday = yester_year + "-" + yester_month + "-" + yester_now;
- // 7天
- let weekTime = (timestamp / 1000 - 24 * 60 * 60 * 7) * 1000;
- let weekDate = new Date(weekTime)
- let week_year = weekDate.getFullYear();
- let week_month = weekDate.getMonth() + 1;
- if (week_month >= 1 && week_month <= 9) {
- week_month = "0" + week_month;
- }
- let week_now = weekDate.getDate();
- that.weekday = week_year + "-" + week_month + "-" + week_now;
- that.start = [];
- that.end = [];
- let startDay = that.date_start ? that.date_start : that.today
- let endDay = that.date_end ? that.date_end : that.today;
- for(let i in that.years) {
- if (startDay.substring(0, 4) == that.years[i]) {
- that.start[0] = +i
- }
- }
- for(let i in that.months) {
- if (startDay.substring(5, 7) == that.months[i]) {
- that.start[1] = +i
- }
- }
- let startMonth = +that.start[1] + 1;
- if(startMonth == 2) {
- if(year%4 == 0 && year %400 != 0) {
- that.startDays = that.otherDays
- }else {
- that.startDays = that.secDays
- }
- }else if((startMonth < 8 && startMonth%2 == 1) || (startMonth > 7 && startMonth%2 == 0)) {
- that.startDays = that.bigDays
- }else {
- that.startDays = that.smallDays
- }
- for(let i in that.startDays) {
- if (startDay.substring(8, 10) == that.startDays[i]) {
- that.start[2] = +i
- }
- }
- that.startVal = that.start;
- if (that.date_end) {
- endDay = that.date_end
- }
- for(let i in that.years) {
- if (endDay.substring(0, 4) == that.years[i]) {
- that.end[0] = +i
- }
- }
- for(let i in that.months) {
- if (endDay.substring(5, 7) == that.months[i]) {
- that.end[1] = +i
- }
- }
- let endMonth = +that.end[1] + 1;
- if(endMonth == 2) {
- if(year%4 == 0 && year%400 != 0) {
- that.endDay = that.otherDays
- }else {
- that.endDay = that.secDays
- }
- }else if((endMonth < 8 && endMonth%2 == 1) || (endMonth > 7 && endMonth%2 == 0)) {
- that.endDays = that.bigDays
- }else {
- that.endDays = that.smallDays
- }
- for(let i in that.endDays) {
- if (endDay.substring(8, 10) == that.endDays[i]) {
- that.end[2] = +i
- }
- }
- that.endVal = that.end;
- that.startList = [that.years,that.months,that.startDays];
- that.endList = [that.years,that.months,that.endDays];
- },
- }
- </script>
- <style scoped lang="scss">
- .time-bg {
- background-color: rgba(0, 0, 0, 0.3);
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- z-index: 100;
- .time-dialog {
- width: #{620rpx};
- border-radius: #{16rpx};
- margin: 0 auto;
- background-color: #fff;
- z-index: 20;
- .dialog-title {
- font-size: #{32rpx};
- color: #353535;
- width: #{620rpx};
- margin: #{32rpx} auto #{40rpx};
- text-align: center;
- }
- .time-area {
- margin-bottom: #{24rpx};
- padding: 0 #{32rpx};
- .dialog-choose-item {
- width: #{170rpx};
- height: #{68rpx};
- line-height: #{68rpx};
- text-align: center;
- border-radius: #{34rpx};
- border: #{2rpx} solid;
- font-size: #{28rpx};
- margin-bottom: #{16rpx};
- &.time-area-item {
- border-color: #ddd;
- color: #666;
- }
- }
- }
- .choose-time {
- position: relative;
- .time-title {
- margin-left: #{32rpx};
- color: #666;
- font-size: #{28rpx};
- margin-bottom: #{20rpx};
- }
- .year-1 {
- position: absolute;
- left: #{192rpx};
- top: #{146rpx};
- }
- .month-1 {
- position: absolute;
- left: #{380rpx};
- top: #{146rpx};
- }
- .day-1 {
- position: absolute;
- right: #{32rpx};
- top: #{146rpx};
- }
- .year-2 {
- position: absolute;
- left: #{192rpx};
- bottom: #{88rpx};
- }
- .month-2 {
- position: absolute;
- left: #{380rpx};
- bottom: #{88rpx};
- }
- .day-2 {
- position: absolute;
- right: #{32rpx};
- bottom: #{88rpx};
- }
- .picker-view {
- width: #{556rpx};
- height: #{216rpx};
- margin: 0 auto #{20rpx};
- text-align: center;
- view {
- line-height: #{72rpx};
- }
- }
- }
- .btn-area {
- height: #{88rpx};
- position: relative;
- border-top: #{2rpx} solid #e2e2e2;
- &.other-btn-area {
- margin-top: #{10rpx};
- }
- .line {
- height: #{32rpx};
- width: #{1rpx};
- background-color: #e2e2e2;
- position: absolute;
- top: #{28rpx};
- left: 0;
- right: 0;
- margin: 0 auto;
- }
- .submit-btn {
- height: #{88rpx};
- line-height: #{88rpx};
- font-size: #{32rpx};
- width: #{310rpx};
- text-align: center;
- }
- }
- }
- }
- </style>
|