duihuan.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="page">
  3. <view class="top">
  4. <view class="u-flex-col u-col-center">
  5. <view class=""><u-input :custom-style="{'width': '684rpx',
  6. 'height': '94rpx',
  7. 'background':' rgba(255,255,255,1)',
  8. 'border-radius': '48rpx',
  9. 'padding':'0 30rpx','box-sizing': 'border-box'}" v-model="value" :clearable='false' :type="type"
  10. placeholder="请输入来自樊樊直播间近3个月的订单号" /></view>
  11. <view class="button">提交转换</view>
  12. </view>
  13. <!-- <view class="u-flex " style="justify-content: flex-end;margin-top: 42rpx;">
  14. <image style="width: 32rpx;height: 33rpx;" src="static/images/kefu.png" mode=""></image>
  15. <text class="font">联系客服</text>
  16. </view> -->
  17. <button open-type="contact" class="u-flex bor" style="justify-content: flex-end;margin-top: 42rpx;background-color: transparent;border:none;outline: none;">
  18. <image style="width: 32rpx;height: 33rpx;" src="static/images/kefu.png" mode=""></image>
  19. <text class="font">联系客服</text>
  20. </button>
  21. </view>
  22. <view class="content">
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. value: '',
  31. type: 'text',
  32. };
  33. }
  34. }
  35. </script>
  36. <style lang="scss">
  37. .bor::after{
  38. border:none
  39. }
  40. .content{
  41. margin-top: -50rpx;
  42. height: 70vh;
  43. width: 750rpx;
  44. background: rgba(255,255,255,1);
  45. border-radius: 72rpx 72rpx 0rpx 0rpx;
  46. padding: 34rpx 24rpx;
  47. }
  48. .font {
  49. font-size: 28rpx;
  50. font-family: PingFang SC;
  51. font-weight: 400;
  52. line-height: 48rpx;
  53. color: #5881C1;
  54. margin-left: 16rpx;
  55. }
  56. .button {
  57. width: 486rpx;
  58. height: 90rpx;
  59. background: rgba(143, 211, 243, 1);
  60. border-radius: 46rpx;
  61. margin-top: 58rpx;
  62. font-size: 32rpx;
  63. font-family: PingFang SC;
  64. font-weight: 500;
  65. line-height: 90rpx;
  66. color: #FFFFFF;
  67. text-align: center;
  68. }
  69. .top {
  70. height: 430rpx;
  71. width: 100vw;
  72. background-color: #CFF4FE;
  73. padding: 48rpx 32rpx 46rpx;
  74. box-sizing: border-box;
  75. }
  76. </style>