123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- <template>
- <view class="cl-li">
- <!-- 搜索栏 -->
- <view class="cl-li__search" v-if="filterable">
- <cl-input
- v-model="keyWord"
- :border="false"
- prefix-icon="cl-icon-search"
- round
- placeholder="搜索关键字"
- clearable
- @search="onSearch"
- ></cl-input>
- </view>
- <!-- 滚动视图 -->
- <scroll-view
- class="cl-li__scroller"
- scroll-y
- enable-back-to-top
- scroll-with-animation
- :scroll-into-view="`index-${label}`"
- @scroll="onScroll"
- >
- <!-- 追加内容到头部 -->
- <slot name="prepend"></slot>
- <!-- 分组数据 -->
- <template v-for="(item, index) in flist">
- <view class="cl-li__group" :key="index" :id="`index-${item.label}`">
- <!-- 关键字 -->
- <view :class="['cl-li__header', curr.label == item.label ? 'is-active' : '']">
- <!-- 头部插槽 -->
- <slot name="header" :item="item" :isActive="curr.label == item.label">
- <text>{{ item.label }}</text>
- </slot>
- </view>
- <!-- 数据列表 -->
- <view class="cl-li__container">
- <view v-for="(item2, index2) in item.children" :key="index2">
- <!-- 内容插槽 -->
- <slot :item="item2" :parent="item">
- <view class="cl-li__item" @tap="selectRow(item2)">
- <cl-avatar :src="item2.avatarUrl"></cl-avatar>
- <cl-text :margin="[0, 0, 0, 20]" :value="item2.name"></cl-text>
- </view>
- </slot>
- </view>
- </view>
- </view>
- </template>
- <!-- 追加内容到尾部 -->
- <slot name="append"></slot>
- </scroll-view>
- <!-- 索引栏 -->
- <view class="cl-li__bar">
- <view class="cl-li__bar-list" @touchmove.stop.prevent="barMove" @touchend="barEnd">
- <template v-for="(item, index) in flist">
- <view
- :class="['cl-li__bar-block', curr.label == item.label ? 'is-active' : '']"
- :key="index"
- :id="index"
- @touchstart.stop.prevent="toRow(item)"
- >
- <text>{{ item.label }}</text>
- </view>
- </template>
- </view>
- </view>
- <!-- 索引关键字 -->
- <view class="cl-li__alert" v-show="alert">{{ curr.label }}</view>
- </view>
- </template>
- <script>
- import { last } from "../../utils";
- /**
- * list-index 索引列表
- * @description 索引列表, 支持自定义内容
- * @tutorial https://docs.cool-js.com/uni/components/advanced/list-index.html
- * @property {Number} index 序号
- * @property {Array} list 列表数据
- * @property {Boolean} filterable 是否带有过滤栏,默认true
- * @property {String} nodeKey 节点关键字,默认id
- * @event {Function} change 发生改变时触发
- * @event {Function} search 搜索时触发,function(keyword)
- * @event {Function} select 选择行时触发,function(item)
- * @example 见教程
- */
- export default {
- name: "cl-list-index",
- props: {
- // 序号
- index: {
- type: Number,
- default: 0,
- },
- // 列表数据
- list: Array,
- // 是否带有过滤栏
- filterable: {
- type: Boolean,
- default: true,
- },
- // 节点关键字
- nodeKey: {
- type: String,
- default: "id",
- },
- },
- data() {
- return {
- keyWord: "",
- label: "",
- alert: false,
- curr: {},
- bar: {
- top: 0,
- itemH: 0,
- },
- tops: [],
- };
- },
- watch: {
- index: {
- immediate: true,
- handler: "setData",
- },
- list: {
- handler: "doLayout",
- },
- curr: {
- handler(val) {
- this.$emit("change", val);
- },
- },
- },
- computed: {
- flist() {
- const match = (d) => (d ? d.name.includes(this.keyWord) : false);
- return this.list
- .filter((e) => e.children && e.children.find(match))
- .map((e) => {
- e.children = e.children.filter(match);
- return e;
- });
- },
- },
- mounted() {
- this.doLayout();
- },
- methods: {
- onSearch(val) {
- this.$emit("search", val);
- },
- onScroll(e) {
- let top = e.detail.scrollTop;
- let num = this.tops.filter((e) => top >= e - 60).length - 1;
- if (num < 0) {
- num = 0;
- }
- this.curr = this.list[num];
- },
- // 选择行
- selectRow(item) {
- this.$emit("select", item);
- },
- // 更新行数据,避免小程序等平台slot作用域异常问题
- updateRow(id, key, data) {
- this.list.map((e) => {
- if (e.children) {
- e.children.map((c) => {
- if (c[this.nodeKey] == id) {
- this.$set(c, key, data);
- }
- });
- }
- });
- },
- // 根据序号设置选择数据
- setData(index) {
- this.curr = this.list[index] || {};
- this.label = this.curr.label;
- },
- toRow(e) {
- this.alert = true;
- this.curr = e;
- },
- barMove(e) {
- const max = this.list.length;
- let index = parseInt((e.touches[0].clientY - this.bar.top) / this.bar.itemH);
- if (index >= max) {
- index = max - 1;
- }
- if (index < 0) {
- index = 0;
- }
- this.curr = this.list[index];
- },
- barEnd() {
- this.label = this.curr.label;
- this.alert = false;
- },
- doLayout() {
- this.$nextTick(() => {
- // 获取索引栏大小
- uni.createSelectorQuery()
- .in(this)
- .select(`.cl-li__bar-list`)
- .boundingClientRect((res) => {
- this.bar.top = res.top;
- this.bar.itemH = parseInt(res.height / this.list.length);
- })
- .exec();
- // 获取当前距离顶部的高度
- uni.createSelectorQuery()
- .in(this)
- .select(".cl-li")
- .boundingClientRect((res) => {
- // 获取每项距离顶部的高度
- uni.createSelectorQuery()
- .in(this)
- .selectAll(".cl-li__header")
- .fields({
- rect: true,
- })
- .exec((d) => {
- this.tops = d[0].map((e) => e.top - res.top);
- });
- })
- .exec();
- });
- },
- },
- };
- </script>
|