微信小程序实现选择内容显示对应内容

微信小程序中,经常可见选择地区或者商品分类或者其他的分类,选择后显示,选择后删除

先介绍一下主要功能:点击 ‘地区’ ,下面选择区域出现,点击 ‘选择地区’ 中的按钮,上面 ‘已选地区’ 显示选择的地区,点击 ‘x’ 已选的地区就取消,点击 “完成” 整个选择区域隐藏,只留下地区。

整体样式用的弹性布局,就不细说了。

wxml:

<view class="container">
  <text bindtap="show" class="color">地区</text>
  <view class="choose" wx-if="{{a}}">
    <!-- 已选地区 -->
    <view class="chosed">
      <view class="chosedtop">
        <text>已选地区</text>
        <text bindtap="finish">完成</text>
      </view>
      <view class="view">
        <view class="position" wx:for='{{area}}' wx:key='index'>
          <button class="buttond">{{item}}</button>
          <image src='' bindtap="shut" data-index="{{index}}" data-name="{{item}}"></image>
          //这是按钮右上角的关闭图片
        </view>
      </view>
    </view>
    <!-- 选择地区 -->
    <view class="area">
      <text>选择地区</text>
      <view class="chos">
        <block wx:for='{{array}}' wx:key='index'>
          <button class="button {{tabindex == index?'active':''}}" data-index="{{index}}" data-name="{{item}}" bindtap="tabarea">{{item}}</button>
        </block>
      </view>
    </view>
  </view>
</view>

js:

var chosedarea = [];
var area = [];
Page({ 
  data: {
    a:false,
    tabindex:0,
    array: ["北京", '南京', '上海', '天津', '杭州', '云南', "北京", '南京', '上海', '天津', '杭州', '云南',"北京", '南京', '上海', '天津', '杭州', '云南'],
  },
  // 选地区
   tabarea:function(e){
    this.setData({
      tabindex:e.currentTarget.dataset.index
    });
     var id = e.currentTarget.dataset.index;
     var name = e.currentTarget.dataset.name;
     chosedarea.push(name);
       this.setData({
         "area": chosedarea
       })
  },
  // 取消已选地区
  shut:function(e){
    this.setData({
      index: e.currentTarget.dataset.index,
      name : e.currentTarget.dataset.name
    });
    var yid = e.currentTarget.dataset.index;
    var yname = e.currentTarget.dataset.name;
    chosedarea.splice(yid,1)
    this.setData({
      "area": chosedarea
    })
  },
  // 点击完成隐藏
  finish:function(){
    var that = this;
    if (that.data.a == true) {
      that.setData({
        a: false   
      })
    }
  },
  // 点击地区显示
  show:function(){
    var that = this;
    if (that.data.a == false) {
      that.setData({
        a: true    
      })
    }
  },
  })

css

.container{
  width: 100%;
  height: 300rpx;
}
.choose{
  width: 100%;
}
.buttond{
  width: 88%;
  padding: 0;
  height: 68rpx;
  line-height: 68rpx;
  font-size: 32rpx;
  margin-bottom: 10rpx;
}
.area{
  display: flex;
  flex-direction: column;
  margin: 0 20rpx;
}
.chos{
  display: flex;
  flex-wrap: wrap;
  margin-top: 15rpx;
}
.button{
  width: 22%;
  padding: 0;
  height: 68rpx;
  line-height: 68rpx;
  font-size: 32rpx;
  margin: 0 10rpx;
  margin-bottom: 10rpx;
}
.view{
  display: flex;
  flex-wrap: wrap;
  height: auto;
  margin: 0 20rpx;
}
.position{
  width: 24%;
}
.chosedtop{
  display: flex;
  justify-content: space-between;
  margin: 0 30rpx 15rpx
}

如果是选完 上面添加了对应的 下面可选择的与之对应的要隐藏掉 就这样:

js中

// 选地区
  tabarea: function (e) {
    let that = this;
    that.setData({
      tabindex: e.currentTarget.dataset.index
    });
    var id = e.currentTarget.dataset.index;
    var name = e.currentTarget.dataset.name;
    chosedarea.push(name);
    that.data.array.splice(id, 1);
    that.setData({
      "area": chosedarea,
      "array": that.data.array
    })
  },

