viewStores.vue 330 B

1234567891011121314151617181920212223
  1. <template>
  2. <uni-check-list :listData="list" noDataText="暂无门店" titleKeys="storeName" types="views"></uni-check-list>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. list: [],
  9. }
  10. },
  11. onLoad(options) {
  12. this.list = JSON.parse(options.item)
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style>
  19. </style>