dmWithDrawalRecord.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <dmDialog ref='popView' :isShowTitle="true" title="提现记录" :isShowClose="true" :isShowConfirm="false" >
  3. <view class="content">
  4. <view class="report_title">
  5. <text class="report_title_">累计提现</text>
  6. <text class="report_title_money">¥23,227,00.00</text>
  7. </view>
  8. </view>
  9. </dmDialog>
  10. </template>
  11. <script>
  12. import dmDialog from "./dmDialog.vue"
  13. export default{
  14. data(){
  15. return {
  16. }
  17. },
  18. methods:{
  19. show() {
  20. this.$refs.popView.show()
  21. },
  22. knowAction(){
  23. this.$refs.popView.hide()
  24. },
  25. },
  26. mounted() {
  27. },
  28. components:{
  29. dmDialog
  30. }
  31. }
  32. </script>
  33. <style scoped lang="scss">
  34. .content{
  35. width: 100%;
  36. height: 776rpx;
  37. }
  38. .report_title{
  39. display: flex;
  40. .report_title_{
  41. font-size: 28rpx;
  42. font-family: Verdana, Verdana-Regular;
  43. font-weight: 400;
  44. text-align: left;
  45. color: #b1b1b1;
  46. }
  47. .report_title_money{
  48. font-size: 48rpx;
  49. font-family: DIN Alternate, DIN Alternate-Bold;
  50. font-weight: 700;
  51. text-align: left;
  52. color: #fd8f3c;
  53. }
  54. }
  55. </style>