You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <topNavbar title="同城转校"></topNavbar> <view class="pad"> <view class="card"> <view class="tpsBox"> <view class="row"> <view class="icon"> <image src="@/static/images/userCenter/warn.png" mode=""></image> </view> <view class="tps">请与教练协商,确认达成一致后填写协商好的退款金额</view> </view> </view> </view> <myform></myform> <view class="btnBg">提交</view> </view> </view> </template>
<script> import myform from './comp/myform' export default { components: { myform }, data() { return { } }, methods: { } } </script>
<style lang="scss" scoped> .card { padding: 12rpx 28rpx; margin-bottom: 24rpx; .tpsBox { height: 140rpx; background: #FFFFFF; border-radius: 16rpx; .row { height: 100%; display: flex; align-items: center; .icon { width: 36rpx; height: 36rpx; } .tps { padding-left: 26rpx; font-size: 28rpx; font-weight: 600; color: $themC; line-height: 1.2em; } } } } .btnBg { width: 396rpx; margin: 94rpx auto; } </style>
|