小程序mpvue框架,级联组件的实现

可选择任意一级,如图:


级联.gif

未写递归,目前只可选择3级级联。
原来小程序实现不了组件循环调用!!!!!!!

记录:
20200327解决弹窗显示之后屏幕还可以滚动问题。解决:在遮罩层外的view标签上添加catchtouchmove="preventTouchMove"即可。
20200410优化样式显示,有下级的时候才显示列表

<template>
  <div>
    <view class="input_conter" @click="showCascader">
      <view>级联选择器:<input placeholder="请选择级联" :value="value" disabled="true"/></view>
    </view>
    <view :hidden="isShowCascader" class="modal modal-bottom-dialog" catchtouchmove="preventTouchMove">
      <!-- 遮罩层 -->
      <view class="mask" @click="cancel"></view>
      <view class="cascader">
        <!-- 确定取消按钮 -->
        <view class="cascader_header">
          <button @click="cancel" class="cancal">取消</button>
          <button @click="confirm" class="confirm">确定</button>
        </view>
        <!-- 列表 -->
        <view class="scroll_box">
          <scroll-view scroll-x class="scroll_x">
            <view class="nav">
              <!-- 一级 -->
              <view style="width: 100%;">
                <scroll-view scroll-y style="height: 300px;">
                  <radio-group class="radiobox_group" @change="radioChange1">
                    <view v-for="(item1, i) in options1" :key="i" class="border_bottom">
                      <text>{{ item1.label }}</text>
                      <radio :value="item1.value" :checked="item1.checked" color="#0099FF" class="radiobox"/>
                    </view>
                  </radio-group>
                </scroll-view>
              </view>
              <!-- 二级 -->
              <view style="width: 100%;background:#f8f8f8" :hidden="show1">
                <scroll-view scroll-y style="height: 300px;">
                  <radio-group class="radiobox_group" @change="radioChange2">
                    <view v-for="(item2, j) in options2" :key="j" class="border_bottom">
                      <text>{{ item2.label }}</text>
                      <radio :value="item2.value" :checked="item2.checked" color="#0099FF" class="radiobox"/>
                    </view>
                  </radio-group>
                </scroll-view>
              </view>
              <!-- 三级 -->
              <view style="width: 100%;" :hidden="show2">
                <scroll-view scroll-y style="height: 300px;">
                  <radio-group class="radiobox_group" @change="radioChange3">
                    <view v-for="(item3, k) in options3" :key="k" class="border_bottom">
                      <text>{{ item3.label }}</text>
                      <radio :value="item3.value" :checked="item3.checked" color="#0099FF" class="radiobox"/>
                    </view>
                  </radio-group>
                </scroll-view>
              </view>
            </view>
          </scroll-view>
        </view>
      </view>
    </view>
  </div>
</template>

