yuyue-list.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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>{{item.status == 'refused' ? '预约失败' : '预约成功'}}</text>
  7. <text>{{item.date}}</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="btn1" v-else-if="item.status == 'refused'" @click="toyuyue">重新预约</view>
  14. <view class="btn2" v-else>已完成</view>
  15. </view>
  16. </view>
  17. <u-popup :show="show_wx" @close="tosubmit" mode="center" :round="10">
  18. <kefu-wx :wxcode="wxcode" @submit="tosubmit"></kefu-wx>
  19. </u-popup>
  20. </view>
  21. </template>
  22. <script>
  23. import kefuWx from './components/kefu-wx.vue'
  24. import $api from '@/static/js/api.js'
  25. export default {
  26. components: {
  27. kefuWx
  28. },
  29. data() {
  30. return {
  31. list: [],
  32. page: 1,
  33. last_page: 1,
  34. wxcode: '',
  35. show_wx: false,
  36. }
  37. },
  38. onLoad() {
  39. this.getlist()
  40. this.getcode()
  41. },
  42. onShow() {
  43. },
  44. onPullDownRefresh() {
  45. },
  46. onReachBottom() {
  47. if (this.page < this.last_page) {
  48. this.page++
  49. this.getlist()
  50. } else {
  51. uni.$u.toast('已经到底了')
  52. return
  53. }
  54. },
  55. methods: {
  56. getcode() {
  57. var that = this
  58. $api.req({
  59. url: 'config',
  60. data: {
  61. module: 'basic'
  62. }
  63. }, function(res) {
  64. that.wxcode = res.data.customer_service_qrcode
  65. })
  66. },
  67. tosubmit() {
  68. this.show_wx = false
  69. },
  70. toyuyue() {
  71. uni.navigateTo({
  72. url: '/pageB/yuyue-vip'
  73. })
  74. },
  75. getlist() {
  76. var _this = this
  77. $api.req({
  78. url: 'shoot-appointment',
  79. method: 'get',
  80. data: {
  81. is_page: 1,
  82. page: _this.page,
  83. limit: 10
  84. }
  85. }, function(res) {
  86. if (res.code == 10000) {
  87. _this.list = _this.list.concat(res.data.list)
  88. _this.last_page = res.data.last_page
  89. console.log('list=', _this.list);
  90. }
  91. })
  92. }
  93. }
  94. }
  95. </script>
  96. <style lang="scss">
  97. .content {
  98. padding: 20rpx 28rpx;
  99. .list-item {
  100. background: #FFFFFF;
  101. border-radius: 20rpx;
  102. margin: 0 0 20rpx;
  103. padding: 32rpx 20rpx;
  104. .right {
  105. .btn1 {
  106. width: 160rpx;
  107. height: 64rpx;
  108. background: #00B0B0;
  109. border-radius: 40rpx;
  110. font-size: 26rpx;
  111. font-family: PingFangSC, PingFang SC;
  112. font-weight: 400;
  113. color: #FFFFFF;
  114. line-height: 64rpx;
  115. text-align: center;
  116. }
  117. .btn2 {
  118. width: 160rpx;
  119. height: 64rpx;
  120. background: #D5D5D5;
  121. border-radius: 40rpx;
  122. font-size: 26rpx;
  123. font-family: PingFangSC, PingFang SC;
  124. font-weight: 400;
  125. color: #FFFFFF;
  126. line-height: 64rpx;
  127. text-align: center;
  128. }
  129. }
  130. .left {
  131. .left-top {
  132. text:first-child {
  133. font-size: 32rpx;
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 600;
  136. color: #333333;
  137. }
  138. text:last-child {
  139. font-size: 24rpx;
  140. font-family: SFPro, SFPro;
  141. font-weight: 400;
  142. color: #444444;
  143. padding-left: 24rpx;
  144. }
  145. }
  146. .left-bottom {
  147. padding: 20rpx 0 0;
  148. font-size: 24rpx;
  149. font-family: PingFangSC, PingFang SC;
  150. font-weight: 400;
  151. color: #999999;
  152. }
  153. }
  154. }
  155. }
  156. </style>