123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <view>
- <view @tap.stop="open"><slot></slot></view>
- <view class="gui-dateBT-shade gui-flex gui-columns gui-justify-content-end"
- :style="{zIndex:zIndex, left:show?'0rpx':'-1000rpx'}">
- <view class="gui-bg-white">
- <view class="graceDateTime-header gui-flex gui-rows gui-space-between gui-bg-gray">
- <text class="graceDateTime-header-btn"
- :style="{color:cancelTColor}"
- @tap="close">{{cancelText}}</text>
- <text class="graceDateTime-header-btn"
- :style="{textAlign:'right', color:confirmColor}"
- @tap="confirm">{{confirmText}}</text>
- </view>
- <view>
- <text class="graceDateTimeBT-text gui-block-text">{{titles[0]}}</text>
- </view>
- <!-- 起始时间 -->
- <view style="overflow:hidden;">
- <gui-datetime-bt-base :value="startValue" @change="chang1"
- :isTime="isTime"
- :isSecond="isSecond"
- :isMinute="isMinute"
- :startYear="startYear"
- :endYear="endYear"
- :isDay="isDay"
- :units="units"></gui-datetime-bt-base>
- </view>
- <!-- 结束时间 -->
- <view class="gui-margin-top">
- <text class="graceDateTimeBT-text gui-block-text">{{titles[1]}}</text>
- </view>
- <view style="overflow:hidden;">
- <gui-datetime-bt-base
- :value="endValue"
- :isTime="isTime"
- :isMinute="isMinute"
- @change="chang2"
- :isSecond="isSecond"
- :isDay="isDay"
- :startYear="startYear"
- :endYear="endYear"
- :units="units"></gui-datetime-bt-base>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name : "gui-datetime-between",
- props : {
- cancelText : { type : String, default : '取消' },
- cancelTColor : { type : String, default : '#888888' },
- confirmText : { type : String, default : '确定' },
- confirmColor : { type : String, default : '#008AFF' },
- startValue : { type : String , default : ''},
- endValue : { type : String , default : ''},
- isTime : { type : Boolean, default : true},
- isMinute : { type : Boolean, default : true},
- isSecond : { type : Boolean, default : true},
- startYear : { type : Number, default : 1980},
- endYear : { type : Number, default : 2050},
- units : { type : Array , default : function(){return new Array('年','月','日','时','分','秒')}},
- titles : { type : Array , default : function(){return new Array('开始时间','结束时间')}},
- zIndex : { type : Number, default : 90 },
- isDay : { type : Boolean, default : true }
- },
- data() {
- return {
- indicatorStyle : 'height:35px',
- defaultVal : [0,0,0,0,0,0],
- sDate:[[],[],[],[],[],[]],
- recDate:[[],[]],
- show : false
- }
- },
- methods:{
- open : function () {
- this.show = true;
- },
- close : function () {
- this.show = false;
- },
- confirm : function(){
- this.$emit('confirm', this.recDate);
- this.close();
- },
- chang1 : function(res){
- this.recDate[0] = res;
- },
- chang2 : function(res){
- this.recDate[1] = res;
- },
- }
- }
- </script>
- <style scoped>
- .gui-dateBT-shade{width:750rpx; position:fixed; z-index:99; left:0; top:0; bottom:0; flex:1; overflow:hidden; background-color:rgba(0,0,0,0.5);}
- .graceDateTime-header{padding:25rpx;}
- .graceDateTime-header-btn{width:200rpx; line-height:38rpx; height:38rpx; font-size:28rpx;}
- .graceDateTimeBT-text{padding:15rpx; background-color:#FFFFFF; line-height:80rpx; height:80rpx; color:rgba(69, 90, 100, 0.6); font-size:26rpx;}
- </style>
|