<script>
export default {
  components: {},
  data () {
    return {
      options1: [
        {
          value: '0',
          label: '一级1',
          children: [
            {
              value: '0-0',
              label: '二级1-1',
              children: [
                {
                  value: '0-0-0',
                  label: '三级1-1-1'
                },
                {
                  value: '0-0-1',
                  label: '三级1-1-2'
                },
                {
                  value: '0-0-2',
                  label: '三级1-1-3'
                },
                {
                  value: '0-0-3',
                  label: '三级1-1-4'
                }
              ]
            }
          ]
        },
        {
          value: '1',
          label: '一级2',
          children: [
            {
              value: '1-0',
              label: '二级2-1',
              children: [
                {
                  value: '1-0-0',
                  label: '三级2-1-1'
                },
                {
                  value: '1-0-1',
                  label: '三级2-1-2'
                },
                {
                  value: '1-0-2',
                  label: '三级2-1-3'
                },
                {
                  value: '1-0-3',
                  label: '三级2-1-4'
                }
              ]
            },
            {
              value: '1-1',
              label: '二级2-2',
              children: [
                {
                  value: '1-1-0',
                  label: '三级2-2-1'
                },
                {
                  value: '1-1-1',
                  label: '三级2-2-2'
                },
                {
                  value: '1-1-2',
                  label: '三级2-2-3'
                },
                {
                  value: '1-1-3',
                  label: '三级2-2-4'
                },
                {
                  value: '1-1-4',
                  label: '三级2-2-5'
                },
                {
                  value: '1-1-5',
                  label: '三级2-2-6'
                },
                {
                  value: '1-1-6',
                  label: '三级2-2-7'
                },
                {
                  value: '1-1-7',
                  label: '三级2-2-8'
                }
              ]
            }
          ]
        }
      ],
      options2: [],
      options3: [],
      isShowCascader: true, // 是否显示级联弹窗
      val1: '',
      val2: '',
      val3: '',
      id1: '',
      id2: '',
      id3: '',
      value: '',
      id: '',
      // 取消选择,之前的不清空
      oldValue: '',
      oldId: '',
      oldId1: '',
      oldId2: '',
      oldId3: '',
      oldOptions1: [],
      oldOptions2: [],
      oldOptions3: [],
      show1: true, // 是否显示二级
      show2: true // 是否显示三级
    }
  },
  created () {},
  watch: {},
  onShow () {},
  methods: {
    // 一级
    radioChange1 (e) {
      if (e.mp.detail) {
        this.options2 = []
        this.options3 = []
        // this.show1 = false
        this.toFalse(this.options1)
        let id = e.mp.detail.value
        this.options2 = this.recursion(id, this.options1, 1)
      }
    },
    // 二级
    radioChange2 (e) {
      if (e.mp.detail) {
        this.options3 = []
        // this.show2 = false
        this.toFalse(this.options2)
        let id = e.mp.detail.value
        this.options3 = this.recursion(id, this.options2, 2)
      }
    },
    // 三级
    radioChange3 (e) {
      if (e.mp.detail) {
        let id = e.mp.detail.value
        this.toFalse(this.options3)
        this.recursion(id, this.options3, 3)
      }
    },
    // 找到所选的list
    recursion (val, data, type) {
      for (const element of data) {
        if (element.value === val) {
          switch (type) {
            case 1:
              this.val1 = element.label
              this.value = this.val1
              this.id1 = val
              this.id = this.id1
              element.children ? this.show1 = false : this.show1 = true // 显示二级
              break
            case 2:
              this.val2 = element.label
              this.value = this.val1 + '/' + this.val2
              this.id2 = val
              this.id = this.id2
             element.children ? this.show2 = false : this.show2 = true // 显示三级
              break
            case 3:
              this.val3 = element.label
              this.value = this.val1 + '/' + this.val2 + '/' + this.val3
              this.id3 = val
              this.id = this.id3
              break
          }
          element.checked = true // 勾选
          return element.children ? element.children : []
        }
      }
    },
    // 显示级联选择
    showCascader () {
      this.isShowCascader = false
      // 隐藏tabbar
      wx.hideTabBar({
        fail: function () {
          setTimeout(function () {
            wx.hideTabBar()
          }, 500)
        }
      })
    },
    // 取消
    cancel () {
      this.isShowCascader = true
      // 显示tabbar
      wx.showTabBar({
        fail: function () {
          setTimeout(function () {
            wx.showTabBar()
          }, 500)
        }
      })
      // 之前已经选择,不清空
      this.value = this.oldValue ? this.oldValue : ''
      this.id = this.oldId ? this.oldId : ''
      this.toFalse(this.options1)
      this.toFalse(this.options2)
      this.toFalse(this.options3)
      if (this.oldValue) {
        this.options1 = this.oldOptions1
        this.options2 = this.oldOptions2
        this.options3 = this.oldOptions3
        this.toTrue(this.options1, this.oldId1)
        this.toTrue(this.options2, this.oldId2)
        this.toTrue(this.options3, this.oldId3)
      }
    },
    // 确定
    confirm () {
      this.isShowCascader = true
      this.oldValue = this.value
      this.oldId1 = this.id1
      this.oldId2 = this.id2
      this.oldId3 = this.id3
      this.oldId = this.id
      this.oldOptions1 = this.options1
      this.oldOptions2 = this.options2
      this.oldOptions3 = this.options3
    },
    // checked赋值为真,-->勾选
    toTrue (data, id) {
      for (const iterator of data) {
        if (iterator.value === id) {
          iterator.checked = true
        }
      }
    },
    // checked赋值为false,-->取消勾选
    toFalse (data) {
      for (const element of data) {
        element.checked = false
        if (element.children) {
          this.toFalse(element.children)
        }
      }
    }
  },
  mounted () {},
  computed: {}
}
</script>
<style lang='less' scoped>
page {
  background: #f8f8f8;
}
// 弹窗固定在底部
.modal{position:fixed; top:0; right:0; bottom:0; left:0; z-index:1000;}
.bottom-dialog-body{width:100%; position:absolute; z-index:3000; bottom:0; left:0;background:#dfdede;}
.input_conter {
  padding: 10px 0px;
  // position: relative;
  // display: -ms-flexbox;
  // display: flex;
  // input {
  //   position: absolute;
  //   margin: -23px 100px;
  // }
}
// 横向滑动不生效,需在外添加一层
.scroll_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  .scroll_x {
    height: 100%;
    width: auto;
    overflow:hidden;
  }
}
// 均分成3列
.nav {
  padding: 10px;
  width:100%;
  // height:100px;
  -webkit-box-orient:horizontal;
  -moz-box-orient:horizontal;
  box-orient:horizontal;
  display:flex;
  view {
    -webkit-box-flex:1;
    -moz-box-flex:1;
    box-flex:1;
    text-align:center;
    line-height:10px;
  }
}
.radiobox_group {
  line-height:2.5;
  .border_bottom {
    width: 90%;
    border-bottom: 1px solid #ddd
  }
  .radiobox {
    margin: 10px;
  }
}
// 遮罩层
.mask {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .4);
  transition: all .4s ease-in-out 0;
  pointer-events: none;
  opacity: 1;
  pointer-events: auto
}
// 级联选择
.cascader {
  position: absolute;
  width: 100%;
  height: 600rpx;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all .4s ease-in-out 0;
}
.cascader_header {
  height: 20%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  height: 100rpx;
  padding: 0 20rpx;
}
//  取消
.cancal {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}
// 确定
.confirm {
  font-size: 16px;
  font-weight: 400;
  color: #08bb5d !important;
}
button {
  background: inherit;
  border: none;
  margin: 0;
}
button:after {
  border-radius: 0rpx;
  border: none;
}
</style>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容