微信小程序时间标签与范围联动设计实现

微信小程序时间标签与范围联动设计实现?最近忙于一个有关数据管理的微信小程序开发,遇到了上图情况,虽然很简单,还是整理一下。若有错误,请广大朋友们指正。

使用微信小程序组件radio-group、picker,用wxss对radio按照需求进行重构,picker里边的start和end时间是根据radio来显示的。将start、end时间放在data里,radio发生改变时,改变data中的时间。当picker中的值发生改变时,如果时间范围已经超出了radio中的范围,需要对radio的显示进行实时修改。

话不多说,接下来上代码。

index.wxml

<view class="con_screen">
<text class="cons_ti">日期范围</text>
<!-- 单选时间 -->
<radio-group class="radio-group" bindchange="radioCheckedChange">
<block >
<label class="cons_radio {{radioCheckVal==1?'active':''}}" >
<radio value="1" hidden="true"/>
<text>今日</text>
</label> 
<label class="cons_radio {{radioCheckVal==4?'active':''}}" >
<radio value="4" hidden="true" />
<text>近7日</text>
</label> 
<label class="cons_radio {{radioCheckVal==6?'active':''}}" >
<radio value="6" hidden="true"/>
<text>近30日</text>
</label> 
</block>
</radio-group>
<!-- 时间段 -->
<view class="picker_group">
<picker mode="date" value="{{date}}" start="2015-09-01" end="{{date2}}" bindchange="bindDateChange">
<view class="picker">
{{date}}
<image src="../../image/home_zsr_icon.png"></image>
</view>
</picker><picker mode="date" value="{{date2}}" start="{{date}}" end="2018-01-24" bindchange="bindDateChange2">
<view class="picker">
{{date2}}
<image src="../../image/home_zsr_icon.png"></image>
</view>
</picker> 
</view></view>


index.wxss

.radio-group{
display: inline-block;
}
.cons_radio{
margin-left: 30rpx;
}
.cons_radio text{
font-size: 26rpx;
color: #c8c8c8;
height: 40rpx;
/* width: 93rpx; */
border: #c8c8c8 solid 2rpx;
padding:0 20rpx;
text-align: center;
line-height: 40rpx;
display: inline-block;
border-radius: 20rpx;
}
/* 黄色 */
.cons_radio.active text{
color: #F5A623;
border-color: #F5A623;
}
/* 红色 */
.cons_radio.activered text{
color: #FA2B21;
border-color: #FA2B21;
}
/* 蓝色 */
.cons_radio.activeblue text{
color: #4AAFDD;
border-color: #4AAFDD;
}
/* 黄绿色 */
.cons_radio.activeyg text{
color: #BABC1A;
border-color: #BABC1A;
}/* 日期选择 */
.picker_group{
display: block;
font-size: 28rpx;
color: #c8c8c8;
margin-left: 20rpx;
margin-top: 15rpx;
}
.picker_group picker{
display: inline-block;
margin:0 20rpx 0 20rpx;
position: relative;
color: #232323;
}
.picker_group picker image{
width: 20rpx;
height: 20rpx;
}
.cons_zsr{
display: block;
font-size: 32rpx;
color: #232323;
margin-left: 40rpx;
margin-bottom: 15rpx;
}
.cons_zsr picker image{
width: 30rpx;
height: 30rpx;
}

index.js

