微信小程序 选择学期控件 自定义datePicker组件 不复杂

我的时间选择组件在common文件夹里

datePicker组件代码

html:
<view class="date_bg_view">
</view>
<view class="date_content"><view class="date_title"><image src="/image/icon_close_black.png" class="close" bindtap="onClose"></image><text class="date_title_txt">选择时间</text></view><view class="line"></view><!-- 快速选择 --><view class="date_quick_choose"><text class="date_quick_txt">快速选择</text><view class="date_quick_show"><view class="{{item.flag ? 'quick_cell_flag' : 'quick_cell'}}" wx:for="{{dateList}}" wx:key="id" bindtap="handleQuickChoose" data-index="{{index}}">{{item.name}}</view></view></view><!-- 自定义时间 --><view class="date_quick_choose"><text class="date_quick_txt">自定义时间</text><view class="date_picker"><picker mode="date" value="{{startDate}}" start="2015-09-01" end="2999-12-31" bindchange="bindDateChange" data-type="1"  mask-style=" color='#0A3E79'"><view class="picker">{{startDate?startDate:'开始时间'}}</view></picker> <text style="width: 20rpx;height: 1rpx;background-color: #999;"></text><picker mode="date" value="{{endDate}}" start="2015-09-01" end="2999-12-31" bindchange="bindDateChange"  data-type="2"><view class="picker">{{endDate?endDate:'结束时间'}}</view></picker></view></view><button class="sure_btn" bindtap="handleSure"> 确定 </button>
</view>css:
.date_bg_view{position: absolute;top: 0;left: 0;z-index: 10;width: 100%;height: 100%;background-color: #000;opacity: 0.3;  
}
.date_content{  position: fixed;bottom: 0;  left: 0;  z-index: 11;display: flex;flex-direction: column;justify-content: flex-start;align-items: flex-start;width: 100%;height: 75%;background-color: #fff;      border-top-left-radius: 20rpx;border-top-right-radius: 20rpx;
}
.date_title{z-index: 11;width: 100%;display: flex;justify-content: center;height: 90rpx;line-height: 90rpx;
}
.close{  position: absolute;top: 20rpx;right: 20rpx;width: 30rpx;height: 30rpx;
}
.date_title_txt{font-size: 35rpx;font-weight: bold;
}
.line{margin: 10rpx;width: 100%;  height: 1rpx;background-color: #eee;
}
.date_quick_choose{z-index: 11;padding: 20rpx;width: 100%;  
}
.date_quick_txt{z-index: 12;margin: 20rpx;    font-size: 30rpx;color: #666;  
}
.date_quick_show{z-index: 12;  display: flex;justify-content: flex-start;flex-wrap: wrap;flex-direction: row;align-items: center;  width: 100%;  
}
.quick_cell{z-index: 12;margin: 2%;padding: 5rpx;width: 29%;  height: 60rpx;text-align: center;line-height: 60rpx;      font-size: 28rpx;background-color: #F7F7F7;color: #999;border: 1rpx solid #F7F7F7;border-radius: 10rpx;
}
.quick_cell_flag{z-index: 12;margin: 2%;padding: 5rpx;width: 29%;  height: 60rpx;line-height: 60rpx;font-size: 28rpx;text-align: center;      background-color: #fff;color: #19b2ff;border: 1rpx solid #19b2ff;border-radius: 10rpx;
}
.date_picker{  margin-top: 30rpx;margin-left: 10%;display: flex;    justify-content: space-between;align-items: center;width: 80%;
}
.picker{  padding: 10rpx 40rpx;background-color: #fff;font-size: 30rpx;color: #19b2ff;font-weight: bold;
}
.sure_btn{margin-top: 80rpx;  font-size: 28rpx;width: 90%;    height: 80rpx;text-align: center;line-height: 80rpx;background-color: #19b2ff;color: #fff;  
}js:const util = require('../../utils/util.js');
import {formatDate
} from "../../utils/date";
const app = getApp();
Component({lifetimes: {attached: function () {// 在组件实例进入页面节点树时执行var currentDate = new Date();// 获取当前年份和月份var currentYear = currentDate.getFullYear();// 计算五年内的上学期和下学期var semesters = [];for (var i = 0; i < 5; i++) {var years = currentYear - i;semesters.push({name: years + '下半学年',dates: [years + '-09-01', (years + 1) + '-01-31'],flag: false});     semesters.push({name: years + '上半学年',dates: [years + '-02-01', years + '-06-30'],flag: false});        }// 输出结果this.setData({dateList: semesters})},},properties: {},/*** 组件的初始数据*/data: {dateList: [],startDate: '',endDate: '',currentTime: formatDate(new Date()),oidx: null,},methods: {/*** 快速选择* @param {*} e */handleQuickChoose(e) {let that = this;let oidx = e.currentTarget.dataset.index;let odateList = that.data.dateList// 遍历数组,并修改flag属性为falseodateList.forEach(item => {item.flag = false;});odateList[oidx].flag = truethat.setData({startDate: odateList[oidx].dates[0],endDate: odateList[oidx].dates[1],oidx,dateList: odateList})      },bindDateChange(e) {//console.log('picker发送选择改变,携带值为', e)let that = this;let type = e.currentTarget.dataset.typeif (type == 1) {that.setData({startDate: e.detail.value})} else {that.setData({endDate: e.detail.value})}},/*** 顶部关闭按钮*/onClose() {this.triggerEvent('sync', {show: false})},/*** 确定*/handleSure() {let that = this;if (!that.data.startDate || !that.data.endDate) {util.alert('学期选择不能为空!');return false;}if (that.data.startDate <= that.data.endDate) {that.triggerEvent('sync', {show: false,startDate: that.data.startDate,endDate: that.data.endDate})} else {util.alert('结束时间不能小于开始时间');return false;}}},})json:
{"component": true,"usingComponents": {}
}

调用的页面:

json:
"usingComponents": {"datePicker":"../../common/datePicker/index"
},html:<view class="check-list"><view class="check-list-lef">学期选择</view><view class="check-list-rig"><view class="picker" bind:tap="openDatePicker">{{ startDate && endDate ? (startDate + ' - ' + endDate) : '请选择学期'}}</view><!-- 时间选择组件 bind:sync 子类回传数据的方法--><datePicker wx:if="{{show}}" bind:sync="syncGetDate"></datePicker>                    </view></view>js:
data:{startDate: '',endDate: '',show: false,//显示隐藏时间控件
}openDatePicker(e) {this.setData({hiddenChart: true,show:true})},syncGetDate(e){let that = this;let show = e.detail.show; if(!show){ // 子组件点击了关闭   关闭弹窗that.setData({show:false,startDate: e.detail.startDate,endDate: e.detail.endDate,//hiddenChart: false,})}//console.log("子组件:",e);    //this.getStatisticThemeActivitiesTrend()},

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/122033.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

亲测有效:虚拟机安装gcc,报错Could not retrieve mirrorlist http://mirrorlist.centos.org

&#xff08;网卡配置资料&#xff09; 原因&#xff1a; 网络问题 报错详情&#xff1a; One of the configured repositories failed (未知),and yum doesnt have enough cached data to continue. At this point the onlysafe thing yum can do is fail. There are a few …

Linux之NFS服务器

目录 Linux之NFS服务器 简介 NFS背景介绍 生产应用场景 NFS工作原理 NFS工作流程图 流程 NFS的安装 安装nfs服务 安装rpc服务 启动rpcbind服务同时设置开机自启动 启动nfs服务同时设置开机自启动 NFS的配置文件 主配置文件分析 示例 案例 --- 建立NFS服务器&#…

ThePASS研究院|以Safe为例,解码DAO国库管理

本研究文章由ThePASS团队呈现。ThePASS是一家开创性的DAO聚合器和搜索引擎&#xff0c;在为DAO提供洞察力和分析方面发挥着关键作用。 Intro 随着去中心化自治组织&#xff08;DAOs&#xff09;的发展&#xff0c;它们被赋予了越来越多的角色和期望。在这种巨幅增长的背景下&…

LeetCode——顺时针打印矩形

题目地址 力扣&#xff08;LeetCode&#xff09;官网 - 全球极客挚爱的技术成长平台 题目解析 按照顺时针一次遍历&#xff0c;遍历外外层遍历里层。 代码如下 class Solution { public:vector<int> spiralOrder(vector<vector<int>>& matrix) {if(…

重装系统后,MySQL install错误,找不到dll文件,或者应用程序错误

文章目录 1.找不到某某dll文件2.mysqld.exe - 应用程序错误使用DX工具直接修复 1.找不到某某dll文件 由于找不到VCRUNTIME140_1.dll或者MSVCP120.dll&#xff0c;无法继续执行代码&#xff0c;重新安装程序可能会解决此问题。 在使用一台重装系统过的电脑&#xff0c;再次重新…

QT连接OpenCV库完成人脸识别

1.相关的配置 1> 该项目所用环境&#xff1a;qt-opensource-windows-x86-mingw491_opengl-5.4.0 2> 配置opencv库路径&#xff1a; 1、在D盘下创建一个opencv的文件夹&#xff0c;用于存放所需材料 2、在opencv的文件夹下创建一个名为&#xff1a;opencv3.4-qt-intall 文…

软件测试Pytest实现接口自动化应该如何在用例执行后打印日志到日志目录生成日志文件?

Pytest可以使用内置的logging模块来实现接口自动化测试用例执行后打印日志到日志目录以生成日志文件。以下是实现步骤&#xff1a; 1、在pytest配置文件&#xff08;conftest.py&#xff09;中&#xff0c;定义一个日志输出路径&#xff0c;并设置logging模块。 import loggi…

Visual Studio Code 终端配置使用 MySQL

Visual Studio Code 终端配置使用 MySQL 找到 MySQL 的 bin 目录 在导航栏中搜索–》服务 找到MySQL–>双击 在终端切换上面找到的bin目录下输入指令 终端为Git Bash 输入命令 ./mysql -u root -p 接着输入密码&#xff0c;成功在终端使用 MySQL 数据库。

Kafka知识点总结

常见名词 生产者和消费者 同一个消费组下的消费者订阅同一个topic时&#xff0c;只能有一个消费者收到消息 要想让订阅同一个topic的消费者都能收到信息&#xff0c;需将它们放到不同的组中 分区机制 启动方法 生成者和消费者监听客户端

Vue项目案例-头条新闻

目录 1.项目介绍 1.1项目功能 1.2数据接口 1.3设计思路 2.创建项目并安装依赖 2.1创建步骤 2.2工程目录结构 2.3配置文件代码 3.App主组件开发 3.1设计思路 3.2对应代码 4.共通组件开发 4.1设计思路 4.2对应代码 5.头条新闻组件开发 5.1设计思路 5.2对应代码 …

Python之父加入微软三年后,Python嵌入Excel!

近日&#xff0c;微软传发布消息&#xff0c;Python被嵌入Excel&#xff0c;从此Excel里可以平民化地进行机器学习了。只要直接在单元格里输入“PY”&#xff0c;回车&#xff0c;调出Python&#xff0c;马上可以轻松实现数据清理、预测分析、可视化等等等等任务&#xff0c;甚…

Docker的基本组成和安装

Docker的基本组成 镜像&#xff08;image&#xff09;&#xff1a; docker镜像就好比是一个模板&#xff0c;可以通过这个模板来创建容器服务&#xff0c;tomcat镜像 > run > tomcat01容器&#xff08;提供服务&#xff09; 通过这个镜像可以创建多个容器&#xff08;最…

DAY08_MyBatisPlus——入门案例标准数据层开发CRUD-Lombok-分页功能DQL编程控制DML编程控制乐观锁快速开发-代码生成器

目录 一 MyBatisPlus简介1. 入门案例问题导入1.1 SpringBoot整合MyBatisPlus入门程序①&#xff1a;创建新模块&#xff0c;选择Spring初始化&#xff0c;并配置模块相关基础信息②&#xff1a;选择当前模块需要使用的技术集&#xff08;仅保留JDBC&#xff09;③&#xff1a;手…

SpringCloud实战项目(1)---创建空项目 jdk17

创建空项目 New ProjectAdd Jdk17创建空白标准Maven项目不要选择Create from archetype选项填写相关项目信息创建项目得到一个标准的maven项目&#xff0c;作为一个Parent project存在的&#xff0c;需删除src文件夹。 New Project 使用Idea, File -> New ->Project Add …

AutoSar Com模块

文章目录 Com模块功能通信传输控制整体 communication 结构Signal 发送流程设置信号的 UpdateBit信号的超时处理信号的传输方式 Signal 发送时序图Signal 接收流程接收信号的 UpdateBit Signal 接收时序图Com_TxPduInfo / Com_RxPduInfo、Com_PduGrpVector 数据来源Com_TxSigGr…

RabbitMQ基础

目录 MQ MQ概述 MQ 的优势 1.应用解耦 2.异步提速 3.削峰填谷 MQ 的劣势 1.系统可用性降低 2.系统复杂度提高 3.一致性问题 使用 MQ 需要满足什么条件呢&#xff1f; RabbitMQ 简介 ​编辑RabbitMQ 中的相关概念 RabbitMQ 提供了 6 种工作模式 JMS java实现Ra…

成都睿趣科技:现在开一家抖音小店还来得及吗

随着社交媒体的迅猛发展&#xff0c;抖音已经成为了一个全球范围内广受欢迎的社交平台。在这个短视频应用上&#xff0c;人们分享着各种各样的内容&#xff0c;从搞笑段子到美食教程&#xff0c;再到时尚搭配和手工艺品制作。随着用户数量的不断增长&#xff0c;很多人都在思考…

python基础运用例子

python基础运用例子 1、⼀⾏代码交换 a , b &#xff1a;a, b b, a2、⼀⾏代码反转列表 l[::-1]3、合并两个字典 res {**dict1, **dict2}**操作符合并两个字典for循环合并dict(a, **b) 的方式dict(a.items() b.items()) 的方式dict.update(other_dict) 的方式 4、⼀⾏代码列…

软件生命周期及流程

软件生命周期&#xff1a; 软件生命周期(SDLC&#xff0c;Systems Development Life Cycle)是软件开始研制到最终被废弃不用所经历的各个阶段. 需求分析阶段--输出需求规格说明书&#xff08;原型图&#xff09; 测试介入的晚--回溯成本高 敏捷开发模型&#xff1a; 从1990年…

【AWS实验】 使用 Lake Formation 设置数据湖

文章目录 实验概览目标实验环境任务 1&#xff1a;探索实验环境任务 1.1&#xff1a;在 S3 存储桶中创建文件夹任务 1.2&#xff1a;加载 AWS Cloud9 IDE任务 1.3&#xff1a;将数据复制到 S3 存储桶 任务 2&#xff1a;设置 AWS Lake Formation任务 2.1&#xff1a;注册 Amazo…