W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
索引列表組件,可實現(xiàn)類似通訊錄效果。組件內(nèi)節(jié)點將被添加到列表上方。
const res = {
result: [
[{
cidx: [0, 15],
fullname: "北京市",
id: "110000",
location: {
lat: 39.90469,
lng: 116.40717
},
name: "北京",
pinyin: ["bei", "jing"]
}, {
cidx: [16, 31],
fullname: "天津市",
id: "120000",
location: {lat: 39.0851, lng: 117.19937},
name: "天津",
pinyin: ["tian", "jin"]
}, {
cidx: [32, 42],
fullname: "河北省",
id: "130000",
location: {lat: 38.03599, lng: 114.46979},
name: "河北",
pinyin: ["he", "bei"],
}, {
cidx: [43, 53],
fullname: "山西省",
id: "140000",
location: {lat: 37.87343, lng: 112.56272},
name: "山西",
pinyin: ["shan", "xi"],
}]
]
}
Page({
onLoad(options) {
this.getCitys()
},
onChoose(e) {
console.log('onChoose', e)
},
getCitys() {
const _this = this
const cities = res.result[0]
// 按拼音排序
cities.sort((c1, c2) => {
let pinyin1 = c1.pinyin.join('')
let pinyin2 = c2.pinyin.join('')
return pinyin1.localeCompare(pinyin2)
})
// 添加首字母
const map = new Map()
for (const city of cities) {
const alpha = city.pinyin[0].charAt(0).toUpperCase()
if (!map.has(alpha)) map.set(alpha, [])
map.get(alpha).push({ name: city.fullname })
}
const keys = []
for (const key of map.keys()) {
keys.push(key)
}
keys.sort()
const list = []
for (const key of keys) {
list.push({
alpha: key,
subItems: map.get(key)
})
}
_this.setData({list})
}
})
<mp-indexList class="city__list" list="{{list}}" bindchoose="onChoose">
<view class="page">
<view class="page__hd">
<view class="page__title">Index List</view>
<view class="page__desc">類通訊錄列表</view>
</view>
<view class="page__bd">
</view>
</view>
</mp-indexList>
屬性 | 類型 | 默認值 | 必填 | 說明 |
---|---|---|---|---|
list | Array<listItem> | [] | 是 | 列表數(shù)據(jù) |
vibrated | boolean | true | 否 | 索引上滑動時是否產(chǎn)生振動,僅 iOS 生效 |
bindchoose | eventhandle | 否 | 選擇列表項, e.detail={name} |
屬性 | 類型 | 說明 |
---|---|---|
alpha | string | 首字母(大寫) |
subItems | Array<subItem> | 子元素集合 |
屬性 | 類型 | 說明 |
---|---|---|
name | string | 名稱 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: