zulin-list.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <template>
  2. <view class="content">
  3. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  4. <view class="left">
  5. <view class="hflex aend left-top">
  6. <text>租赁成功</text>
  7. <text>{{item.time}}</text>
  8. </view>
  9. <view class="left-bottom">恭喜!你已成功的提交了设备租赁</view>
  10. </view>
  11. <view class="right">
  12. <view class="btn1" v-if="item.status == 'applied'" @click="show_wx = true">添加客服</view>
  13. <view class="btn2" v-else>已完成</view>
  14. </view>
  15. </view>
  16. <u-popup :show="show_wx" @close="tosubmit" mode="center" :round="10">
  17. <kefu-wx :wxcode="wxcode" @submit="tosubmit"></kefu-wx>
  18. </u-popup>
  19. </view>
  20. </template>
  21. <script>
  22. import kefuWx from './components/kefu-wx.vue'
  23. import $api from '@/static/js/api.js'
  24. export default {
  25. components: {
  26. kefuWx
  27. },
  28. data() {
  29. return {
  30. list: [],
  31. page: 1,
  32. last_page: 1,
  33. wxcode: '',
  34. show_wx: false
  35. }
  36. },
  37. onLoad() {
  38. this.getlist()
  39. this.getcode()
  40. },
  41. onShow() {
  42. },
  43. onPullDownRefresh() {
  44. },
  45. onReachBottom() {
  46. if (this.page < this.last_page) {
  47. this.page++
  48. this.getlist()
  49. } else {
  50. uni.$u.toast('已经到底了')
  51. return
  52. }
  53. },
  54. methods: {
  55. getcode() {
  56. var that = this
  57. $api.req({
  58. url: 'config',
  59. data: {
  60. module: 'basic'
  61. }
  62. }, function(res) {
  63. that.wxcode = res.data.customer_service_qrcode
  64. })
  65. },
  66. tosubmit() {
  67. this.show_wx = false
  68. },
  69. getlist() {
  70. var _this = this
  71. $api.req({
  72. url: 'shoot-equipment-lease',
  73. method: 'GET',
  74. data: {
  75. is_page: 1,
  76. page: _this.page,
  77. limit: 10,
  78. }
  79. }, function(res) {
  80. if (res.code == 10000) {
  81. _this.list = _this.list.concat(res.data.list)
  82. _this.last_page = res.data.last_page
  83. }
  84. })
  85. }
  86. }
  87. }
  88. </script>
  89. <style lang="scss">
  90. .content {
  91. padding: 20rpx 28rpx;
  92. .list-item {
  93. background: #FFFFFF;
  94. border-radius: 20rpx;
  95. margin: 0 0 20rpx;
  96. padding: 32rpx 20rpx;
  97. .right {
  98. .btn1 {
  99. width: 160rpx;
  100. height: 64rpx;
  101. background: #00B0B0;
  102. border-radius: 40rpx;
  103. font-size: 26rpx;
  104. font-family: PingFangSC, PingFang SC;
  105. font-weight: 400;
  106. color: #FFFFFF;
  107. line-height: 64rpx;
  108. text-align: center;
  109. }
  110. .btn2 {
  111. width: 160rpx;
  112. height: 64rpx;
  113. background: #D5D5D5;
  114. border-radius: 40rpx;
  115. font-size: 26rpx;
  116. font-family: PingFangSC, PingFang SC;
  117. font-weight: 400;
  118. color: #FFFFFF;
  119. line-height: 64rpx;
  120. text-align: center;
  121. }
  122. }
  123. .left {
  124. .left-top {
  125. text:first-child {
  126. font-size: 32rpx;
  127. font-family: PingFangSC, PingFang SC;
  128. font-weight: 600;
  129. color: #333333;
  130. }
  131. text:last-child {
  132. font-size: 24rpx;
  133. font-family: SFPro, SFPro;
  134. font-weight: 400;
  135. color: #444444;
  136. padding-left: 24rpx;
  137. }
  138. }
  139. .left-bottom {
  140. padding: 20rpx 0 0;
  141. font-size: 24rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 400;
  144. color: #999999;
  145. }
  146. }
  147. }
  148. }
  149. </style>