Page({
data:{
page:'',
Loading:false,
isLogin:false,
radioCheckVal:0,//收益占比单选
date: '2015-09-01',//收益占比时间段起始时间
date2:'2018-01-24',//收益占比时间段终止时间
}, 
// 收益占比单选时间 ring
radioCheckedChange(e){ 
let that=this; 
that.setData({ 
radioCheckVal:e.detail.value 
}) 
console.log(that.data.radioCheckVal)
if(that.data.radioCheckVal=='1'){
that.setData({
date:timedate.formatDate(now),
date2:timedate.formatDate(now),
})
// console.log(that.data.date+'------'+that.data.date2)
that.timeFn(that.data.arrayindex,that.data.date,that.data.date2)
}
if(that.data.radioCheckVal=='4'){
that.setData({
date:timedate.sevenDays().t2,
date2:timedate.sevenDays().t1,
})
// console.log(that.data.date+'------'+that.data.date2)
that.timeFn(that.data.arrayindex,that.data.date,that.data.date2)
}
if(that.data.radioCheckVal=='6'){
that.setData({
date:timedate.thirtyDays().t2,
date2:timedate.thirtyDays().t1,
})
// console.log(that.data.date+'------'+that.data.date2)
that.timeFn(that.data.arrayindex,that.data.date,that.data.date2)
}
},
// 收益占比时间段选择
bindDateChange(e){
let that=this;
console.log(e.detail.value)
that.setData({
date: e.detail.value,
radioCheckVal:0,
})
that.timeFn(that.data.arrayindex,that.data.date,that.data.date2)
},
bindDateChange2(e){
let that=this;
that.setData({
date2: e.detail.value,
radioCheckVal:0,
})
that.timeFn2(that.data.arrayindex,that.data.date,that.data.date2)
},

 

转载于:https://www.cnblogs.com/hsccxt/p/10419604.html

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

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

相关文章

github中的watch、star、fork的作用

在每个 github 项目的右上角&#xff0c;都有三个按钮,分别是 watch、star、fork&#xff0c;但是有些刚开始使用 github 的同学&#xff0c;可能对这三个按钮的使用却不怎么了解&#xff0c;包括一开始使用 github 的我也是如此&#xff0c;这篇博客&#xff0c;结合自己的理解…

docker 操作 记录

docker ps #查看当前docker容器 docker exec -it 容器名称 sh 进入docker容器 docker stop 停止docker容器转载于:https://www.cnblogs.com/objects/p/9569299.html

关于群论证明费马小定理?

这篇博客就是讲证费马的&#xff0c;没什么意思。 既然是要用群论证明费马小定理&#xff0c;那么我们先用数论证明一下。 (以下的 p 为一个质数) 首先我们考虑 一个前置定理&#xff1a; 第一个证明 若 $(c,p) 1$ (即 c 与 p 的 gcd 为 1)&#xff0c;且 $ac ≡ bc (mod\ p)$ …

spring 源码-context

1 spring-context 模块概要 该模块主要实现在spring-beans 模块的扩展&#xff0c;主要对aop支持及el表达式的实现 分析示例 public static void main(String[] args){ClassPathXmlApplicationContext context new ClassPathXmlApplicationContext("spring-aop.xml"…

标示符和关键字的总结--希望别再犯错

&#xff08;一&#xff09;Java关键字的表 一共50个关键字&#xff0c;如下表 其中绝大部分关键词是Java语法发布之初就约定好的&#xff0c;少部分关键词是随Java语言发展后加入的。 strictfp JDK1.2 加入 assert JDK1.4 加入 enum JDK5.0 加入 还有少数单词&#xff0c;目前…

历届试题 打印十字图

问题描述 小明为某机构设计了一个十字型的徽标&#xff08;并非红十字会啊&#xff09;&#xff0c;如下所示&#xff1a; ..$$$$$$$$$$$$$....$...........$..$$$.$$$$$$$$$.$$$$...$.......$...$$.$$$.$$$$$.$$$.$$.$...$...$...$.$$.$.$$$.$.$$$.$.$$.$.$...$...$.$.$$.$.$.…

Spring BeanDefinition

BeanDefinition&#xff0c;顾名思义&#xff0c;是一个对象(Bean)在Spring中描述&#xff0c;其核心类图&#xff1a; 从类图我们详细了解BeanDefinition。 BeanDefinition接口继承自BeanMetadataElement和AttributeAccessor两个接口。 BeanMetadataElement&#xff1a;bean…

乐尚网络:小程序商城零售行业10大新赋能

微信小程序上线以来&#xff0c;各行各业积极入场小程序&#xff0c;着手打造属于自己的小程序生态。小程序形态多样&#xff0c;适合你的小程序才是最好的&#xff1b;在众多形态中&#xff0c;小程序商城可以说是零售行业的主体形态了&#xff0c;因为通过平台直接实现交易是…

深度学习中的正则化

正则化方法有如下几种&#xff1a; 一、参数范数惩罚 其中L2、L1参数正则化介绍与关系如下 1、L2 参数正则化 直观解释如下&#xff1a; 2、L1 参数正则化 二、获取更多数据&#xff08;扩样本&#xff09; 避免过拟合的基本方法之一是从数据源获得更多数据&#xff0c;当训练数…

spring uml

spring执行流程&#xff1a; 1&#xff1a; 加载spring.xml文件 2&#xff1a; 创建xml文件解析器 3&#xff1a; 获取命名空间&#xff0c;即在spring.xml文件中的 http://www.springframework.org/schema/context 4&#xff1a; 根据命名空间找到命名空间处理器&#xff0c;在…

「造个轮子」——cicada(轻量级 WEB 框架)

前言 俗话说 「不要重复造轮子」&#xff0c;关于是否有必要不再本次讨论范围。 创建这个项目的主要目的还是提升自己&#xff0c;看看和知名类开源项目的差距以及学习优秀的开源方式。 好了&#xff0c;现在着重来谈谈 cicada 这个项目的核心功能。 我把他定义为一个快速、轻量…

基于owncloud构建私有云储存网盘

注意事项&#xff1a;需要ping通外网 需要LAMP架构yum -y install httpd php php-mysql mariadb-server mariadb sqlite php-dom php-mbstring php-gd php-pdo 开启服务[rootowncloud ~]# setenforce 0setenforce: SELinux is disabled[rootowncloud ~]# systemctl stop firewa…

Spring 源码分析之AbstractApplicationContext源码分析

首先我觉得分析ApplicationContext必须从它的实现类开始进行分析&#xff0c;AbstractApplicationContext我觉得是一个不错的选择&#xff0c;那我们就从这里开始逐一分析吧&#xff0c;首先我自己手画了一张图&#xff0c;作为索引吧&#xff0c;其中蓝色的为类&#xff0c;紫…

[USACO15FEB]Superbull (最小生成树)

题目链接 Solution 基本上就是个板子. 因为 \(n\) 很小,只有 \(2000\),所以直接暴力建图,然后跑最小生成树就好了. Code #include<bits/stdc.h> #define ll long long using namespace std; const int maxn2008; struct sj{int to,fr; ll w; }a[maxn*maxn]; int fa[maxn]…

Java中九大内置对象

1、Request对象 该对象封装了用户提交的信息&#xff0c;通过调用该对象相应的方法可以获取封装的信息&#xff0c;即使用该对象可以获取用户提交的信息。 当Request对象获取客户提交的汉字字符时&#xff0c;会出现乱码问题&#xff0c;必须进行特殊处理。首先&#xff0c;…

ORACLE导出导入意外终止导致 ORACLE initialization or shutdown in progress 问题解决

由于意外情况导致 ORACLE initialization or shutdown in progress 个人理解为主要是归档日志出现问题&#xff0c; 首先cmd 1.sqlplus /nolog 进入sqlplus 2.connect /as sysdba 连接dba 3.shutdown normal 卸载数据库 4.startup mount;重启例程 5.alter database open;开…

Spring中资源的加载ResourceLoader

Spring中资源的加载是定义在ResourceLoader接口中的&#xff0c;它跟前面提到的抽象资源的关系如下&#xff1a; ResourceLoader的源码 public interface ResourceLoader { /** Pseudo URL prefix for loading from the class path: "classpath:" */ String CLAS…

Codeforces Round #540 (Div. 3)(部分题解)

链接:http://codeforces.com/contest/1118 来源:Codeforces 文章目录A. Water BuyingB. Tanya and Candies(前缀和)D1. Coffee and Coursework (Easy version)(贪心)D2. Coffee and Coursework (Hard Version)(二分)A. Water Buying 题意:用最小的花费买到刚好合适的东西.我们可…

集合一些方法陷阱

一&#xff1a;asList 数组转ArrayList陷阱&#xff1a; asList() 源码&#xff1a;public static <T> List<T> asList(T... a) { return new ArrayList<T>(a); } private final E[] a; ArrayList(E[] array) { if (arraynull) throw new NullPointerExcept…

java项目中的classpath

在java项目中&#xff0c;你一定碰到过classpath&#xff0c;通常情况下&#xff0c;我们是用它来指定配置/资源文件的路径。在刚开始学习的时候&#xff0c;自己也糊里糊涂&#xff0c;但是现在&#xff0c;是时候弄清楚它到底是指什么了。 顾名思义&#xff0c;classpath就是…