transferOrder.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="container">
  3. <view class="title">转单语音说明</view>
  4. <!-- 录音区域 -->
  5. <view class="voice">
  6. <view class="voice_box">
  7. <img src="../../static/images/repairsImg/voice.png" />
  8. </view>
  9. 点击录音
  10. </view>
  11. <view class="title">备注</view>
  12. <view class="textarea">
  13. <textarea placeholder-style="color:#CCCCCC" placeholder="请输入转单说明"></textarea>
  14. </view>
  15. <view class="btn">确认</view>
  16. </view>
  17. </template>
  18. <script>
  19. export default {
  20. data() {
  21. return {}
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .container {
  27. box-sizing: border-box;
  28. padding: 0 30rpx;
  29. .title {
  30. display: flex;
  31. align-items: center;
  32. height: 107rpx;
  33. font-size: 36rpx;
  34. font-weight: bold;
  35. }
  36. .voice {
  37. display: flex;
  38. align-items: center;
  39. height: 94rpx;
  40. font-size: 32rpx;
  41. color: #cccccc;
  42. border-radius: 10rpx;
  43. border: 1rpx solid #cccccc;
  44. .voice_box {
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. margin: 0 38rpx 0 33rpx;
  49. width: 101rpx;
  50. height: 47rpx;
  51. border-radius: 33rpx;
  52. box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
  53. img {
  54. width: 33rpx;
  55. height: 33rpx;
  56. }
  57. }
  58. }
  59. .textarea {
  60. height: 310rpx;
  61. border-radius: 10rpx;
  62. border: 1rpx solid #cccccc;
  63. textarea {
  64. box-sizing: border-box;
  65. padding: 25rpx 35rpx;
  66. width: 100%;
  67. font-size: 32rpx;
  68. }
  69. }
  70. .btn {
  71. position: absolute;
  72. bottom: 66rpx;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. margin: auto;
  77. width: 690rpx;
  78. height: 100rpx;
  79. color: #fff;
  80. font-size: 32rpx;
  81. border-radius: 12rpx;
  82. background-color: #6fb6b8;
  83. }
  84. }
  85. </style>