|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <template>
- <view class="container">
- <u-form label-width='200' :model="state.form" ref="uForm">
- <u-form-item label="姓名">
- <u-input v-model="state.form.name" placeholder='请输入姓名'/>
- </u-form-item>
- <u-form-item label="银行卡号">
- <u-input v-model="state.form.card" placeholder='请输入银行卡号'/>
- </u-form-item>
- <u-form-item label="开户银行">
- <u-input v-model="state.form.bank" placeholder='请输入开户银行'/>
- </u-form-item>
- <!-- <u-form-item label="身份证">
- <u-input v-model="state.form.agentgender" />
- </u-form-item> -->
- <!-- <u-form-item label="开户银行">
- <u-input v-model="state.form.begindate" type="select" />
- </u-form-item> -->
- <!-- <u-form-item label="银行预留手机号">
- <u-input v-model="state.form.phone" />
- </u-form-item> -->
- <u-form-item label="银行预留手机号">
- <u-input v-model="state.form.phone" placeholder='请输入银行预留手机号'/>
- <u-button type="success" size="mini" @click="getCode" v-if="waitTime==0">获取验证码</u-button>
- <text class="btn" v-else>{{waitTime}}后重试</text>
- </u-form-item>
- <u-form-item label="验证码" placeholder='请输入验证码'>
- <u-input v-model="state.form.code" />
- </u-form-item>
- </u-form>
- <!-- <view class="uni-list" style='font-size:32rpx'>
- <view class="uni-list-cell uni-list-cell-pd">
- <view class="uni-list-cell-db">是否默认</view>
- <switch style="transform:scale(0.7)" @change="switchChange"/>
- </view>
- </view> -->
- <view style='margin-top: 40rpx;'>
- <submit-button title="提交绑定" @submit="submit"></submit-button>
- </view>
- </view>
- </template>
-
- <script setup lang="ts">
- import { reactive,ref } from "vue";
- import {request} from "@/utils/network/request.js";
- import {addBankCard,sendCode} from "@/utils/network/api.js";
- import {stringToJson} from "@/utils/network/encryption.js";
- import { msg } from "@/utils/utils";
- let waitTime = ref(0);
- const state = reactive({
- form: {
- name:'',
- card:'',
- bank:'',
- phone:'',
- code:'',
- },
- // isDefault:0, //是否默认
- })
-
- const submit = () => {
- for(var i in state.form){
- if(!state.form[i]){
- msg('请将信息填写完整!');
- return;
- }
- }
- const options = {
- type: 2,
- data: {
- 'accountId': state.form.name,
- 'bankCardId': state.form.card,
- 'bankAddress': state.form.bank,
- 'code': state.form.code,
- },
- method: "POST",
- showLoading: true,
- };
- request(addBankCard, options).then((res) => {
- const data = stringToJson(res.bizContent)
- console.log("添加银行卡",data)
- })
- }
- const getCode = () => {
- console.log(123);
- if (state.form.phone) {
- sendCodeApi()
- codeInterval()
- } else {
- uni.showToast({
- title: '请输入手机号',
- icon: 'none'
- });
- }
- }
- // 发送验证码
- const sendCodeApi = (type) => {
- //参数说明
- let options = {
- type: 2, //type: 2,JSON格式提交数据(默认表单形式提交)
- data: {
- mobile: state.form.phone
- }, //请求参数
- method: "POST", //提交方式(默认POST)
- showLoading: true, //是否显示加载中(默认显示)
- };
-
- //调用方式
- request(sendCode, options)
- .then((res) => {
-
- })
- .catch((err) => {
- console.log(err);
- });
- }
- //倒计时函数
- const codeInterval = () => {
- waitTime.value = 60
- let timer = setInterval(() => {
- if (waitTime.value == 1) {
- clearInterval(timer)
- }
- waitTime.value -= 1
- }, 1000)
- }
- // 是否默认
- // const switchChange=(e)=>{
- // console.log('switch1 发生 change 事件,携带值为', e.detail.value);
- // if(e.detail.value){
- // state.isDefault=1
- // }else{
- // state.isDefault=0
- // }
- // }
- </script>
-
- <style lang="scss" scoped>
- .container {
- padding: 30rpx;
- }
- .uni-list-cell{
- display: flex;
- margin: 10rpx auto;
- justify-content: space-between;
- align-items: center;
- }
- ::v-deep .u-form-item--right__content__slot{
- display:flex !important;
- align-items: center;
- }
- .btn{
- background: #19BE6B;
- padding: 0rpx 32rpx;
- border-radius: 10rpx;
- color: white;
- font-size: 24rpx;
- height: 46rpx;
- line-height: 46rpx;
- text-align: center;
- }
- </style>
|