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.
141 lines
3.1 KiB
141 lines
3.1 KiB
<template>
|
|
<view class="pageBgImg">
|
|
<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>
|
|
|
|
<view class="card2">
|
|
<view class="row">
|
|
<view class="lab">退款原因</view>
|
|
<view class="val">申请同城转校</view>
|
|
<view class="icon">
|
|
<u-icon name="arrow-right"></u-icon>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab"></view>
|
|
<view class="val">此操作容易造成您已有学时丢失,请谨慎!</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab">退款金额</view>
|
|
<view class="val">
|
|
<u--input placeholder="请输入手机号" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
</view>
|
|
<view class="tpsHui">退款金额不可超过¥2000.00</view>
|
|
</view>
|
|
<view class="h1">收款信息</view>
|
|
<view class="card">
|
|
<view class="row">
|
|
<view class="lab">持卡人</view>
|
|
<view class="val">
|
|
<u--input placeholder="请输入" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab">手机号</view>
|
|
<view class="val">
|
|
<view class="flex-b">
|
|
<view class="inputBox">
|
|
<u--input placeholder="请输入" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
<view class="code">获取验证码</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab">验证码</view>
|
|
<view class="val">
|
|
<u--input placeholder="请输入" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab">卡号</view>
|
|
<view class="val">
|
|
<view class="flex-b">
|
|
<view class="inputBox">
|
|
<u--input placeholder="请输入" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
<view class="scan">
|
|
<image src="@/static/images/userCenter/btn_yinhangkax.png" mode=""></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="lab">开户行</view>
|
|
<view class="val">
|
|
<u--input placeholder="请输入" border="none" clearable type="number" maxlength="11" v-model="FormData.phone"></u--input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btnBg">提交</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
FormData: {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.card {
|
|
.tpsBox {
|
|
.row {
|
|
.icon {
|
|
img {
|
|
|
|
}
|
|
}
|
|
|
|
.tps {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.card2 {
|
|
.row {
|
|
.lab {
|
|
|
|
}
|
|
|
|
.val {
|
|
|
|
}
|
|
|
|
.icon {
|
|
u-icon {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.tpsHui {
|
|
|
|
}
|
|
}
|
|
|
|
.h1 {
|
|
|
|
}
|
|
|
|
.btnBg {
|
|
|
|
}
|
|
</style>
|