index.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <view>
  3. <view class="von-index-bar">
  4. <view class="text-center mb-1">
  5. <h3 >营收统计</h3>
  6. <h6>今日收益(元)</h6>
  7. <h1>1141.00</h1>
  8. </view>
  9. <view class="flex-spal">
  10. <text>昨日收益</text>
  11. <h3>1024.00</h3>
  12. <text>昨日收益</text>
  13. <h3>1024.00</h3>
  14. </view>
  15. </view>
  16. <view class="von-index-row">
  17. <u-cell-group>
  18. <u-cell-item title="收益明细" value="+1141.00" :arrow="arrow"></u-cell-item>
  19. </u-cell-group>
  20. <u-row>
  21. <u-col :span="6">
  22. <view class="von-index-col">今日售票笔数<h3>188</h3></view>
  23. </u-col>
  24. <u-col :span="6">
  25. <view class="von-index-col">线上购票收款<h3>957.00</h3></view>
  26. </u-col>
  27. </u-row>
  28. <u-row>
  29. <u-col :span="6">
  30. <view class="von-index-col">微信支付收款<h3>888.00</h3></view>
  31. </u-col>
  32. <u-col :span="6">
  33. <view class="von-index-col">支付宝收款<h3>888.00</h3></view>
  34. </u-col>
  35. </u-row>
  36. <u-row>
  37. <u-col :span="6">
  38. <view class="von-index-col">现金收款<h3>888.00</h3></view>
  39. </u-col>
  40. <u-col :span="6">
  41. <view class="von-index-col">纸质车票收款<h3>888.00</h3></view>
  42. </u-col>
  43. </u-row>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. import api from './index.js'
  49. export default {
  50. mounted() {
  51. document.body.style.backgroundColor = '#eee';
  52. },
  53. destroyed() {
  54. document.body.style.backgroundColor = '';
  55. }
  56. }
  57. </script>
  58. <style>
  59. </style>