wallet.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view>
  3. <view class="my_top">
  4. <image src="../../static/images/top-bg.png" class="bg"></image>
  5. </view>
  6. <view class="list animated fadeInDown">
  7. <view class="uni-flex uni-row center">
  8. <view class="wallet">
  9. <text>我的服务点数</text>
  10. <text class="num">{{ user.wallet }}</text>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="uni-flex uni-row" style="padding:1rem; ">
  15. <button type="primary" style="-webkit-flex: 1;flex: 1;" @click="goto('/pages/wallet/topup/edit')">充值</button>
  16. <view class="text" style="width: 15rpx;"></view>
  17. <button type="default" style="-webkit-flex: 1;flex: 1;" @click="goto('/pages/wallet/topdown/edit')">提现</button>
  18. </view>
  19. <view class="tab">
  20. <u-tabs :list="tab" @click="click" :lineHeight="5"></u-tabs>
  21. </view>
  22. <view class="goodsList">
  23. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  24. <view class="title">{{ item.tagTypeName }}
  25. <view class="state" v-if="item.tagType == 1 ">
  26. <text class="icon" style="color:#13ce66">&#xe830;</text>
  27. <text>+{{ item.amount }}</text>
  28. </view>
  29. <view class="state" v-if="item.tagType == 2 ">
  30. <text class="icon" style="color:#FF2222">&#xe830;</text>
  31. <text>-{{ item.amount }}</text>
  32. </view>
  33. <view class="state" v-if="item.tagType == 3 ">
  34. <text class="icon" style="color:#CC8855">&#xe830;</text>
  35. <text>-{{ item.amount }}</text>
  36. </view>
  37. </view>
  38. <view class="op">
  39. <view class="date">{{ item.recordTime }}</view>
  40. </view>
  41. </view>
  42. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  43. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. user: {},
  52. tab: [{
  53. name: '全部',
  54. tagType: ''
  55. },
  56. {
  57. name: '充值',
  58. tagType: '1'
  59. },
  60. {
  61. name: '提现',
  62. tagType: '2'
  63. },
  64. {
  65. name: '扣除',
  66. tagType: '3'
  67. }
  68. ],
  69. param: {
  70. pageNo: 1,
  71. pageSize: 10,
  72. finishStatus:1
  73. },
  74. list: [],
  75. loadMore: true,
  76. id: '',
  77. flag: '',
  78. };
  79. },
  80. onLoad() {
  81. this.user = this.getUser()
  82. uni.$on('face', res => {
  83. if (this.flag == 1) {
  84. this.http.request({
  85. url: '/level-one-server/app/TbOrder/confirmOrder',
  86. data: {
  87. orderId: this.id
  88. },
  89. success: resp => {
  90. uni.showToast({
  91. title: '订单确认成功'
  92. });
  93. this.refresh();
  94. }
  95. });
  96. } else if (this.flag == 2) {
  97. this.http.request({
  98. url: '/level-one-server/app/TbOrder/applyOrder',
  99. data: {
  100. orderId: this.id
  101. },
  102. success: resp => {
  103. uni.showToast({
  104. title: '进口申报确认成功'
  105. });
  106. this.refresh();
  107. }
  108. });
  109. }
  110. })
  111. },
  112. onShow() {
  113. this.user = this.getUser();
  114. this.getData();
  115. },
  116. methods: {
  117. downOrder(item) {
  118. uni.showModal({
  119. title: '提示',
  120. content: '确定下架?',
  121. success: res => {
  122. if (res.confirm) {
  123. this.http.request({
  124. url: '/level-one-server/app/TbOrder/down',
  125. data: {
  126. id: item.id
  127. },
  128. success: res => {
  129. uni.showToast({
  130. title: '提交成功'
  131. });
  132. item.upStatus = 1;
  133. }
  134. });
  135. }
  136. }
  137. });
  138. },
  139. getData() {
  140. this.param.peopleId = this.user.fkId;
  141. this.http.request({
  142. url: '/level-one-server/app/WalletManage/getList',
  143. loading: 'false',
  144. data: this.param,
  145. success: res => {
  146. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  147. if (res.data.data) {
  148. this.list = res.data.data;
  149. console.log("---1---=" + this.list[0].finishStatus)
  150. console.log("---2---=" + this.list[0].resaleStatus)
  151. }
  152. }
  153. });
  154. },
  155. // 点击tab切换
  156. click(e) {
  157. this.param.tagType = e.tagType;
  158. this.refresh()
  159. },
  160. detail(item) {
  161. let urlStr=''
  162. if(item.tagType==1){
  163. urlStr='/pages/wallet/topup/detail?id='
  164. }
  165. if(item.tagType==2){
  166. urlStr='/pages/wallet/topdown/detail?id='
  167. }
  168. if(item.tagType==3){
  169. urlStr='/pages/wallet/detail?id='
  170. }
  171. uni.navigateTo({
  172. url: urlStr + item.id
  173. });
  174. },
  175. goto(url) {
  176. uni.navigateTo({ url: url });
  177. },
  178. resale(item) {
  179. uni.navigateTo({
  180. url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)
  181. });
  182. },
  183. orderRefund(id) {
  184. this.http.request({
  185. url: '/level-one-server/app/TbOrder/orderRefund',
  186. data: {
  187. id: id
  188. },
  189. method: 'POST',
  190. success: resp => {
  191. uni.showToast({
  192. title: '操作成功'
  193. });
  194. this.refresh();
  195. }
  196. });
  197. },
  198. updateResalePrice(id) {
  199. uni.navigateTo({
  200. url: '/pages/market/two/leader/updatePrice?id=' + id
  201. });
  202. },
  203. // 刷新数据
  204. refresh() {
  205. this.loadMore = true;
  206. this.param.pageNo = 1;
  207. this.list = [];
  208. this.getData();
  209. }
  210. },
  211. //下拉刷新
  212. onPullDownRefresh() {
  213. setTimeout(() => {
  214. this.refresh();
  215. uni.stopPullDownRefresh();
  216. }, 1000);
  217. },
  218. //上拉加载
  219. onReachBottom() {
  220. if (this.loadMore) {
  221. this.param.pageNo++;
  222. this.getData();
  223. }
  224. }
  225. };
  226. </script>
  227. <style lang="scss">
  228. page {
  229. background-color: #f5f5f5;
  230. }
  231. .my_top {
  232. position: relative;
  233. overflow: hidden;
  234. image {
  235. width: 100%;
  236. }
  237. }
  238. .uni-flex {
  239. display: flex;
  240. flex-direction: row;
  241. }
  242. .uni-flex-item {
  243. flex: 1;
  244. }
  245. .uni-row {
  246. flex-direction: row;
  247. }
  248. .list {
  249. position: relative;
  250. padding: 0px 20px 10px 20px;
  251. margin-top: -226px;
  252. .center{
  253. -webkit-justify-content: center;
  254. justify-content: center;
  255. text-align: center;
  256. .wallet {
  257. display: flex;
  258. flex-direction: column;
  259. background-color: white;
  260. width: 15rem;
  261. height: 7rem;
  262. border-radius: 50%;
  263. .num {
  264. color: #0000CC;
  265. font-size: 43px;
  266. }
  267. }
  268. .rbtn {
  269. padding-left: 15px;
  270. width: 60%;
  271. }
  272. }
  273. }
  274. .state {
  275. margin-right: -70px;
  276. }
  277. .down_btn {
  278. color: #f0f4f7;
  279. width: 100px;
  280. background: #f9ae3d;
  281. text-align: center;
  282. border-radius: 10px;
  283. font-size: 12px;
  284. padding: 2px 5px;
  285. }
  286. </style>