baobei-list.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view class="baobei-list">
  3. <view class="baobei-item u-flex u-row-between" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  4. <view class="left u-flex-col u-flex-1">
  5. <text>意向项目:{{item.property_name}}</text>
  6. <text>意向区域:{{item.area_name}}</text>
  7. <text>预约看房时间:{{item.time}}</text>
  8. <text>报备时间:{{item.create_at}}</text>
  9. </view>
  10. <view class="right" style="background-color: rgba(240, 127, 48, 1);" v-if="item.status == 1">审核中</view>
  11. <view class="right" style="background-color: rgba(68, 220, 37, 1);" v-if="item.status == 2">已通过</view>
  12. <view class="right" style="background-color: rgba(220, 75, 37, 1);" v-if="item.status == 3">审核失败</view>
  13. <view class="right" style="background-color: rgba(204, 204, 204, 1);" v-if="item.status == 4">已失效</view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. list: [],
  22. page: 1
  23. }
  24. },
  25. onLoad() {
  26. this.getdata()
  27. },
  28. methods: {
  29. getdata() {
  30. this.$u.post('/api/Report/report_list', {
  31. page: this.page,
  32. page_num: 20
  33. }).then(res => {
  34. if(res.code!=0){
  35. this.list = this.list.concat(res.data)
  36. console.log(this.list);
  37. }
  38. })
  39. },
  40. toinfo(item) {
  41. uni.navigateTo({
  42. url: "./baobei-info?id=" + item.id
  43. })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss">
  49. page {
  50. background-color: rgba(245, 245, 245, 1);
  51. }
  52. .baobei-list {
  53. .baobei-item {
  54. padding: 20rpx 20rpx 10rpx 20rpx;
  55. background-color: #fff;
  56. width: 702rpx;
  57. border-radius: 20rpx;
  58. margin: 20rpx auto;
  59. .right {
  60. width: 160rpx;
  61. line-height: 60rpx;
  62. border-radius: 10rpx;
  63. text-align: center;
  64. font-size: 24rpx;
  65. font-family: PingFangSC-Regular, PingFang SC;
  66. font-weight: 400;
  67. color: #FFFFFF;
  68. }
  69. .left {
  70. text {
  71. margin-bottom: 10rpx;
  72. font-size: 24rpx;
  73. font-family: PingFangSC-Regular, PingFang SC;
  74. font-weight: 400;
  75. color: #666666;
  76. }
  77. }
  78. }
  79. }
  80. </style>