xuyuan.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="page">
  3. <view class="from_box">
  4. <view class="font">填写许愿单</view>
  5. <view class="" style="margin-top: 38rpx;"><u-input :custom-style="{
  6. 'width': '624rpx',
  7. 'height': '94rpx',
  8. 'background': 'rgba(234,234,235,1)',
  9. 'border-radius': '12rpx',
  10. 'padding':'0 30rpx','box-sizing': 'border-box'}" v-model="value" :clearable='false' :type="type"
  11. placeholder="请输入来自樊樊直播间近3个月的订单号" /></view>
  12. <view class="" style="margin-top: 36rpx;"><u-input :custom-style="{
  13. 'width': '624rpx',
  14. 'height': '94rpx',
  15. 'background': 'rgba(234,234,235,1)',
  16. 'border-radius': '12rpx',
  17. 'padding':'0 30rpx','box-sizing': 'border-box'}" v-model="value" :clearable='false' :type="type"
  18. placeholder="请输入来自樊樊直播间近3个月的订单号" /></view>
  19. <view class="" style="margin-top: 42rpx;"><u-input :custom-style="{
  20. 'width': '624rpx',
  21. 'height': '94rpx',
  22. 'background': 'rgba(234,234,235,1)',
  23. 'border-radius': '12rpx',
  24. 'padding':'0 30rpx','box-sizing': 'border-box'}" v-model="value" :clearable='false' :type="type"
  25. placeholder="请输入来自樊樊直播间近3个月的订单号" /></view>
  26. <view class="button" style="margin-top: 118rpx;">
  27. 提交愿望
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. };
  37. }
  38. }
  39. </script>
  40. <style lang="scss">
  41. .font {
  42. font-size: 40rpx;
  43. font-family: PingFang SC;
  44. font-weight: 500;
  45. line-height: 56rpx;
  46. color: #323337;
  47. }
  48. .page {
  49. width: 750rpx;
  50. min-height: 100vh;
  51. background: linear-gradient(85deg, #CFF4FE 0%, #D5E5FF 41%, #8FCCF1 100%);
  52. border: 1rpx solid rgba(0, 0, 0, 0);
  53. padding: 360rpx 24rpx 70rpx;
  54. }
  55. .button {
  56. width: 608rpx;
  57. height: 90rpx;
  58. background: rgba(143, 211, 243, 1);
  59. border-radius: 46rpx;
  60. font-size: 32rpx;
  61. font-family: PingFang SC;
  62. font-weight: 500;
  63. line-height: 90rpx;
  64. color: #FFFFFF;
  65. text-align: center;
  66. }
  67. .from_box {
  68. // margin-top: 534rpx;
  69. padding: 34rpx 38rpx 46rpx 40rpx;
  70. width: 702rpx;
  71. height: 752rpx;
  72. background: rgba(255, 255, 255, 1);
  73. border-radius: 32rpx;
  74. }
  75. </style>