| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view>
- <view class="area">
- <textarea placeholder-class="place" placeholder="请填写您的问题和意见"></textarea>
- </view>
- <view class="in-box">
- <input type="text" placeholder-class="place" placeholder="请填写您的手机号方便我和您联系"/>
- </view>
- <view class="sub-btn">
- 提交
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- page{
- .place{
- font-size:24rpx;
- }
- background:$uni-bg-color-grey;
- .area{
- padding:20rpx;
- background:#fff;
- margin:20rpx 0;
- textarea{
- width:100%;
- }
- }
- .in-box{
- padding:20rpx;
- background:#fff;
- margin-bottom:20rpx;
- }
- .sub-btn{
- width:60%;
- height:66rpx;
- line-height:66rpx;
- background:$uni-color-success;
- margin:auto;
- font-size:28rpx;
- color:#fff;
- text-align: center;
- border-radius: 4px;;
- }
- }
- </style>
|