baobei-list.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. this.list = this.list.concat(res.data)
  35. })
  36. },
  37. toinfo(item) {
  38. uni.navigateTo({
  39. url: "./baobei-info?id=" + item.id
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. page {
  47. background-color: rgba(245, 245, 245, 1);
  48. }
  49. .baobei-list {
  50. .baobei-item {
  51. padding: 20rpx 20rpx 10rpx 20rpx;
  52. background-color: #fff;
  53. width: 702rpx;
  54. border-radius: 20rpx;
  55. margin: 20rpx auto;
  56. .right {
  57. width: 160rpx;
  58. line-height: 60rpx;
  59. border-radius: 10rpx;
  60. text-align: center;
  61. font-size: 24rpx;
  62. font-family: PingFangSC-Regular, PingFang SC;
  63. font-weight: 400;
  64. color: #FFFFFF;
  65. }
  66. .left {
  67. text {
  68. margin-bottom: 10rpx;
  69. font-size: 24rpx;
  70. font-family: PingFangSC-Regular, PingFang SC;
  71. font-weight: 400;
  72. color: #666666;
  73. }
  74. }
  75. }
  76. }
  77. </style>