billView.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="center">
  3. <view class="formData">
  4. <view class="flex border-bottom mt20 align-center">
  5. <view class="left">提现金额</view>
  6. <view class="flex right">
  7. <u--input placeholder="暂无" inputAlign='right' border="none"
  8. v-model="dataInfo.amountMoney" readonly>
  9. </u--input>
  10. <text v-if="dataInfo.amountMoney" style="margin-left: 10rpx;">元</text>
  11. </view>
  12. </view>
  13. <view class="flex border-bottom mt20 align-center">
  14. <view class="left">发起时间</view>
  15. <view class="flex right">
  16. <u--input placeholder="暂无" inputAlign='right' border="none"
  17. v-model="dataInfo.createDate" readonly>
  18. </u--input>
  19. </view>
  20. </view>
  21. <view class="flex border-bottom mt20 align-center">
  22. <view class="left">到账时间</view>
  23. <view class="flex right">
  24. <u--input placeholder="暂无" inputAlign='right' border="none"
  25. v-model="dataInfo.paymentDate" readonly>
  26. </u--input>
  27. </view>
  28. </view>
  29. <view class="flex border-bottom mt20 align-center">
  30. <view class="left">流水号</view>
  31. <view class="flex right">
  32. <u--input placeholder="暂无" inputAlign='right' border="none"
  33. v-model="dataInfo.serialNumber" readonly>
  34. </u--input>
  35. </view>
  36. </view>
  37. <view class="flex border-bottom mt20 align-center">
  38. <view class="left">到账银行</view>
  39. <view class="flex right">
  40. <u--input placeholder="暂无" inputAlign='right' border="none"
  41. v-model="dataInfo.bankDeposit" readonly>
  42. </u--input>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </template>
  48. <script>
  49. export default{
  50. data(){
  51. return{
  52. id:"",
  53. dataInfo:{}
  54. }
  55. },
  56. onLoad(options) {
  57. this.id = options.id
  58. this.getList()
  59. },
  60. onShow() {},
  61. methods:{
  62. getList(){
  63. this.$request.baseRequest('get', '/hyCargoOwnerCapitalInfo/gethyCargoOwnerCapitalInfo', {
  64. id: this.id
  65. }).then(res => {
  66. this.dataInfo = res.data
  67. })
  68. }
  69. }
  70. }
  71. </script>
  72. <style scoped lang="scss">
  73. .center{
  74. padding: 20rpx 0;
  75. background: #F5F6FA;
  76. height: calc(100vh - 10vh);
  77. }
  78. .formData{
  79. padding: 20rpx 40rpx;
  80. background: #ffffff;
  81. .left{
  82. text-align: left;
  83. width: 20%;
  84. }
  85. .right{
  86. text-align: right;
  87. width: 80%;
  88. }
  89. }
  90. </style>