江西小程序管理端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.7 KiB

1 year ago
1 year ago
  1. <template>
  2. <view class="content">
  3. <view class="userInfo">
  4. <view class="tit">Hi,大乔教练</view>
  5. <view class="flex userRow">
  6. <view class="schoolIcon">
  7. <image src="@/static/images/index/ic_jiaxiao.png" mode=""></image>
  8. </view>
  9. <view class="schoolName oneRowText">翔力驾校</view>
  10. <view class="tag">合作教练</view>
  11. </view>
  12. </view>
  13. <view class="card priceBox">
  14. <view class="blueLab">今日已结算金额</view>
  15. <view class="price">36333.66</view>
  16. <view class="flex-b">
  17. <view class="data">截止2023/08/08 11:00:00</view>
  18. <view class="refresh">
  19. <view class="text">刷新</view>
  20. <view class="icon">
  21. <image src="@/static/images/index/ic_shuaxin.png" mode=""></image>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="h1"> 结算统计</view>
  27. <view class="tab_box">
  28. <tabDate/>
  29. </view>
  30. <view class="card">
  31. <view class="chart">
  32. <columnChart/>
  33. </view>
  34. </view>
  35. <view class="flex-b">
  36. <view class="h1">结算明细</view>
  37. <moreRight text="更多"/>
  38. </view>
  39. <view class="record">
  40. <view class="card" v-for="(item,index) in 10" :key="index">
  41. <stage/>
  42. </view>
  43. </view>
  44. <view class="moreBtn" @click="$goPage('/pages/indexEntry/settlement/settlement')">查看更多</view>
  45. <UserTab name ='统计'></UserTab>
  46. </view>
  47. </template>
  48. <script>
  49. import stage from './stage'
  50. import columnChart from './columnChart'
  51. import tabDate from './tabDate'
  52. export default {
  53. components: { stage, columnChart, tabDate },
  54. data() {
  55. return {
  56. value1: '',
  57. currentTab: 1,
  58. }
  59. },
  60. onLoad() {
  61. },
  62. methods: {
  63. tabClick(num) {
  64. this.currentTab = num
  65. },
  66. }
  67. }
  68. </script>
  69. <style lang="scss" scoped>
  70. @import './comp.scss'
  71. </style>