在上面点击删除的话 下面可选择的区域要对应的添加上:

wxml:

<view class="container">
  <text bindtap="show" class="color">地区</text>
  <view class="choose" wx-if="{{a}}">
    <!-- 已选地区 -->
    <view class="chosed">
      <view class="chosedtop">
        <text>已选地区</text>
        <text bindtap="finish">完成</text>
      </view>
      <view class="view">
        <view class="position" wx:for='{{area}}' wx:key='index'>
          <button class="buttond" data-index="{{index}}" data-name="{{item}}" bindtap="addName">{{item}}</button>
          <!-- <image src='' bindtap="shut" data-index="{{index}}" data-name="{{item}}"></image> -->
          <!-- //这是按钮右上角的关闭图片 -->
        </view>
      </view>
    </view>
    <!-- 选择地区 -->
    <view class="area">
      <text>选择地区</text>
      <view class="chos">
        <block wx:for='{{array}}' wx:key='index'>
          <button class="button {{tabindex == index?'active':''}}" data-index="{{index}}" data-name="{{item}}" bindtap="tabarea">{{item}}</button>
        </block>
      </view>
    </view>
  </view>
</view>

js

var chosedarea = [];
var area = [];
Page({
  data: {
    a: false,
    tabindex: 0,
    array: ["北京", '南京', '上海', '天津', '杭州', '云南', "新疆", '黑龙江', '东北', '威海', '宁夏', '广西', "西安", '山东', '青岛', '济南', '烟台', '蓬莱'],
  },
  // 选地区
  tabarea: function (e) {
    let that = this;
    that.setData({
      tabindex: e.currentTarget.dataset.index
    });
    var id = e.currentTarget.dataset.index;
    var name = e.currentTarget.dataset.name;
    chosedarea.push(name);
    that.data.array.splice(id, 1);
    that.setData({
      "area": chosedarea,
      "array": that.data.array
    })
  },
  // 添加回
  addName:function(e){
    let that = this;
    console.log(e)
    that.setData({
      index: e.currentTarget.dataset.index,
    })
    var aname = e.currentTarget.dataset.name;
    chosedarea.splice(that.data.index,1);
    that.data.array.push(aname);
    that.setData({
      "area": chosedarea,
      "array": that.data.array
    })
  },
  // 取消已选地区
  shut: function (e) {
    this.setData({
      index: e.currentTarget.dataset.index,
      name: e.currentTarget.dataset.name
    });
    var yid = e.currentTarget.dataset.index;
    var yname = e.currentTarget.dataset.name;
    chosedarea.splice(yid, 1)
    this.setData({
      "area": chosedarea
    })
  },
  // 点击完成隐藏
  finish: function () {
    var that = this;
    if (that.data.a == true) {
      that.setData({
        a: false
      })
    }
  },
  // 点击地区显示
  show: function () {
    var that = this;
    if (that.data.a == false) {
      that.setData({
        a: true
      })
    }
  },
})

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • 微信小程序使用checkbox显示多项选择框功能【附源码下载】

    本文实例讲述了微信小程序使用checkbox显示多项选择框功能.分享给大家供大家参考,具体如下: 1.效果展示 2.关键代码 ① index.wxml <checkbox-group bindchange="checkboxgroupBindchange"> <checkbox value="checkbox1">checkbox1</checkbox> <checkbox value="checkbox2&quo

  • 微信小程序 (地址选择1)--选取搜索地点并显示效果

    效果:(直接复制代码,可查看效果) 可以通过拖动地图,搜索地址,选择地址,并将地址值传给文本框 进入以下界面 点击确定后. 代码如下: wxml: <view class="box2"> <view class="box2_left">收货地址</view> <input type="text" class="box2_right" placeholder="请选择收货地址&

  • 微信小程序图片选择、上传到服务器、预览(PHP)实现实例

    微信小程序图片选择.上传到服务器.预览(PHP)实现实例 小程序实现选择图片.预览图片.上传到开发者服务器上 后台使用的tp3.2 图片上传 请求时候的header参考时可以去掉(个人后台验证权限使用) 小程序前端代码: <view class="section"> <form bindsubmit="bindFormSubmit"> <textarea placeholder="请输入问题内容" name=&quo

  • 微信小程序实现选择地址省市区三级联动

    本文实例为大家分享了微信小程序实现选择地址省市区三级联动的具体代码,供大家参考,具体内容如下 微信原生地址API,缺少省市区code,因此自己写了一个收货地址 思路:在onload预先加载全部省和第一个省的全部市和区,加载全部会导致几秒的事件阻塞.点击选择地址弹窗后,按需加载操作,滑动省加载对应的市和第一个市对应的区,滑动市加载区,滑动区只更改区的值 onLoad: function(options) { var that = this; // 此文件为全部省以及第一个省的市和区 var cit

  • 微信小程序 解决swiper不显示图片的方法

    微信小程序 解决swiper不显示图片的方法 1.我说的swiper不显示图片是只有一个swiper的框,但不显示设置好的图片. 第一个要确定的是图片路径设置的正不正确,确定路径没有设置错,还有一个可能的原因就是,放swiper的这个页面(也就是这个wxml文件)没有在app.json里面的pages进行注册 确决的方法是: 找到项目下的app.json文件 在app.json的配置文件下的pages进行页面注册,像下面图片这样 小程序的文档也写了"小程序中新增/减少页面,都需要对 pages

  • 微信小程序 chooseImage选择图片或者拍照

    微信小程序 chooseImage选择图片或者拍照 一.使用API wx.chooseImage(OBJECT) var util = require('../../utils/util.js') Page({ data:{ src:"../image/pic4.jpg" }, gotoShow: function(){var _this = this wx.chooseImage({ count: 9, // 最多可以选择的图片张数,默认9 sizeType: ['original'

  • 微信小程序图片宽100%显示并且不变形

    微信小程序图片宽100%显示并且不变形 按照HTML习惯进行写,代码: <view class="meiti"> <image src="http://10.0.0.171:9001/images/2017/0619/20170619115150713_progressive.jpg" style="width:100%;"></image> </view> 效果如下: 很明显变形了 找到一篇关于微

  • 微信小程序使用image组件显示图片的方法【附源码下载】

    本文实例讲述了微信小程序使用image组件显示图片的方法.分享给大家供大家参考,具体如下: 1.效果展示 2.关键代码 ① index.wxml 复制代码 代码如下: <image style="width: 300px; height: 300px; margin:10px;" mode="scaleToFill" src="{{imageSrc}}"></image> ② index.js Page({ data:{

  • 微信小程序实现用table显示数据库反馈的多条数据功能示例

    本文实例讲述了微信小程序实现用table显示数据库反馈的多条数据功能.分享给大家供大家参考,具体如下: 解决了微信小程序自定义表格,并显示的多条数据的问题. index.wxml <view> <text>我的调查问卷</text> <scroll-view scroll-x="true" style=" white-space: nowrap; display: flex"> <view class="

  • 微信小程序 多行文本显示...+显示更多按钮和收起更多按钮功能

    看了很多帖子,但是效果都不是很好.还是找微信小程序官方文档,自己写比较方便.自己动手丰衣足食!话不多说,上代码! 时空传送 先来个效果图 html <block wx:for='{{trendsList}}' wx:key='index'> <view class="box"> <view class="textFour_box {{item.seeMore?'three':''}}">{{item.text}}</view

  • 微信小程序实现选择内容显示对应内容

    微信小程序中,经常可见选择地区或者商品分类或者其他的分类,选择后显示,选择后删除 先介绍一下主要功能:点击 ‘地区’ ,下面选择区域出现,点击 ‘选择地区’ 中的按钮,上面 ‘已选地区’ 显示选择的地区,点击 ‘x’ 已选的地区就取消,点击 “完成” 整个选择区域隐藏,只留下地区. 整体样式用的弹性布局,就不细说了. wxml: <view class="container">   <text bindtap="show" class="

随机推荐