recharge.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <text>对公付款资料</text>
  5. <text>点击下载对公转账相关资料</text>
  6. </view>
  7. <view class="card">
  8. <u-form label-width="150" :model="form" ref="uForm">
  9. <u-form-item label="账户名称:">
  10. <u-input v-model="form.name" />
  11. </u-form-item>
  12. <u-form-item label="账户号码:">
  13. <u-input v-model="form.intro" />
  14. </u-form-item>
  15. <u-form-item label="开户银行:">
  16. <u-input v-model="form.intro" />
  17. </u-form-item>
  18. <u-form-item label-width="250" label="基本存款账户编号:">
  19. <u-input v-model="form.intro" />
  20. </u-form-item>
  21. </u-form>
  22. </view>
  23. <view style="position: fixed;bottom: 25%;left: 18%;right: 18%;width: 100%;">
  24. <view class="flex flex-direction" style="width: 64%;">
  25. <view hover-class="hoverClass" class="cu-btn btn-bg-color" style="height: 78rpx;">
  26. 提交转账凭证
  27. </view>
  28. <view @click="$jump('records')" class="text-center margin-top-50 btn-color " style="text-decoration: underline;">
  29. <text >开票记录</text>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. form:{
  40. name:'',
  41. intro:''
  42. }
  43. }
  44. },
  45. methods: {
  46. }
  47. }
  48. </script>
  49. <style lang="scss" scoped>
  50. .content {
  51. margin: 20rpx;
  52. }
  53. .top{
  54. padding:10rpx 20rpx 20rpx;
  55. display: flex;
  56. justify-content: space-between;
  57. text:first-child{
  58. font-weight: 800;
  59. font-size: 36rpx;
  60. }
  61. text:last-child{
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: flex-end;
  65. font-size: 26rpx;
  66. color: #3d75ca;
  67. }
  68. }
  69. .card {
  70. border-radius: 20rpx;
  71. background-color: #FFFFFF;
  72. padding: 20rpx;
  73. }
  74. </style>