data-indexed-list.vue 423 B

12345678910111213141516171819
  1. <template>
  2. <uni-data-indexed-list collection="opendb-china-cities" field="code as value, name as text, letter as group" :page-size="500" where="type==1" orderby="group asc" :show-select="true" @click="bindClick" />
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. }
  9. },
  10. methods: {
  11. bindClick(e) {
  12. console.log('点击item,返回数据' + JSON.stringify(e))
  13. }
  14. }
  15. }
  16. </script>
  17. <style></style>