Skip to content

LimeCascader 级联选择

一个功能丰富的级联选择组件,用于多层级数据选择,主要为树形结构,可展示更多的数据。组件支持自定义字段名、自定义选项上方内容、自定义颜色等多种配置,并提供了中国省市区数据和uniCloud数据源支持。兼容uniapp/uniappx。

插件依赖:lime-popuplime-stylelime-sharedlime-tabslime-iconlime-svg

文档链接

📚 组件详细文档请访问以下站点:

安装方法

  1. 在uni-app插件市场入口 中搜索并导入lime-cascader
  2. 首次导入可能需要重新编译
  3. 在页面中使用l-cascader组件

注意🔔

本插件依赖的【lime-svg】是原生插件,如果购买(收费为6元)则需要自定义基座,才能使用, 若不需要删除即可

代码演示

示例使用了utsvue3 setup语法,uniapp可以把数据类型去掉即可。

基础使用

级联选择组件通过设置visible弹出选择器。

html
<view class="cell" @click="visible = true">
  <text>地址</text>
  <text v-show="fieldValue == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue != null">{{fieldValue}}</text>
</view>
<l-cascader 
  v-model:visible="visible" 
  v-model="cascaderValue" 
  :options="options" 
  title="请选择所在地区" 
  @change="onChange"/>
js
const visible = ref(false)
// 设置默认值,如 110000
const cascaderValue = ref('');
const fieldValue = ref<string|null>(null);
// 选项列表,children 代表子选项,支持多级嵌套
const options = [
  {
    label: '北京市',
    value: '110000',
    children: [
      {
        value: '110100',
        label: '北京市',
        children: [
          { value: '110101', label: '东城区' },
          { value: '110102', label: '西城区' },
          { value: '110105', label: '朝阳区' },
          // 更多区域...
        ],
      },
    ],
  },
  {
    label: '天津市',
    value: '120000',
    children: [
      {
        value: '120100',
        label: '天津市',
        children: [
          { value: '120101', label: '和平区' },
          { value: '120102', label: '河东区' },
          // 更多区域...
        ],
      },
    ],
  },
];
// 全部选项选择后,会触发 change 事件
const onChange = (value: string, options: UTSJSONObject[]) => {
  fieldValue.value = options.map((item: UTSJSONObject):any|null => (item['label'])).join('/');
};

带初始值

通过设置valuev-model设置默认值,选择项的值。

html
<view class="cell" @click="visible2 = true">
  <text>地址</text>
  <text v-show="fieldValue2 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue2 != null">{{fieldValue2}}</text>
</view>
<l-cascader 
  v-model:visible="visible2" 
  v-model="cascaderValue2" 
  :options="options2" 
  title="请选择所在地区" 
  @change="onChange2"/>
js
const visible2 = ref(false)
// 设置默认值
const cascaderValue2 = ref('120119');
const fieldValue2 = ref<string|null>(null);
const options2 = areaList;
const onChange2 = (value: string, options: UTSJSONObject[]) => {
  fieldValue2.value = options.map((item: UTSJSONObject):any|null => (item['label'])).join('/');
};

自定义字段名

通过设置keys属性可以自定义 options 里的字段名称。

html
<view class="cell" @click="visible3 = true">
  <text>地址</text>
  <text v-show="fieldValue3 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue3 != null">{{fieldValue3}}</text>
</view>
<l-cascader 
  v-model:visible="visible3" 
  v-model="cascaderValue3" 
  :options="options3" 
  :keys="keys"
  title="请选择所在地区" 
  @change="onChange3"/>
js
const visible3 = ref(false)
const cascaderValue3 = ref('');
const fieldValue3 = ref<string|null>(null);
const options3 = [
  {
    name: '北京市',
    code: '110000',
    items: [
      {
        code: '110100',
        name: '北京市',
        items: [
          { code: '110101', name: '东城区' },
          { code: '110102', name: '西城区' },
          // 更多区域...
        ],
      },
    ],
  },
  // 更多省份...
];

const keys = {label: 'name', value: 'code', children: 'items'}
const onChange3 = (value: string, options: UTSJSONObject[]) => {
  fieldValue3.value = options.map((item: UTSJSONObject):any|null => (item['name'])).join('/');
};

自定义选项上方内容

通过设置subTitles属性每级展示的次标题。

html
<view class="cell" @click="visible4 = true">
  <text>地址</text>
  <text v-show="fieldValue4 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue4 != null">{{fieldValue4}}</text>
</view>
<l-cascader 
  v-model:visible="visible4" 
  v-model="cascaderValue4" 
  :options="options4" 
  :subTitles="subTitles"
  title="请选择所在地区" 
  @change="onChange4"/>
js
const visible4 = ref(false)
const cascaderValue4 = ref('');
const fieldValue4 = ref<string|null>(null);
const options4 = areaList;
const subTitles = ['请选择省份', '请选择城市', '请选择区/县'];
const onChange4 = (value: string, options: UTSJSONObject[]) => {
  fieldValue4.value = options.map((item: UTSJSONObject):any|null => (item['label'])).join('/');
};

自定义颜色

