noticeList.js 515 B

123456789101112131415161718192021
  1. app.component('notice-list', {
  2. template: `
  3. <van-cell-group style="margin-top:10px;" v-for="item in list" @click="toDetail(item.id)" inset>
  4. <van-cell :title="item.title" :label="item.update_time"></van-cell>
  5. </van-cell-group>
  6. `,
  7. data() {
  8. return {}
  9. },
  10. props: {
  11. list: {
  12. type: Array,
  13. default: [],
  14. },
  15. },
  16. methods: {
  17. toDetail(id) {
  18. location.href = "/mobile/my/noticeDetail.html?id=" + id;
  19. },
  20. },
  21. });