| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view class="container">
- <view class="title">转单语音说明</view>
- <!-- 录音区域 -->
- <view class="voice">
- <view class="voice_box">
- <img src="../../static/images/repairsImg/voice.png" />
- </view>
- 点击录音
- </view>
- <view class="title">备注</view>
- <view class="textarea">
- <textarea placeholder-style="color:#CCCCCC" placeholder="请输入转单说明"></textarea>
- </view>
- <view class="btn">确认</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- box-sizing: border-box;
- padding: 0 30rpx;
- .title {
- display: flex;
- align-items: center;
- height: 107rpx;
- font-size: 36rpx;
- font-weight: bold;
- }
- .voice {
- display: flex;
- align-items: center;
- height: 94rpx;
- font-size: 32rpx;
- color: #cccccc;
- border-radius: 10rpx;
- border: 1rpx solid #cccccc;
- .voice_box {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 0 38rpx 0 33rpx;
- width: 101rpx;
- height: 47rpx;
- border-radius: 33rpx;
- box-shadow: 0px 0px 4rpx rgba(0, 0, 0, 0.25);
- img {
- width: 33rpx;
- height: 33rpx;
- }
- }
- }
- .textarea {
- height: 310rpx;
- border-radius: 10rpx;
- border: 1rpx solid #cccccc;
- textarea {
- box-sizing: border-box;
- padding: 25rpx 35rpx;
- width: 100%;
- font-size: 32rpx;
- }
- }
- .btn {
- position: absolute;
- bottom: 66rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin: auto;
- width: 690rpx;
- height: 100rpx;
- color: #fff;
- font-size: 32rpx;
- border-radius: 12rpx;
- background-color: #6fb6b8;
- }
- }
- </style>
|