refundMoneyList.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <view class="content">
  3. <view class="topView">
  4. <!-- tab -->
  5. <view class="tab">
  6. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">待处理</view>
  7. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">申请记录</view>
  8. </view>
  9. <!-- 搜索 -->
  10. <view class="searchBoxBg">
  11. <searchBox placeholder="订单号、售后单号" @search='search($event)'></searchBox>
  12. </view>
  13. </view>
  14. <!-- list -->
  15. <view class="listContent">
  16. <view class="itemBg" v-for="(item,index) in itemData">
  17. <view class="firstView">
  18. <view style="font-size: 24rpx; color: #999999;">申请单号:{{item.ServiceCode}}</view>
  19. <view class="rightView">
  20. <image src="../../static/img/icon_tuikuan2.png" mode="" style="width: 30rpx; height: 30rpx; margin-right: 10rpx;"></image>
  21. <view style="color: #666666; font-size: 24rpx;">退款</view>
  22. </view>
  23. </view>
  24. <view class="shopName">{{item.ShopName}}</view>
  25. <view class="itemName">{{item.itemNameList}}</view>
  26. <view class="itemName">{{item.goodNameList}}</view>
  27. <!-- ServiceState":1待处理2退款成功3退款关闭 -->
  28. <view class="stateView" v-if="item.ServiceState==1">待平台处理</view>
  29. <view class="stateView" v-if="item.ServiceState==2">退款成功</view>
  30. <view class="stateView" v-if="item.ServiceState==2 && item.MoneyState==1">退款成功 退款金额¥{{item.Money}}元</view>
  31. <view class="stateView" v-if="item.ServiceState==3">退款关闭</view>
  32. <view style="display: flex; justify-content: flex-end;">
  33. <view class="detail" @click="goDetail(item.ID)">退款详情</view>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- 上拉 加载更多 -->
  38. <view class="noMore" v-if="noMoreShow">没有更多数据</view>
  39. <!-- 无数据空白页 -->
  40. <view class="nodataBox" v-if="itemData.length == 0">
  41. <image src="../../static/img/pic_empty_def.png" mode="widthFix" class="nodataImg"></image>
  42. <view class="noTxt">暂无数据</view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import searchBox from '@/components/searchBox/searchBox.vue'
  48. export default {
  49. components: {
  50. searchBox
  51. },
  52. data() {
  53. return {
  54. searchValue: '',
  55. page: 1,
  56. tabIndex: 1,
  57. itemData:[],
  58. noMoreShow: false,
  59. }
  60. },
  61. onLoad() {
  62. this.getData();
  63. },
  64. onShow() {
  65. this.page = 1
  66. this.getData();
  67. },
  68. methods: {
  69. goDetail(id){
  70. uni.navigateTo({
  71. url:'refundMoneyDetail?id='+id
  72. })
  73. },
  74. tabClick(num) {
  75. this.tabIndex = num;
  76. this.page = 1;
  77. this.getData()
  78. },
  79. search(val) {
  80. // console.log(val);
  81. this.searchValue = val
  82. this.page = 1
  83. this.getData()
  84. },
  85. getData() {
  86. uni.showLoading({
  87. title: '加载中'
  88. })
  89. var serviceStateStr = ''
  90. if (this.tabIndex == 1) {
  91. serviceStateStr = '1'
  92. }
  93. let url = 'worldKeepCar/keepCarMy/listTMSheetAfterServicePage',
  94. params = {
  95. page: this.page,
  96. limit: 10,
  97. name: this.searchValue,
  98. serviceState:serviceStateStr,
  99. }
  100. this.$http(url, params, 'GET').then(res => {
  101. uni.hideLoading()
  102. var list = res.data.Items
  103. // 处理 undefined和null转为空白字符串
  104. list.forEach((item, index) => {
  105. for (const key in item) {
  106. item[key] = this.$praseStrEmpty(item[key])
  107. }
  108. })
  109. if (this.page == 1) {
  110. this.itemData = list
  111. } else {
  112. this.itemData = this.itemData.concat(list)
  113. }
  114. if (list.length < 10) {
  115. this.noMoreShow = false
  116. } else {
  117. this.noMoreShow = true
  118. }
  119. })
  120. }
  121. },
  122. onPullDownRefresh() {
  123. this.page = 1;
  124. this.getData()
  125. setTimeout(function() {
  126. uni.stopPullDownRefresh();
  127. }, 1000);
  128. },
  129. onReachBottom() {
  130. this.page++;
  131. this.getData()
  132. }
  133. }
  134. </script>
  135. <style>
  136. .content {
  137. background: #F4F5F7;
  138. min-height: 100vh;
  139. }
  140. .topView {
  141. background: #FFFFFF;
  142. position: fixed;
  143. width: 100%;
  144. height: 210rpx;
  145. z-index: 99;
  146. }
  147. .tab {
  148. background: #FFFFFF;
  149. display: flex;
  150. justify-content: space-around;
  151. line-height: 90rpx;
  152. height: 90rpx;
  153. width: 100%;
  154. }
  155. .tabLine {
  156. text-align: center;
  157. }
  158. .tabActive {
  159. color: #FF4F00;
  160. border-bottom: 4rpx solid #FF4F00;
  161. }
  162. .searchBoxBg {
  163. width: 100%;
  164. background-color: #FFFFFF;
  165. border-top: 1rpx solid #EEEEEE;
  166. }
  167. .searchBox {
  168. display: flex;
  169. height: 72rpx;
  170. margin: 24rpx;
  171. background-color: #F4F5F7;
  172. border-radius: 36rpx;
  173. }
  174. .listContent{
  175. padding-top: 210rpx;
  176. padding-bottom: 20rpx;
  177. }
  178. .itemBg {
  179. background-color: #FFFFFF;
  180. margin: 20rpx 24rpx;
  181. border-radius: 10rpx;
  182. padding: 20rpx;
  183. }
  184. .firstView{
  185. padding-bottom: 20rpx;
  186. display: flex;
  187. justify-content: space-between;
  188. }
  189. .rightView{
  190. display: flex;
  191. align-items: center;
  192. }
  193. .shopName{
  194. padding-bottom: 20rpx;
  195. color: #333333;
  196. font-size: 26rpx;
  197. }
  198. .itemName{
  199. padding-bottom: 20rpx;
  200. color: #666666;
  201. font-size: 24rpx;
  202. }
  203. .stateView{
  204. background-color: #F8F9FB;
  205. border-radius: 10rpx;
  206. color: #333333;
  207. font-size: 26rpx;
  208. padding: 20rpx;
  209. }
  210. .detail{
  211. color: #FF2400;
  212. font-size: 26rpx;
  213. margin-top: 20rpx;
  214. width: 150rpx;
  215. height: 56rpx;
  216. line-height: 56rpx;
  217. text-align: center;
  218. border-radius: 36rpx;
  219. border: 1rpx #FF2400 solid;
  220. }
  221. /* 空白页css */
  222. .nodataBox {
  223. text-align: center;
  224. }
  225. .nodataImg {
  226. width: 400rpx;
  227. padding-top: 300rpx;
  228. }
  229. .noTxt {
  230. font-size: 30rpx;
  231. color: #999999;
  232. padding-top: 50rpx;
  233. }
  234. .noMore {
  235. text-align: center;
  236. line-height: 50rpx;
  237. color: #999999;
  238. font-size: 28rpx;
  239. }
  240. </style>