特易招,招聘小程序
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.

115 lines
2.2 KiB

  1. <template>
  2. <!-- 全年收支 -->
  3. <view class="page">
  4. <navbar title="全年收支" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="page-two">
  6. <view class="option">
  7. <select class="select">
  8. <option value="option1">选择项目</option>
  9. </select>
  10. </view>
  11. <view class="wire"></view>
  12. <view class="select-date">
  13. <select class="select">
  14. <option value="option1">2024</option>
  15. </select>
  16. </view>
  17. <view class="card">
  18. <view class="card-one" style="border-right: 1px dashed #BCD2FE;">
  19. <image src="../../static/image/keepAccounts/BlueWallet.png" mode="aspectFill" />
  20. <view>
  21. <view>总收入()</view>
  22. <view style="color: #3889FF;">1223</view>
  23. </view>
  24. </view>
  25. <view class="card-two">
  26. <image src="../../static/image/keepAccounts/YellowWallet.png" mode="aspectFill" />
  27. <view>
  28. <view>总支出()</view>
  29. <view style="color: #FD961A;">1223</view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="cell" style="margin-top: 40rpx;">
  34. <uv-cell v-for="(item,index) in 10" label="2024-01-23 11:30:22" title="佣金收入" value="+199.00"></uv-cell>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {}
  43. },
  44. onShow() {},
  45. methods: {
  46. }
  47. }
  48. </script>
  49. <style scoped lang="less">
  50. .page {
  51. background-color: #fff;
  52. .page-two {
  53. width: 90%;
  54. margin-left: 5%;
  55. .wire {
  56. border-bottom: 4rpx dashed rgb(168, 197, 255);
  57. }
  58. .option {
  59. padding: 40rpx 40rpx 40rpx 0rpx;
  60. .select {
  61. background-color: #EBF0FC;
  62. padding: 15rpx 20rpx;
  63. border: none;
  64. color: #4280FD;
  65. }
  66. }
  67. .select-date {
  68. padding: 30rpx 0;
  69. .select {
  70. padding: 15rpx 0rpx;
  71. border: none;
  72. color: #4280FD;
  73. }
  74. }
  75. .card {
  76. display: flex;
  77. justify-content: space-around;
  78. align-items: center;
  79. background-color: #F2F5FD;
  80. .card-one,
  81. .card-two {
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. height: 150rpx;
  86. width: 50%;
  87. font-size: 28rpx;
  88. line-height: 40rpx;
  89. }
  90. image {
  91. height: 50rpx;
  92. width: 50rpx;
  93. margin-right: 20rpx;
  94. }
  95. }
  96. }
  97. }
  98. </style>