通过设置active-color属性来设置选中状态的高亮颜色。

html
<view class="cell" @click="visible5 = true">
  <text>地址</text>
  <text v-show="fieldValue5 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue5 != null">{{fieldValue5}}</text>
</view>
<l-cascader 
  v-model:visible="visible5" 
  v-model="cascaderValue5" 
  :options="options5" 
  active-color="#34c471"
  title="请选择所在地区" 
  @change="onChange5"/>

中国省市区数据

lime-shared/areaData提供了一份中国省市区数据,该数据来源于 Vant

js
import { useCascaderAreaData } from '@/uni_modules/lime-shared/areaData'
const options7 = useCascaderAreaData();
const subTitles = ['请选择省份', '请选择城市', '请选择区/县'];
const visible7 = ref(false)
const cascaderValue7 = ref('');
const fieldValue7 = ref<string|null>(null);
const onChange7 = (value: string, options: UTSJSONObject[]) => {
  fieldValue7.value = options.map((item: UTSJSONObject):any|null => (item['label'])).join('/');
};
html
<view class="cell" @click="visible7 = true">
  <text>地址</text>
  <text v-show="fieldValue7 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue7 != null">{{fieldValue7}}</text>
</view>
<l-cascader 
  v-model:visible="visible7" 
  v-model="cascaderValue7" 
  :options="options7" 
  :subTitles="subTitles"
  title="请选择所在地区" 
  @change="onChange7"/>

uniCloud数据源

除了加载本地数据,还可以设置uniCloud,会加载opendb-city-china(中国城市省市区数据,含港澳台)表,在uniCloud控制台使用opendb创建。

html
<view class="cell" @click="visible6 = true">
  <text>地址</text>
  <text v-show="fieldValue6 == null" style="color: #999;">请选择地址 ></text>
  <text v-show="fieldValue6 != null">{{fieldValue6}}</text>
</view>
<l-cascader 
  v-model:visible="visible6" 
  v-model="cascaderValue6" 
  :options="options6" 
  :subTitles="subTitles"
  :keys="{label: 'name', value: 'code'}"
  title="请选择所在地区" 
  @pick="onPick6"
  @change="onChange6"/>
js
const visible6 = ref(false)
const cascaderValue6 = ref('');
const fieldValue6 = ref<string|null>(null);

const onChange6 = (value: string, options: UTSJSONObject[]) => {
  fieldValue6.value = options.map((item: UTSJSONObject):any|null => (item['name'])).join('/');
};

快速预览

导入插件后,可以直接使用以下标签查看演示效果:

html
<!-- 代码位于 uni_modules/lime-cascader/components/lime-cascader -->
<lime-cascader />

插件标签说明

  • 默认 l-cascader 为组件标签
  • 默认 lime-cascader 为演示标签

Vue2使用说明

插件使用了composition-api,如果你希望在Vue2中使用,请按官方教程vue-composition-api配置。

关键代码是在main.js中的Vue2部分添加以下代码:

js
// vue2
import Vue from 'vue'
import VueCompositionAPI from '@vue/composition-api'
Vue.use(VueCompositionAPI)

API文档

Props

参数说明类型默认值
v-model:visible是否显示级联选择器booleanfalse
v-modelstring-
subTitles每级展示的次标题string[]-
placeholder未选中时的提示文案string选择选项
keys用来定义 value / labeloptions 中对应的字段别名{label,value,children}{}
title标题string-
options可选项数据源array-
closeable是否显示关闭按钮boolean-
bgColor背景色string-
activeColor激活色string-
iconSize图标尺寸string-
color文本色string-
fontSize字体大小string-

Events

事件名说明回调参数
pick选择后触发(level: number, index: number, value: string, selectedIndexes: number[])
change值发生变更时触发(value: string, options: UTSJSONObject[])
close关闭时触发-

主题定制

组件提供了以下CSS变量,可用于定制主题:

变量名默认值说明
--l-cascader-title-color$text-color-1标题文本颜色
--l-cascader-icon-color$primary-color图标颜色
--l-cascader-icon-size24px图标大小
--l-cascader-bg-color$bg-color-container背景颜色
--l-cascader-border-radius$border-radius-lg边框圆角
--l-cascader-height320px级联选择器高度
--l-cascader-cell-height50px单元格高度
--l-cascader-cell-padding-x16px单元格水平内边距
--l-cascader-cell-padding-y14px单元格垂直内边距
--l-cascader-cell-title-color$text-color-1单元格标题颜色
--l-cascader-cell-title-font-size$font-size-md单元格标题字体大小
--l-cascader-disabled-color$text-color-3禁用状态颜色
--l-cascader-title-height48px标题高度
--l-cascader-title-padding-top$spacer标题上内边距
--l-cascader-title-padding-bottom$spacer-xs标题下内边距
--l-cascader-title-font-size18px标题字体大小
--l-cascader-options-title-color$text-color-3选项标题颜色
--l-cascader-close-icon-color$text-color-2关闭图标颜色

支持与赞赏

如果你觉得本插件解决了你的问题,可以考虑支持作者:

支付宝赞助微信赞助

源代码

组件源码