withdrawalDetail.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <view class="page">
  3. <!-- 明细组件,根据传值确定展示的数据 -->
  4. <MoneyDetail
  5. :withBool="true"
  6. v-for="(item, index) in moneyDetail"
  7. :itemInfo="item"
  8. :key="index"
  9. />
  10. <!-- 明细组件,根据传值确定展示的数据 -->
  11. </view>
  12. </template>
  13. <script>
  14. import MoneyDetail from "../mineComponent/moneyDetail/index.vue";
  15. export default {
  16. components: {
  17. MoneyDetail,
  18. },
  19. data() {
  20. return {
  21. //保证金提现明细数据
  22. moneyDetail: [],
  23. type: "",
  24. };
  25. },
  26. onLoad(options) {
  27. this.type = options.type;
  28. },
  29. methods: {
  30. getwithdrawalDetailList() {
  31. uni.$u.http
  32. .get(
  33. `/api/withdraw?is_page=1&page=1&limit=10&account_type=${this.type}`
  34. )
  35. .then((res) => {
  36. this.moneyDetail = res.data;
  37. this.moneyDetail.map((item) => {
  38. item.type_name = "余额提现";
  39. item.amount = "-" + item.amount;
  40. });
  41. });
  42. },
  43. },
  44. mounted() {
  45. this.getwithdrawalDetailList();
  46. uni.setBackgroundColor({
  47. backgroundColor: "#ffffff",
  48. });
  49. },
  50. };
  51. </script>
  52. <style lang="scss" scoped>
  53. .page {
  54. background-color: #fff;
  55. width: 92vw;
  56. height: 100vh;
  57. padding: 0 32rpx;
  58. }
  59. </style>