changjian-list.vue 967 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="content">
  3. <u-cell-group>
  4. <u-cell size="large" :title="item.title" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  5. <view slot="value" class="img">
  6. <image src="./static/right.png" mode="aspectFill"></image>
  7. </view>
  8. </u-cell>
  9. </u-cell-group>
  10. </view>
  11. </template>
  12. <script>
  13. import $api from '@/static/js/api.js'
  14. export default {
  15. data() {
  16. return{
  17. list: []
  18. }
  19. },
  20. onLoad() {
  21. this.getlist()
  22. },
  23. methods: {
  24. toinfo(item) {
  25. uni.navigateTo({
  26. url: '/pageC/changjian-detail?data=' + encodeURIComponent(JSON.stringify(item))
  27. })
  28. },
  29. getlist() {
  30. var _this = this
  31. $api.req({
  32. url: 'question',
  33. method: 'GET',
  34. }, function(res) {
  35. if(res.code == 10000) {
  36. _this.list = res.data
  37. }
  38. })
  39. },
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. .content {
  45. background: #FFFFFF;
  46. .img {
  47. image {
  48. width: 44rpx;
  49. height: 44rpx;
  50. }
  51. }
  52. }
  53. </style>