Commit 46da0804 authored by 袁玲利's avatar 袁玲利

充值限制

parent 13f49789
......@@ -6,7 +6,8 @@
<image :src="ImgUrl + 'user/personAva.png'" alt=""></image>
</view>
<view class="name">{{ PersonalInfo.name }}</view>
<view v-if="PersonalInfo.usertype == '1'">{{ PersonalInfo.gradename }}{{ PersonalInfo.classname }}
<view v-if="PersonalInfo.usertype == '1'"
>{{ PersonalInfo.gradename }}{{ PersonalInfo.classname }}
</view>
<view v-else>教职工</view>
</view>
......@@ -20,22 +21,33 @@
<view>{{ cardBalanceTx }}</view>
</view>
<view class="right">
<van-popover v-model="showPopover" trigger="click" placement="bottom-end">
<view class="popoverItem" v-for="(item, index) in actions" @click="onSelect(item)"
:id="item.id ? item.id : '#item'+index" >
{{item.text}}
<van-popover
v-model="showPopover"
trigger="click"
placement="bottom-end"
>
<view
class="popoverItem"
v-for="(item, index) in actions"
@click="onSelect(item)"
:id="item.id ? item.id : '#item' + index"
>
{{ item.text }}
</view>
<template #reference>
<image class="icon" :src="ImgUrl + 'user/more.png'" alt=""></image>
<image
class="icon"
:src="ImgUrl + 'user/more.png'"
alt=""
></image>
</template>
</van-popover>
</view>
</view>
<view class="lastLine">
<view>**** **** ****
{{
bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)
}}
<view
>**** **** ****
{{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4) }}
</view>
<view class="right" @click="ToWalletTx">
<!-- <image class="btn" :src="ImgUrl + 'user/cashBtn.png'" alt=""></image> -->
......@@ -53,39 +65,65 @@
</view>
<!-- 卡号显示 -->
<view class="cardNum">
<view class="cardNumleft"><span>账户:</span> **** **** ****
<view class="cardNumleft"
><span>账户:</span> **** **** ****
{{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4) }}
<span>({{ accountEnum[bankInfo_.accountType + ""] }})</span>
</view>
<view class="cardNumright" id="cardNumright" @click="CopyCardNumber">复制</view>
<view class="cardNumright" id="cardNumright" @click="CopyCardNumber"
>复制</view
>
</view>
<view class="HidenText">
<view class="userName" style="
<view
class="userName"
style="
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
">
姓名:<span>{{ PersonalInfo.name }}</span></view>
<view class="StudentCls" style="
"
>
姓名:<span>{{ PersonalInfo.name }}</span></view
>
<view
class="StudentCls"
style="
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
" v-if="PersonalInfo.usertype == '1'">
"
v-if="PersonalInfo.usertype == '1'"
>
班级:{{ PersonalInfo.gradename }}({{
PersonalInfo.classname
}})</view>
<view class="TeacherCls" style="
}})</view
>
<view
class="TeacherCls"
style="
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
" v-else>教职工</view>
"
v-else
>教职工</view
>
</view>
<view class="Balance">
<view class="cardBalanceTx">余额:¥<span>{{ cardBalanceTx }}</span></view>
<view class="cardBalanceTx"
>余额:¥<span>{{ cardBalanceTx }}</span></view
>
<view @click="ToWalletTx">
<span style="display: inline-block; padding-right: 10rpx">余额提现</span>
<image style="position: relative; width: 13rpx; height: 20rpx" class="ImgIcon1" mode="widthFix"
:src="ImgUrl + 'images/xiaopaycard (17).png'" alt=""></image>
<span style="display: inline-block; padding-right: 10rpx"
>余额提现</span
>
<image
style="position: relative; width: 13rpx; height: 20rpx"
class="ImgIcon1"
mode="widthFix"
:src="ImgUrl + 'images/xiaopaycard (17).png'"
alt=""
></image>
</view>
</view>
</view>
......@@ -93,34 +131,54 @@
<!-- <view class="RechargeDetailed" @click="BackToMini('purchaseDetail')">
账户明细
</view> -->
<template v-if="rechargeLimit == 1">
<!-- 充值账户 -->
<view class="Recharge">
<span>充值金额</span>
</view>
<view class="moneyWrapper">
<view class="moneyItem" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index">
<view
class="moneyItem"
@click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''"
:data-money="item.value || 0"
v-for="(item, index) in MoneyList"
:key="index"
>
<view> {{ item.value }}</view>
<view> {{ item.lable }}</view>
</view>
<view class="other">
<input v-model="inputOtherM" @input="inputControl" @blur="ReturnToTop"
:placeholder="typeCode == 'SPDB' ? '其他金额,最低100元' : '其他金额,最低3元'"
placeholder-class="placeholderinputOtherM" type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
@blur="ReturnToTop"
:placeholder="
typeCode == 'SPDB' ? '其他金额,最低100元' : '其他金额,最低3元'
"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
</view>
<!-- 充值的金额 -->
<view class="MoneyBox" style="display: none">
<view class="depotMoney" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'choiceClass' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index">
<view
class="depotMoney"
@click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'choiceClass' : ''"
:data-money="item.value || 0"
v-for="(item, index) in MoneyList"
:key="index"
>
<span class="value">
{{ item.value }}
</span>
<span style="font-size: 28rpx; font-weight: 600; margin-left: 7rpx">{{
item.lable
}}</span>
<span
style="font-size: 28rpx; font-weight: 600; margin-left: 7rpx"
>{{ item.lable }}</span
>
<!-- <span class="tips" v-show="item.tips">
{{item.tips}}
</span> -->
......@@ -139,18 +197,34 @@
<!-- <view class="OtherMoney" v-if="isOtherMoney"> -->
<view class="OtherMoney" style="display: none">
<span></span>
<input v-model="inputOtherM" @input="inputControl" @blur="ReturnToTop" placeholder="请输入其他金额,最低3元"
placeholder-class="placeholderinputOtherM" type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
@blur="ReturnToTop"
placeholder="请输入其他金额,最低3元"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
<!-- 充值限额提示 -->
<view class="depositbox">
<image mode="widthFix" class="depositImg" src="../../../static/img/depositIcon.png"></image>
<span style="
<image
mode="widthFix"
class="depositImg"
src="../../../static/img/depositIcon.png"
></image>
<span
style="
vertical-align: middle;
font-size: 28rpx;
color: #333333;
font-weight: 500;
">最大可充值金额:<span style="color: red"><span class="canDepositTx">{{ RechargeMax }}</span></span></span>
"
>最大可充值金额:<span style="color: red"
><span class="canDepositTx">{{ RechargeMax }}</span></span
></span
>
</view>
<!-- 支付方式 -->
<view class="paytype">
......@@ -175,29 +249,46 @@
<!-- <view class="" style="height: 1rpx;background-color: #DFDFDF;"></view> -->
<!-- 充值生活费 -->
<view class="bottomdiv">
<view class="DepositID" @click="toDeposit"
v-bind:style="Money != '' ? '' : 'background: #e6e6e6 !important;'">
<view
class="DepositID"
@click="toDeposit"
v-bind:style="Money != '' ? '' : 'background: #e6e6e6 !important;'"
>
<span>充值生活费</span>
</view>
<view class="service">{{bankInfo_.accountName}}{{typeCode != 'BOHAI' ? 'Ⅲ' :'Ⅱ'}}类户为您提供服务</view>
<view class="service"
>{{ bankInfo_.accountName
}}{{ typeCode != "BOHAI" ? "" : "" }}类户为您提供服务</view
>
<!-- -->
<!-- <view class="switchbankCard" @click="ChangeBankPay">我要换银行卡支付</view> -->
</view>
</template>
<template v-else>
<view class="rechageWallet" @click="turnRechargeWallet">充值校园钱包 >></view>
</template>
</view>
<!-- 其他充值金额 -->
<view class="contentBox" style="display: none">
<view class="OtherTitle">充值金额</view>
<view class="inputOtherM">
<span></span>
<input v-model="inputOtherM" @input="inputControl" placeholder-class="placeholderinputOtherM"
type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
<view class="OtherLine"></view>
<!-- 充值范围 -->
<view class="Recharge_">
<!-- <image mode="widthFix" class="depositImg" src="../../static/img/depositIcon.png"></image> -->
<span>最大可充值金额:</span>
<span><span>3.00 ~ {{ RechargeMax }}</span></span>
<span
><span>3.00 ~ {{ RechargeMax }}</span></span
>
</view>
</view>
<!-- 弹出层 -->
......@@ -209,26 +300,51 @@
<image src="../../../static/img/close.png" mode="aspectFit"></image>
</view>
<view class="RechargeInfo1"> 验证校园卡开卡手机号 </view>
<van-field label-class="openCardPhonTxt" label="手机号:" maxlength="11" v-model="openCardPhon"
placeholder="校园卡开卡手机号" center :border="false">
<van-field
label-class="openCardPhonTxt"
label="手机号:"
maxlength="11"
v-model="openCardPhon"
placeholder="校园卡开卡手机号"
center
:border="false"
>
<view slot="right-icon" v-if="bankInfo_.accountType == 4">
<view class="changPhone" style="display: flex; justify-content: center"
@click="changePhone">变更手机号
<view
class="changPhone"
style="display: flex; justify-content: center"
@click="changePhone"
>变更手机号
<van-icon name="arrow" />
</view>
</view>
</van-field>
<view style="width: 520rpx; height: 1rpx; background: #eeeeee"></view>
<van-field v-model="openCardPhonSms" label-class="openCardPhonSmsTxt" maxlength="6" label="验证码:"
placeholder="输入短信验证码" center clearable :border="false">
<van-button slot="button" size="small" type="primary" @click="SendSms">
<van-field
v-model="openCardPhonSms"
label-class="openCardPhonSmsTxt"
maxlength="6"
label="验证码:"
placeholder="输入短信验证码"
center
clearable
:border="false"
>
<van-button
slot="button"
size="small"
type="primary"
@click="SendSms"
>
<div style="font-size: 28rpx">{{ CodeMsg }}</div>
</van-button>
</van-field>
<view style="width: 520rpx; height: 1rpx; background: #eeeeee"></view>
<!-- 取消 确认充值按钮 -->
<view class="BtngGoup">
<view class="" @click="unattachedCard" v-if="unbindFlag">去解绑</view>
<view class="" @click="unattachedCard" v-if="unbindFlag"
>去解绑</view
>
<view class="" @click="ExchangeRecharge" v-else> 充值 </view>
</view>
</view>
......@@ -236,35 +352,68 @@
</uni-popup>
<!-- 选择银行卡 -->
<view class="selectCard">
<van-popup v-model="popshow" round position="bottom" :style="{ height: '30%' }">
<van-popup
v-model="popshow"
round
position="bottom"
:style="{ height: '30%' }"
>
<!-- 银行卡列表 -->
<view class="accountlist">
<!-- 切换绑定的一类卡列表 -->
<view class="showBindCardList">
<view class="choiceBox">选择付款账户</view>
<view class="cardsList" v-if="typeCode == 'SPDB'">
<view class="ListItem" v-for="(item, index) in bindcardList" :key="index">
<view
class="ListItem"
v-for="(item, index) in bindcardList"
:key="index"
>
<span class="BankListImgSpan" @click="ChangeCardPay(item)">
<image class="BankListImg" src="../../../static/img/choiceBank.png"
v-if="item.bindCardNo == bankInfo_.bindCardNo"></image>
<image
class="BankListImg"
src="../../../static/img/choiceBank.png"
v-if="item.bindCardNo == bankInfo_.bindCardNo"
></image>
</span>
<span style="padding-right: 10px" @click="ChangeCardPay(item)">{{ item.bindCardName }}
<span style="padding-right: 10px" @click="ChangeCardPay(item)"
>{{ item.bindCardName }}
</span>
<span @click="ChangeCardPay(item)">尾号:{{item.bindCardNo.slice(item.bindCardNo.length - 4)}}</span>
<span @click="ChangeCardPay(item)"
>尾号:{{
item.bindCardNo.slice(item.bindCardNo.length - 4)
}}</span
>
<!-- <image class="BankListImg" src="../../../static/img/choiceBank.png"></image> -->
<van-icon name="delete" class="delete" @click="unattachedCardBefore(item)" />
<van-icon
name="delete"
class="delete"
@click="unattachedCardBefore(item)"
/>
</view>
</view>
<view class="cardsList" v-else>
<view class="ListItem" v-for="(item, index) in bindcardList" :key="index"
@click="ChangeCardPay(item)">
<view
class="ListItem"
v-for="(item, index) in bindcardList"
:key="index"
@click="ChangeCardPay(item)"
>
<span class="BankListImgSpan">
<image class="BankListImg" src="../../../static/img/choiceBank.png"
v-if="item.bindCardNo == bankInfo_.bindCardNo"></image>
<image
class="BankListImg"
src="../../../static/img/choiceBank.png"
v-if="item.bindCardNo == bankInfo_.bindCardNo"
></image>
</span>
<span style="padding-right: 10px">{{ item.bindCardName }}
<span style="padding-right: 10px"
>{{ item.bindCardName }}
</span>
<span>尾号:{{item.bindCardNo.slice(item.bindCardNo.length - 4)}}</span>
<span
>尾号:{{
item.bindCardNo.slice(item.bindCardNo.length - 4)
}}</span
>
</view>
</view>
<view class="changeCard" @click="ChangeBankPay">我要换卡支付</view>
......@@ -300,30 +449,28 @@
</template>
<script>
import {
Dialog,
Toast
} from "vant";
import keyboardPackage from "@/components/keyboard-package/keyboard-package.vue";
import cityData from "@/common/js/city.js";
var gHost = "https://" + window.location.host;
if (window.location.protocol != "https:") {
import { Dialog, Toast } from "vant";
import keyboardPackage from "@/components/keyboard-package/keyboard-package.vue";
import cityData from "@/common/js/city.js";
var gHost = "https://" + window.location.host;
if (window.location.protocol != "https:") {
gHost = "https://fpdev.xiaopay.net";
// gHost = "/api";
}
let times = 0;
var limitClick = false; //禁止重复点击
var sessionID = "",
userID = "";
var payCardNumber = ""; //一类卡号
var orderSerialNo = ""; //提现结果查询 指令号
var businessNo = "",
}
let times = 0;
var limitClick = false; //禁止重复点击
var sessionID = "",
userID = "",
rechargeLimit = "";
var payCardNumber = ""; //一类卡号
var orderSerialNo = ""; //提现结果查询 指令号
var businessNo = "",
otpOrderNo = "",
mobileNo = "";
var MyTimer = null;
var fromType = 0; //0转账 1提现
var opeType = 0; //0充值 1提现 手机号验证
var bankInfo = {
var MyTimer = null;
var fromType = 0; //0转账 1提现
var opeType = 0; //0充值 1提现 手机号验证
var bankInfo = {
acctNoArray: "",
idNo: "",
schoolId: "",
......@@ -331,14 +478,14 @@
userId: "",
sessionid: "",
wechattype: 1,
};
var accountType = "";
let orderApi = window.location.origin;
/**
};
var accountType = "";
let orderApi = window.location.origin;
/**
* 对象转拼接字符串
* @param {*} res Object 需要转换的数据对象
*/
function OforS(res) {
function OforS(res) {
var resL = 0;
var outS = "";
for (var i in res) {
......@@ -350,8 +497,8 @@
resL++;
}
return outS;
}
export default {
}
export default {
components: {
keyboardPackage,
},
......@@ -360,23 +507,27 @@
return {
showPopover: false,
// 通过 actions 属性来定义菜单选项
actions: [{
actions: [
{
text: "复制卡号",
id: "cardNumright"
}, {
text: "账户明细"
}, {
text: "常见问题"
id: "cardNumright",
},
{
text: "证件更新"
text: "账户明细",
},
{
text: "申请激活"
text: "常见问题",
},
{
text: "在线销户"
}],
text: "证件更新",
},
{
text: "申请激活",
},
{
text: "在线销户",
},
],
popshow: false,
// 输入其它金额
isOtherMoney: false,
......@@ -396,13 +547,15 @@
name: "",
usertype: "1",
},
rechargeLimit: "",
bankInfo_: {
accountNo: "**** **** **** 1234",
bindCardName: "",
bindCardNo: "",
},
ImgUrl: this.$ImgUrl,
MoneyList: [{
MoneyList: [
{
lable: "",
value: 100,
},
......@@ -448,21 +601,23 @@
RechargeSmsorderNoInfo: {}, //第三方合作交易标识
typeCode: "",
unbindFlag: false, // 解绑标志
unattachedCardItem: {}
unattachedCardItem: {},
};
},
onLoad: function(options) {
onLoad: function (options) {
console.log(options);
// 初始化
userID = options["userID"] || "";
sessionID = options["seesionID"] || "";
fromType = options["fromType"] || "";
bankInfo.sessionid = sessionID || "";
this.rechargeLimit = options["rechargeLimit"] || "";
console.log(this.rechargeLimit, 'rechargeLimit')
this.beforeQuerySignStatus();
},
created: function() {},
mounted: function() {},
onShow: function() {
created: function () {},
mounted: function () {},
onShow: function () {
if (bankInfo.userId) {
this.queryBankInfo();
}
......@@ -479,18 +634,18 @@
});
} else if (action.text == "在线销户") {
jWeixin.miniProgram.redirectTo({
url: `/pages/AssignCancelUserPhone/main`
url: `/pages/AssignCancelUserPhone/main`,
});
} else if (action.text == "证件更新") {
jWeixin.miniProgram.redirectTo({
url: `/pages_subpackB/pages/certificateBohaiUpdate/main`
url: `/pages_subpackB/pages/certificateBohaiUpdate/main`,
});
}else if (action.text == "申请激活") {
this.activeBankcard()
} else if (action.text == "申请激活") {
this.activeBankcard();
}
},
// 交通银行申请激活银行卡
activeBankcard(){
activeBankcard() {
$.ajax({
url: gHost + "/bank-wechat/account/manager/accActivation",
type: "POST",
......@@ -500,32 +655,40 @@
// userId: 4145598, //用户id
schoolId: bankInfo.schoolId, //学校id
userId: userID, //用户id
sessionid: sessionID
sessionid: sessionID,
},
headers: {
sessionid: sessionID,
},
success: function(respes) {
success: function (respes) {
if (respes.code == "10000") {
console.log(respes.results.url,'respes.results.url')
console.log(respes.results.url, "respes.results.url");
let flag = true;
jWeixin.miniProgram.redirectTo({
url: `/pages_subpackB/pages/bocomToH5/main?pageUrl=`+encodeURIComponent(respes.results.url)+'&flag='+flag
url:
`/pages_subpackB/pages/bocomToH5/main?pageUrl=` +
encodeURIComponent(respes.results.url) +
"&flag=" +
flag,
});
} else {
// Toast(respes.message || "申请激活失败,请重试!");
let flag = false;
jWeixin.miniProgram.redirectTo({
url: `/pages_subpackB/pages/bocomToH5/main?flag=`+flag+ '&reason='+respes.message
url:
`/pages_subpackB/pages/bocomToH5/main?flag=` +
flag +
"&reason=" +
respes.message,
});
throw new Error("申请激活失败,请重试!");
}
},
error: function(err) {
error: function (err) {
loading.clear();
let flag = false;
jWeixin.miniProgram.redirectTo({
url: `/pages_subpackB/pages/bocomToH5/main?flag=`+flag
url: `/pages_subpackB/pages/bocomToH5/main?flag=` + flag,
});
Toast(err || "申请激活失败,请重试!");
throw new Error("申请激活失败,请重试!");
......@@ -542,7 +705,7 @@
// 解绑银行卡提示 浦发银行
unattachedCardBefore(item) {
this.unattachedCardItem = item;
console.log(item, 'itemm')
console.log(item, "itemm");
// this.$refs.popup.open("top");
const self = this;
let bankno = item.bindCardNo.slice(item.bindCardNo.length - 4);
......@@ -586,18 +749,18 @@
headers: {
sessionid: sessionID,
},
success: function(respes) {
success: function (respes) {
loading.clear();
if (respes.code == "10000") {
console.log(respes, "respes");
Toast('解绑成功');
Toast("解绑成功");
self.$refs.popup.close();
} else {
Toast(respes.message || "解绑银行卡失败,请重试!");
throw new Error("解绑银行卡失败,请重试!");
}
},
error: function(err) {
error: function (err) {
loading.clear();
Toast(err || "解绑银行卡失败,请重试!");
throw new Error("解绑银行卡失败,请重试!");
......@@ -625,6 +788,11 @@
this.BackToMini("AssignAddCard");
uni.hideLoading();
},
turnRechargeWallet(){
jWeixin.miniProgram.navigateTo({
url: `/pages/depositWallet/main`,
});
},
// 验证码弹出框开启
toDeposit() {
console.log(this.isOtherMoney, "isOtherMoney");
......@@ -660,7 +828,7 @@
this.msCount = 60;
this.openCardPhonSms = "";
}
if (bankInfo.typeCode != 'SPDB') {
if (bankInfo.typeCode != "SPDB") {
this.$refs.popup.open("top");
} else {
this.ExchangeRecharge();
......@@ -678,7 +846,8 @@
$(".doBtnTx").html("提现");
opeType = 1;
uni.navigateTo({
url: "../Reflect/Reflect?" +
url:
"../Reflect/Reflect?" +
OforS({
sessionID: sessionID,
userID: userID,
......@@ -696,7 +865,7 @@
this_.MoneyIndex = -1;
this_.isOtherMoney = true;
let obj = e.detail;
this.$nextTick(function() {
this.$nextTick(function () {
obj.value = obj.value.replace(/[^\d.]/g, ""); //清除"数字"和"."以外的字符
obj.value = obj.value.replace(/^\./g, ""); //验证第一个字符是数字而不是.
obj.value = obj.value.replace(/\.{2,}/g, "."); //只保留第一个. 清除多余的.
......@@ -708,7 +877,7 @@
obj.value =
obj.value * 1 > this_.RechargeMax ? this_.RechargeMax : obj.value;
let limitMoney = 3;
if (this_.typeCode == 'SPDB') {
if (this_.typeCode == "SPDB") {
limitMoney = 100;
}
if (obj.value == "" || obj.value * 1 < limitMoney) {
......@@ -729,7 +898,7 @@
if (str.lastIndexOf(".") == str.length - 1) {
this.inputOtherM = str.substring(0, str.length - 1);
}
this.$nextTick(function() {
this.$nextTick(function () {
document.scrollingElement.scrollTo(0, this.scrollTop);
});
},
......@@ -761,12 +930,12 @@
schoolId: bankInfo.schoolId, //学校id
userId: userID, //用户id
sessionid: sessionID,
wechattype: 1
wechattype: 1,
},
headers: {
sessionid: sessionID,
},
success: function(respes) {
success: function (respes) {
loading.clear();
if (respes.code == "10000") {
console.log(respes, "respes");
......@@ -774,7 +943,8 @@
// 1已签约
Dialog.alert({
title: "使用说明",
message: "您暂未进行银行代扣签约,将影响电子校园卡的正常使用,请尽快前往签约",
message:
"您暂未进行银行代扣签约,将影响电子校园卡的正常使用,请尽快前往签约",
theme: "round-button",
confirmButtonText: "前往签约",
confirmButtonColor: "#2ddbb6",
......@@ -795,7 +965,7 @@
throw new Error("代扣状态查询,请重试!");
}
},
error: function(err) {
error: function (err) {
loading.clear();
Toast(err || "代扣状态查询,请重试!");
throw new Error("代扣状态查询,请重试!");
......@@ -851,15 +1021,15 @@
// 20211230渤海
mobilePhone: this.openCardPhon,
msg: "充值",
}
};
let params1 = {
bizScene: '105322',
bizScene: "105322",
mobileNum: this.openCardPhon,
schoolId: bankInfo.schoolId, //学校id
userId: userID, //用户id
sessionid: sessionID,
wechattype: 1
}
wechattype: 1,
};
$.ajax({
url: exchangeUrl,
type: "POST",
......@@ -868,7 +1038,7 @@
headers: {
sessionid: sessionID,
},
success: function(res5) {
success: function (res5) {
loading.clear();
if (res5.code == "10000") {
this_.IntervalFun();
......@@ -882,7 +1052,7 @@
});
}
},
error: function(err) {
error: function (err) {
loading.clear();
},
});
......@@ -970,10 +1140,15 @@
verifyNo: this.openCardPhonSms,
};
let bindingCardId = "";
console.log(bankInfo.bindCardNo, 'bindCardNobindCardNobindCardNobindCardNo')
console.log(
bankInfo.bindCardNo,
"bindCardNobindCardNobindCardNobindCardNo"
);
if (this.bindcardList.length) {
let arr = this.bindcardList.filter(x => x.bindCardNo == bankInfo.bindCardNo);
console.log(arr[0], '绑定卡绑定卡')
let arr = this.bindcardList.filter(
(x) => x.bindCardNo == bankInfo.bindCardNo
);
console.log(arr[0], "绑定卡绑定卡");
if (arr.length) {
bindingCardId = arr[0].bindCardId;
}
......@@ -992,11 +1167,11 @@
url: exchangeUrl,
type: "POST",
contentType: "application/x-www-form-urlencoded",
data: this_.typeCode == 'SPDB' ? params1 : params,
data: this_.typeCode == "SPDB" ? params1 : params,
headers: {
sessionid: sessionID,
},
success: function(res5) {
success: function (res5) {
uni.hideLoading();
if (res5.code == "10000") {
this_.close();
......@@ -1008,9 +1183,9 @@
let accountNo = this_.bankInfo_.bindCardNo;
accountNo = accountNo.slice(accountNo.length - 4, accountNo.length);
let minutes_ =
thiTime.getMinutes().toString().length < 2 ?
thiTime.getMinutes().toString().padStart(2, "0") :
thiTime.getMinutes().toString();
thiTime.getMinutes().toString().length < 2
? thiTime.getMinutes().toString().padStart(2, "0")
: thiTime.getMinutes().toString();
switch (bankInfo.accountType) {
case 3:
if (thiTime.getMinutes() + 20 >= 60) {
......@@ -1023,7 +1198,7 @@
title: "充值申请已提交",
content: "银行处理需要1-20分钟时间,充值结果以余额查询为准。",
showCancel: false,
success: function() {
success: function () {
uni.navigateTo({
url: `../../recharging/recharging?bankName=${
this_.bankInfo_.bindCardName
......@@ -1053,7 +1228,7 @@
weui.topTips(res5.message);
}
},
error: function(err) {
error: function (err) {
uni.hideLoading();
},
});
......@@ -1082,7 +1257,7 @@
headers: {
sessionid: sessionID,
},
success: function(res5) {
success: function (res5) {
loading.clear();
if (res5.code == "10000") {
let appStatus = res5.results.appStatus;
......@@ -1106,7 +1281,7 @@
});
}
},
error: function(err) {
error: function (err) {
loading.clear();
},
});
......@@ -1118,10 +1293,10 @@
title: "系统提示",
message: "复制成功!",
});
console.log(value, 'valuevaluevaluevaluevalue')
this.$nextTick(function() {
console.log(value, "valuevaluevaluevaluevalue");
this.$nextTick(function () {
let clipboard = new ClipboardJS("#cardNumright", {
text: function() {
text: function () {
return value;
},
});
......@@ -1144,7 +1319,7 @@
},
//按钮操作
HideHTML(dom, type) {
this.$nextTick(function() {
this.$nextTick(function () {
if (type == 0) {
$("." + dom).css("display", "none");
} else {
......@@ -1194,7 +1369,7 @@
bindMedium: item.bindCardNo,
bindMediumName: item.bindCardName,
},
success: function(res5) {
success: function (res5) {
loading.hide();
if (res5.code == "10000") {
this_.queryUserBankInfo();
......@@ -1204,7 +1379,7 @@
}
this_.popshow = false;
},
error: function(err) {
error: function (err) {
loading.hide();
},
});
......@@ -1228,7 +1403,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res4) {
success: function (res4) {
loading.hide();
if (res4.code == "10000") {
this_.bindcardList = res4.results;
......@@ -1236,7 +1411,7 @@
weui.topTips(res4.message);
}
},
error: function(err) {
error: function (err) {
loading.hide();
},
});
......@@ -1281,8 +1456,8 @@
};
if (bankInfo.accountType == 5) {
Object.assign(params, {
accountId: bankInfo.thirdId
})
accountId: bankInfo.thirdId,
});
}
$.ajax({
url: queryBankInfoUrl,
......@@ -1290,7 +1465,7 @@
timeout: 8000,
contentType: "application/x-www-form-urlencoded",
data: params,
success: function(res3) {
success: function (res3) {
// loading.hide();
if (res3.code == "10000") {
if (bankInfo.accountType == 4) {
......@@ -1328,10 +1503,10 @@
weui.topTips(res3.message);
}
},
error: function(err) {
error: function (err) {
// loading.hide();
},
complete: function(XMLHttpRequest, status) {
complete: function (XMLHttpRequest, status) {
// loading.hide();
if (status == "timeout") {
weui.topTips("请求超时,余额查询失败");
......@@ -1353,7 +1528,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res2) {
success: function (res2) {
if (res2.code == "10000") {
if (!res2.results) {
weui.topTips("获取用户银行信息失败!");
......@@ -1362,11 +1537,11 @@
}
bankInfo = res2.results;
this_.typeCode = res2.results.typeCode;
if(this_.typeCode != 'BOHAI'){
this_.actions = this_.actions.filter(x => x.text != '证件更新' );
if (this_.typeCode != "BOHAI") {
this_.actions = this_.actions.filter((x) => x.text != "证件更新");
}
if(this_.typeCode != 'BOCOM'){
this_.actions = this_.actions.filter(x => x.text != '申请激活' );
if (this_.typeCode != "BOCOM") {
this_.actions = this_.actions.filter((x) => x.text != "申请激活");
}
bankInfo.sessionid = sessionID;
this_.queryBankInfo(); //查余额
......@@ -1377,7 +1552,7 @@
weui.topTips(res2.message);
}
},
error: function(err) {
error: function (err) {
// loading.hide();
},
});
......@@ -1400,7 +1575,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res1) {
success: function (res1) {
loading.clear();
console.log(sessionID);
if (res1.code == "10000") {
......@@ -1423,32 +1598,40 @@
}, 1500);
}
},
error: function(err) {
error: function (err) {
loading.clear();
},
});
},
},
};
};
</script>
<style lang="scss">
html,
body,
page {
html,
body,
page {
width: 750rpx;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.BankListImgSpan {
}
.rechageWallet {
width: 100%;
text-align: center;
height: 100rpx;
line-height: 100rpx;
color: #04b871;
font-size: 30rpx;
margin-top: 20rpx;
}
.BankListImgSpan {
width: 30rpx;
height: 30rpx;
position: relative;
margin-right: 20rpx;
display: inline-block;
}
}
.delete {
.delete {
position: absolute;
top: 0;
right: 120rpx;
......@@ -1457,17 +1640,17 @@
padding: 25rpx 0;
padding-top: 28rpx;
z-index: 1;
}
}
.BankListImg {
.BankListImg {
width: 30rpx;
height: 30rpx;
position: absolute;
left: 0;
top: 0;
}
}
.userInfoBox {
.userInfoBox {
display: flex;
flex-direction: column;
width: calc(100% - 64rpx);
......@@ -1533,15 +1716,15 @@
font-size: 26rpx;
color: rgba(0, 0, 0, 0.45);
}
}
}
.contentWrapper {
.contentWrapper {
width: 100%;
display: flex;
flex-direction: column;
}
}
.balanceWrapper {
.balanceWrapper {
width: calc(100% - 144rpx);
margin: 0 32rpx;
margin-top: 24rpx;
......@@ -1620,20 +1803,20 @@
height: 60rpx;
}
}
}
}
.changPhone {
.changPhone {
font-size: 14px;
color: #39f;
text-align: right;
}
}
.accountlist {
.accountlist {
width: 100%;
height: 100%;
}
}
.showBindCardList {
.showBindCardList {
width: 100%;
height: 100%;
......@@ -1678,18 +1861,18 @@
line-height: 40rpx;
text-align: center;
}
}
}
.SubmittedSuccessfully {
.SubmittedSuccessfully {
width: 400rpx !important;
height: 200rpx !important;
margin: 0 auto !important;
background: #000000;
opacity: 0.8;
border-radius: 8rpx;
}
}
.cardNum {
.cardNum {
width: 574rpx;
margin: 0 auto;
display: flex;
......@@ -1709,9 +1892,9 @@
text-decoration: underline;
color: #ffffff;
}
}
}
.RechargeDetailed {
.RechargeDetailed {
text-align: center;
// width: 118rpx;
height: 32rpx;
......@@ -1722,15 +1905,15 @@
text-decoration: underline;
color: #36a8ff;
margin-top: 50rpx;
}
}
.contentBox {
.contentBox {
width: 670rpx;
height: 376rpx;
margin: 0 auto;
}
}
.contentDiv {
.contentDiv {
height: 100%;
// margin-top: 36rpx;
border-radius: 15rpx;
......@@ -1740,16 +1923,16 @@
position: relative;
top: 36rpx;
}
}
.HidenText {
.HidenText {
width: 574rpx;
margin: 0 auto;
padding-top: 88rpx;
}
}
.HidenText,
.Balance {
.HidenText,
.Balance {
padding-left: 46rpx;
padding-right: 40rpx;
display: flex;
......@@ -1757,9 +1940,9 @@
font-size: 28rpx;
color: #ffffff;
}
}
.Balance {
.Balance {
width: 574rpx;
margin: 0 auto;
margin-top: 20rpx;
......@@ -1768,9 +1951,9 @@
font-family: PingFang SC;
font-weight: bold;
color: #ffffff;
}
}
.Recharge {
.Recharge {
width: 100%;
height: 40rpx;
margin-top: 40rpx;
......@@ -1779,9 +1962,9 @@
font-weight: 500;
color: rgba(0, 0, 0, 0.4);
line-height: 40rpx;
}
}
.headview {
.headview {
display: flex;
justify-content: space-between;
// padding-left: 40rpx;
......@@ -1790,9 +1973,9 @@
padding-top: 36rpx;
width: 574rpx;
margin: 0 auto;
}
}
.headview .schoolname {
.headview .schoolname {
// width: 252rpx;
height: 50rpx;
font-size: 36rpx;
......@@ -1800,9 +1983,9 @@
font-weight: 500;
color: #ffffff;
line-height: 50rpx;
}
}
.headview .IconCls {
.headview .IconCls {
width: 170rpx;
height: 48rpx;
background: #20946d;
......@@ -1813,9 +1996,9 @@
color: #ffffff;
line-height: 48rpx;
text-align: center;
}
}
.moneyWrapper {
.moneyWrapper {
margin-top: 10rpx;
width: 100%;
display: flex;
......@@ -1883,23 +2066,23 @@
line-height: 120rpx;
}
}
}
}
.MoneyBox {
.MoneyBox {
flex-wrap: wrap;
height: auto;
color: #888888;
width: 686rpx;
margin: 0 auto;
overflow: hidden;
}
}
.choiceClass {
.choiceClass {
background: rgba(39, 266, 148, 0.1) !important;
color: #28d79c;
}
}
.MoneyBox view {
.MoneyBox view {
width: 220rpx;
height: 120rpx;
background: #ffffff;
......@@ -1911,17 +2094,17 @@
box-shadow: 0px 9rpx 23rpx 0rpx rgba(25, 26, 88, 0.07);
margin-right: 2px;
float: left;
}
}
.depotMoney .value {
.depotMoney .value {
font-size: 45rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
line-height: 120rpx;
text-align: center;
}
}
.depotMoney .tips {
.depotMoney .tips {
// width: 79rpx;
// height: 33rpx;
// background: linear-gradient(180deg, #FA6400 0%, #FD9D00 100%);
......@@ -1934,9 +2117,9 @@
// position: absolute;
// right: 0rpx;
// line-height: 33rpx;
}
}
.OtherMoney {
.OtherMoney {
display: flex;
justify-content: flex-start;
// color: #999999;
......@@ -1965,9 +2148,9 @@
input {
height: 100%;
}
}
}
.OtherMoney view:nth-child(2) {
.OtherMoney view:nth-child(2) {
// width: 30rpx;
// height: 30rpx;
// background: #F0F0F0;
......@@ -1976,9 +2159,9 @@
// line-height: 30rpx;
// margin-top: 7rpx;
// margin-left: 5rpx;
}
}
.paytype {
.paytype {
display: flex;
margin-top: 39rpx;
width: 100%;
......@@ -1999,16 +2182,16 @@
color: #161616;
}
}
}
}
.payType {
.payType {
height: 98rpx;
line-height: 98rpx;
display: flex;
justify-content: space-between;
}
}
.payType view:nth-child(1) {
.payType view:nth-child(1) {
// width: 120rpx;
height: 42rpx;
font-size: 32rpx;
......@@ -2016,9 +2199,9 @@
font-weight: 500;
color: #888888;
line-height: 98rpx;
}
}
.payType view::nth-child(2) {
.payType view::nth-child(2) {
width: 225rpx;
height: 45rpx;
font-size: 32rpx;
......@@ -2026,9 +2209,9 @@
font-weight: bold;
color: #333333;
line-height: 45rpx;
}
}
.arrow {
.arrow {
transform: rotate(-45deg);
top: -3rpx;
border: solid #999999;
......@@ -2036,19 +2219,19 @@
display: inline-block;
padding: 8rpx;
position: relative;
}
}
// @media (min-height: 650px) {
@media (min-height: 1040px) {
// @media (min-height: 650px) {
@media (min-height: 1040px) {
.bottomdiv {
position: fixed;
left: 0;
right: 0;
bottom: 30rpx;
}
}
}
.DepositID {
.DepositID {
width: 100%;
height: 90rpx;
background: #04b871;
......@@ -2061,18 +2244,18 @@
margin: 0 auto;
margin-top: 29rpx;
text-align: center;
}
}
.DepositID span {
.DepositID span {
height: 50rpx;
font-size: 36rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #ffffff;
line-height: 92rpx;
}
}
.service {
.service {
margin-top: 118rpx;
width: 100%;
height: 40rpx;
......@@ -2081,9 +2264,9 @@
color: rgba(0, 0, 0, 0.5);
line-height: 40rpx;
text-align: center;
}
}
.switchbankCard {
.switchbankCard {
text-align: center;
/* width: 205px; */
// height: 28rpx;
......@@ -2093,9 +2276,9 @@
text-decoration: underline;
color: #268ef8;
margin-top: 23rpx;
}
}
.RechargeConfirmationBox {
.RechargeConfirmationBox {
position: fixed;
left: 0;
right: 0;
......@@ -2190,9 +2373,9 @@
}
}
}
}
}
.closePhoneBox {
.closePhoneBox {
// width: 35rpx;
height: 35rpx;
position: relative;
......@@ -2206,9 +2389,9 @@
position: relative;
right: 10rpx;
}
}
}
.doBtnTx {
.doBtnTx {
width: 506rpx;
height: 92rpx;
background: #04ba73;
......@@ -2220,46 +2403,46 @@
right: 0;
margin: 0 auto;
bottom: 38rpx;
}
}
.PhoneNum,
.VerifyCode {
.PhoneNum,
.VerifyCode {
width: 506rpx;
height: 80rpx;
line-height: 60rpx;
background: #f7f6fb;
margin: 0 auto;
margin-top: 20rpx;
}
}
.VerifyCode {
.VerifyCode {
display: flex;
justify-content: space-between;
}
}
.VerifyCode input {
.VerifyCode input {
width: 200rpx;
}
}
.CodeMsg {
.CodeMsg {
color: #01bc73;
background: #f7f6fb;
font-size: 32rpx;
font-weight: 600;
line-height: 80rpx;
letter-spacing: 3rpx;
}
}
.placeholderInput {
.placeholderInput {
color: #aaaaaa;
font-size: 42rpx;
font-weight: 500;
letter-spacing: 3rpx;
// padding-left: 50rpx;
height: 80rpx;
}
}
.OtherTitle {
.OtherTitle {
height: 67rpx;
font-size: 48rpx;
font-family: PingFangSC-Semibold, PingFang SC;
......@@ -2268,55 +2451,55 @@
line-height: 67rpx;
padding-top: 60rpx;
}
}
.inputOtherM {
.inputOtherM {
display: flex;
height: 100rpx;
margin-top: 40rpx;
}
}
.inputOtherM input {
.inputOtherM input {
border: none;
outline: none;
height: 50rpx;
padding-left: 16rpx;
font-size: 72rpx;
font-weight: 600;
}
}
.inputOtherM span:nth-child(1) {
.inputOtherM span:nth-child(1) {
width: 72rpx;
font-size: 80rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #010101;
line-height: 100rpx;
}
}
.OtherLine {
.OtherLine {
width: 631rpx;
height: 1rpx;
background-color: #cccccc;
margin-top: 19rpx;
}
}
.depositbox {
.depositbox {
margin-top: 31rpx;
height: 30rpx;
line-height: 30rpx;
}
}
.depositImg {
.depositImg {
width: 24rpx;
height: 24rpx;
vertical-align: middle;
margin-right: 8rpx;
position: relative;
top: -2rpx;
}
}
.Recharge_ {
.Recharge_ {
height: 40rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
......@@ -2324,16 +2507,16 @@
color: #333333;
line-height: 40rpx;
margin-top: 40rpx;
}
}
.Recharge_ span:nth-child(2) {
.Recharge_ span:nth-child(2) {
font-size: 28rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #fa6400;
}
}
.placeholderinputOtherM {
.placeholderinputOtherM {
height: 50rpx;
// font-family: PingFangSC-Semibold, PingFang SC;
// font-weight: 600;
......@@ -2344,14 +2527,14 @@
font-family: PingFang SC;
font-weight: 500;
color: #888888;
}
}
// 异常处理
.RechargeException {
// 异常处理
.RechargeException {
padding-top: 20rpx;
}
}
.weui-label {
.weui-label {
// width: 118rpx;
height: 42rpx;
font-size: 30rpx;
......@@ -2361,9 +2544,9 @@
line-height: 42rpx;
font-weight: bold;
margin-left: 30rpx;
}
}
.tiptext {
.tiptext {
height: 1.06rem;
font-size: 0.75rem;
font-family: PingFangSC-Regular, PingFang SC;
......@@ -2372,9 +2555,9 @@
line-height: 1.06rem;
margin-bottom: 0.625rem;
text-align: center;
}
}
.bottomDetail {
.bottomDetail {
width: 628rpx;
height: 88rpx;
color: white;
......@@ -2387,37 +2570,37 @@
line-height: 88rpx;
margin-top: 84rpx;
}
}
.RechargeException input::placeholder {
.RechargeException input::placeholder {
color: #a1a4a8;
}
}
.RechargeException .weui-cell {
.RechargeException .weui-cell {
height: 4rem;
padding: 0 !important;
}
}
.idCardPhoto1,
.idCardPhoto2 {
.idCardPhoto1,
.idCardPhoto2 {
width: 388rpx;
height: 224rpx;
margin: 0 auto;
margin-top: 20rpx;
}
}
.idCardPhoto1 image,
.idCardPhoto2 image {
.idCardPhoto1 image,
.idCardPhoto2 image {
width: 100%;
height: 100%;
position: relative;
}
}
.weui-toptips_success {
.weui-toptips_success {
background-color: #03bc73 !important;
}
}
.positionCam {
.positionCam {
height: 32rpx;
font-size: 22rpx;
font-family: PingFang-SC-Medium, PingFang-SC;
......@@ -2427,9 +2610,9 @@
text-align: center;
position: relative;
top: -29px;
}
}
.BgCoverBox {
.BgCoverBox {
width: 100vw;
height: 100vh;
position: fixed;
......@@ -2438,22 +2621,22 @@
z-index: 10;
background: #000000;
opacity: 0.5;
}
}
.hideListCover {
.hideListCover {
max-height: 50vh;
overflow-y: auto;
padding: 0;
}
}
.bottomDiv {
.bottomDiv {
font-weight: bold;
height: 50px;
line-height: 50px;
border-bottom: 1px solid #e6e6e6;
}
}
/deep/ .signAlert {
/deep/ .signAlert {
/deep/ .van-dialog__message {
line-height: 60rpx;
}
......@@ -2463,15 +2646,15 @@
flex: none !important;
margin: 0 auto;
}
}
}
/deep/ uni-input.otherMoneyInput {
/deep/ uni-input.otherMoneyInput {
height: 120rpx;
line-height: 120rpx;
font-weight: 600;
}
}
.popoverItem {
.popoverItem {
width: 225rpx;
margin: 0 20rpx;
padding: 16rpx 0;
......@@ -2481,9 +2664,9 @@
font-weight: 400;
color: #000000;
border-bottom: 1rpx solid #dddddd;
}
}
.popoverItem:last-child {
.popoverItem:last-child {
border-bottom: 0;
}
}
</style>
......@@ -6,7 +6,9 @@
<image :src="ImgUrl + 'user/personAva.png'" alt=""></image>
</view>
<view class="name">{{ PersonalInfo.name }}</view>
<view v-if="PersonalInfo.usertype == '1'">{{ PersonalInfo.gradename }}{{ PersonalInfo.classname }}</view>
<view v-if="PersonalInfo.usertype == '1'"
>{{ PersonalInfo.gradename }}{{ PersonalInfo.classname }}</view
>
<view v-else>教职工</view>
</view>
<view class="secondLine">{{ PersonalInfo.schoolname }}</view>
......@@ -19,18 +21,36 @@
<view>{{ cardBalanceTx }}</view>
</view>
<view class="right">
<van-popover v-model="showPopover" trigger="click" placement="bottom-end">
<view class="popoverItem" v-for="(item, index) in actions" @click="onSelect(item)" :id="item.id ? item.id : '#item'+index">
{{item.text}}
<van-popover
v-model="showPopover"
trigger="click"
placement="bottom-end"
>
<view
class="popoverItem"
v-for="(item, index) in actions"
@click="onSelect(item)"
:id="item.id ? item.id : '#item' + index"
>
{{ item.text }}
</view>
<template #reference>
<image class="icon" :src="ImgUrl + 'user/more.png'" alt=""></image>
<image
class="icon"
:src="ImgUrl + 'user/more.png'"
alt=""
></image>
</template>
</van-popover>
</view>
</view>
<view class="lastLine">
<view>**** **** **** {{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)}}</view>
<view
>**** **** ****
{{
bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)
}}</view
>
<view class="right" @click="ToWalletTx">
<!-- <image class="btn" :src="ImgUrl + 'user/cashBtn.png'" alt=""></image> -->
提现
......@@ -47,26 +67,41 @@
</view>
<!-- 卡号显示 -->
<view class="cardNum">
<view class="cardNumleft"><span>账户:</span> **** **** ****
<view class="cardNumleft"
><span>账户:</span> **** **** ****
{{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4) }}
<span>(工商III类户)</span>
</view>
<view class="cardNumright" id="cardNumright" @click="CopyCardNumber">复制</view>
<view class="cardNumright" id="cardNumright" @click="CopyCardNumber"
>复制</view
>
</view>
<view class="HidenText">
<view class="userName">姓名:<span>{{ PersonalInfo.name }}</span></view>
<view class="userName"
>姓名:<span>{{ PersonalInfo.name }}</span></view
>
<view class="StudentCls" v-if="PersonalInfo.usertype == '1'">
班级:{{ PersonalInfo.gradename }}({{
PersonalInfo.classname
}})</view>
}})</view
>
<view class="TeacherCls" v-else>教职工</view>
</view>
<view class="Balance">
<view class="cardBalanceTx">余额:¥<span>{{ cardBalanceTx }}</span></view>
<view class="cardBalanceTx"
>余额:¥<span>{{ cardBalanceTx }}</span></view
>
<view @click="ToWalletTx">
<span style="display: inline-block; padding-right: 10rpx">余额提现</span>
<image style="position: relative; width: 13rpx; height: 20rpx" class="ImgIcon1" mode="widthFix"
:src="ImgUrl + 'images/xiaopaycard (17).png'" alt=""></image>
<span style="display: inline-block; padding-right: 10rpx"
>余额提现</span
>
<image
style="position: relative; width: 13rpx; height: 20rpx"
class="ImgIcon1"
mode="widthFix"
:src="ImgUrl + 'images/xiaopaycard (17).png'"
alt=""
></image>
</view>
</view>
</view>
......@@ -75,6 +110,7 @@
账户明细
</view> -->
<!-- 充值账户 -->
<template v-if="rechargeLimit == 1">
<view class="Recharge">
<span></span>
<span>账户充值</span>
......@@ -93,15 +129,27 @@
</view>
</view> -->
<view class="moneyWrapper">
<view class="moneyItem" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index">
<view
class="moneyItem"
@click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''"
:data-money="item.value || 0"
v-for="(item, index) in MoneyList"
:key="index"
>
<view> {{ item.value }}</view>
<view> {{ item.lable }}</view>
</view>
<view class="other">
<input v-model="inputOtherM" @input="inputControl" @blur="ReturnToTop" placeholder="其他金额,最低3元"
placeholder-class="placeholderinputOtherM" type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
@blur="ReturnToTop"
placeholder="其他金额,最低3元"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
</view>
<!-- <view class="MoneyBox" style="display: none !important;">
......@@ -121,26 +169,44 @@
</span> -->
<!-- 充值限额提示 -->
<view class="depositbox">
<image mode="widthFix" class="depositImg" src="../../../static/img/depositIcon.png"></image>
<span style="
<image
mode="widthFix"
class="depositImg"
src="../../../static/img/depositIcon.png"
></image>
<span
style="
vertical-align: middle;
font-size: 28rpx;
color: #333333;
font-weight: 500;
">最大可充值金额:<span style="color: red"><span class="canDepositTx">{{ RechargeMax }}</span></span></span>
"
>最大可充值金额:<span style="color: red"
><span class="canDepositTx">{{ RechargeMax }}</span></span
></span
>
</view>
<!-- 充值其它金额 -->
<!-- <view class="OtherMoney" v-if="isOtherMoney"> -->
<view class="OtherMoney" style="display: none">
<span></span>
<input v-model="inputOtherM" @input="inputControl" @blur="ReturnToTop" placeholder="请输入其他金额,最低3元"
placeholder-class="placeholderinputOtherM" type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
@blur="ReturnToTop"
placeholder="请输入其他金额,最低3元"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
<!-- 支付方式 -->
<view class="paytype">
<view class="left">付款账户 </view>
<view class="right" @click="queryBindCardList">
{{ bankInfo_.bindCardName }}({{ bankInfo_.bindCardNo.slice(bankInfo_.bindCardNo.length - 4)}})
{{ bankInfo_.bindCardName }}({{
bankInfo_.bindCardNo.slice(bankInfo_.bindCardNo.length - 4)
}})
<van-icon name="arrow" />
</view>
</view>
......@@ -157,31 +223,49 @@
<!-- <view class="" style="height: 1rpx;background-color: #DFDFDF;"></view> -->
<!-- 充值生活费 -->
<view class="bottomdiv">
<view class="DepositID" @click="toDeposit"
v-bind:style="Money != '' ? '' : 'background: #e6e6e6 !important;'">
<view
class="DepositID"
@click="toDeposit"
v-bind:style="Money != '' ? '' : 'background: #e6e6e6 !important;'"
>
<span>充值生活费</span>
</view>
<!-- -->
<!-- <view class="switchbankCard" @click="ChangeBankPay"
>我要换银行卡支付</view
> -->
<view class="service">{{bankInfo_.accountName}}Ⅲ类户为您提供服务</view>
<view class="service"
>{{ bankInfo_.accountName }}Ⅲ类户为您提供服务</view
>
</view>
</template>
<template v-else>
<view class="rechageWallet" @click="turnRechargeWallet"
>充值校园钱包 >></view
>
</template>
</view>
<!-- 其他充值金额 -->
<view class="contentBox" style="display: none;" v-if="depotMoneyother">
<view class="contentBox" style="display: none" v-if="depotMoneyother">
<view class="OtherTitle">充值金额</view>
<view class="inputOtherM">
<span></span>
<input v-model="inputOtherM" @input="inputControl" placeholder-class="placeholderinputOtherM"
type="text" maxlength="6" />
<input
v-model="inputOtherM"
@input="inputControl"
placeholder-class="placeholderinputOtherM"
type="text"
maxlength="6"
/>
</view>
<view class="OtherLine"></view>
<!-- 充值范围 -->
<view class="Recharge_">
<!-- <image mode="widthFix" class="depositImg" src="../../static/img/depositIcon.png"></image> -->
<span>最大可充值金额:</span>
<span><span>3.00 ~ {{ RechargeMax }}</span></span>
<span
><span>3.00 ~ {{ RechargeMax }}</span></span
>
</view>
</view>
<!-- 弹出层 -->
......@@ -217,17 +301,32 @@
</uni-popup>
<!-- 选择银行卡 -->
<view class="selectCard">
<van-popup v-model="popshow" round position="bottom" :style="{ height: '40%' }">
<van-popup
v-model="popshow"
round
position="bottom"
:style="{ height: '40%' }"
>
<!-- 银行卡列表 -->
<view class="accountlist">
<!-- 切换绑定的一类卡列表 -->
<view class="showBindCardList">
<view class="choiceBox">选择付款账户</view>
<view class="cardsList">
<view class="ListItem" @click="ChangeCardPay(item)" v-for="(item, index) in bindcardList"
:key="index">
<span style="padding-right: 10px">{{ item.bindCardName }} </span>
<span>尾号:{{item.bindCardNo.slice(item.bindCardNo.length - 4)}}</span>
<view
class="ListItem"
@click="ChangeCardPay(item)"
v-for="(item, index) in bindcardList"
:key="index"
>
<span style="padding-right: 10px"
>{{ item.bindCardName }}
</span>
<span
>尾号:{{
item.bindCardNo.slice(item.bindCardNo.length - 4)
}}</span
>
<!-- <image class="BankListImg" src="../../../static/img/choiceBank.png"></image> -->
</view>
</view>
......@@ -240,31 +339,29 @@
</template>
<script>
import {
Dialog,
Toast
} from "vant";
import keyboardPackage from "@/components/keyboard-package/keyboard-package.vue";
import cityData from "@/common/js/city.js";
var gHost = "https://" + window.location.host;
if (window.location.protocol != "https:") {
import { Dialog, Toast } from "vant";
import keyboardPackage from "@/components/keyboard-package/keyboard-package.vue";
import cityData from "@/common/js/city.js";
var gHost = "https://" + window.location.host;
if (window.location.protocol != "https:") {
gHost = "https://fpdev.xiaopay.net";
// gHost = "/api";
}
let times = 0;
var limitClick = false; //禁止重复点击
var sessionID = "",
userID = "";
var payCardNumber = ""; //一类卡号
var orderSerialNo = ""; //提现结果查询 指令号
var businessNo = "",
}
let times = 0;
var limitClick = false; //禁止重复点击
var sessionID = "",
userID = "",
rechargeLimit = "";
var payCardNumber = ""; //一类卡号
var orderSerialNo = ""; //提现结果查询 指令号
var businessNo = "",
otpOrderNo = "",
mobileNo = "";
var msCount = 60; //定时器
var MyTimer = null;
var fromType = 0; //0转账 1提现
var opeType = 0; //0充值 1提现 手机号验证
var bankInfo = {
var msCount = 60; //定时器
var MyTimer = null;
var fromType = 0; //0转账 1提现
var opeType = 0; //0充值 1提现 手机号验证
var bankInfo = {
acctNoArray: "",
idNo: "",
schoolId: "",
......@@ -272,12 +369,12 @@
userId: "",
sessionid: "",
wechattype: 1,
};
/**
};
/**
* 对象转拼接字符串
* @param {*} res Object 需要转换的数据对象
*/
function OforS(res) {
function OforS(res) {
var resL = 0;
var outS = "";
for (var i in res) {
......@@ -289,8 +386,8 @@
resL++;
}
return outS;
}
export default {
}
export default {
components: {
keyboardPackage,
},
......@@ -299,14 +396,18 @@
return {
showPopover: false,
// 通过 actions 属性来定义菜单选项
actions: [{
actions: [
{
text: "复制卡号",
id: "cardNumright"
}, {
text: "账户明细"
}, {
text: "常见问题"
}],
id: "cardNumright",
},
{
text: "账户明细",
},
{
text: "常见问题",
},
],
popshow: false,
// 输入其它金额
isOtherMoney: false,
......@@ -326,13 +427,15 @@
name: "",
usertype: "1",
},
rechargeLimit: "",
bankInfo_: {
accountNo: "**** **** **** 1234",
bindCardName: "",
bindCardNo: "",
},
ImgUrl: this.$ImgUrl,
MoneyList: [{
MoneyList: [
{
lable: "",
value: 100,
},
......@@ -356,32 +459,34 @@
bindcardList: [],
};
},
onLoad: function(options) {
onLoad: function (options) {
console.log(options);
// 初始化
userID = options["userID"] || "";
sessionID = options["seesionID"] || "";
fromType = options["fromType"] || "";
this.rechargeLimit = options["rechargeLimit"] || "";
console.log(this.rechargeLimit, "rechargeLimit");
bankInfo.sessionid = sessionID || "";
this.QueryUserInfo();
},
created: function() {},
mounted: function() {},
created: function () {},
mounted: function () {},
methods: {
onSelect(action) {
if (action.text == "复制卡号") {
this.CopyCardNumber();
} else if (action.text == "账户明细") {
this.BackToMini('purchaseDetail');
this.BackToMini("purchaseDetail");
} else if (action.text == "常见问题") {
uni.navigateTo({
url: `../../commonProblem/commonProblem`
})
url: `../../commonProblem/commonProblem`,
});
}
},
async ChangeBankPay() {
uni.showLoading({
mask: true
mask: true,
});
let status = await this.accountCloseacceptStatusQuery();
uni.hideLoading();
......@@ -392,7 +497,8 @@
return new Promise((resolve, reject) => {
$.ajax({
//查询是否提交销户
url: gHost +
url:
gHost +
"/bank-wechat/icbc/account/manager/accountCloseacceptStatusQuery",
type: "post",
data: {
......@@ -405,14 +511,10 @@
headers: {
sessionid: sessionID,
},
success: ({
code,
message,
results
}) => {
success: ({ code, message, results }) => {
let status = results && results.status; // 0表示未申请,1申请中,2已销户,3销户申请失败
if (code === "10000" && status == "0") {} else if (code === "10000" &&
status == "1") {
if (code === "10000" && status == "0") {
} else if (code === "10000" && status == "1") {
uni.showToast({
title: "您已提交销户申请,银行正在审核中。",
icon: "none",
......@@ -425,7 +527,7 @@
}
resolve(status);
},
error: function(err) {
error: function (err) {
uni.showToast({
title: err.message || "请求失败",
icon: "none",
......@@ -476,7 +578,8 @@
$(".doBtnTx").html("提现");
opeType = 1;
uni.navigateTo({
url: "../Reflect/Reflect?" +
url:
"../Reflect/Reflect?" +
OforS({
sessionID: sessionID,
userID: userID,
......@@ -494,7 +597,7 @@
this_.MoneyIndex = -1;
this_.isOtherMoney = true;
let obj = e.detail;
this.$nextTick(function() {
this.$nextTick(function () {
obj.value = obj.value.replace(/[^\d.]/g, ""); //清除"数字"和"."以外的字符
obj.value = obj.value.replace(/^\./g, ""); //验证第一个字符是数字而不是.
obj.value = obj.value.replace(/\.{2,}/g, "."); //只保留第一个. 清除多余的.
......@@ -523,7 +626,7 @@
if (str.lastIndexOf(".") == str.length - 1) {
this.inputOtherM = str.substring(0, str.length - 1);
}
this.$nextTick(function() {
this.$nextTick(function () {
document.scrollingElement.scrollTo(0, this.scrollTop);
});
},
......@@ -581,7 +684,7 @@
headers: {
sessionid: sessionID,
},
success: function(res5) {
success: function (res5) {
uni.hideLoading();
if (res5.code == "10000") {
this_.close();
......@@ -597,7 +700,7 @@
weui.topTips(res5.message);
}
},
error: function(err) {
error: function (err) {
uni.hideLoading();
},
});
......@@ -626,7 +729,7 @@
headers: {
sessionid: sessionID,
},
success: function(res5) {
success: function (res5) {
loading.clear();
if (res5.code == "10000") {
let appStatus = res5.results.appStatus;
......@@ -650,7 +753,7 @@
});
}
},
error: function(err) {
error: function (err) {
loading.clear();
},
});
......@@ -658,14 +761,14 @@
// 复制我卡号
async CopyCardNumber() {
let value = this.bankInfo_.accountNo;
console.log(value, 'valuevaluevaluevaluevalue')
console.log(value, "valuevaluevaluevaluevalue");
Dialog({
title: "系统提示",
message: "复制成功!",
});
this.$nextTick(function() {
this.$nextTick(function () {
let clipboard = new ClipboardJS("#cardNumright", {
text: function() {
text: function () {
return value;
},
});
......@@ -691,7 +794,7 @@
},
//按钮操作
HideHTML(dom, type) {
this.$nextTick(function() {
this.$nextTick(function () {
if (type == 0) {
$("." + dom).css("display", "none");
} else {
......@@ -730,7 +833,7 @@
bindMedium: item.bindCardNo,
bindMediumName: item.bindCardName,
},
success: function(res5) {
success: function (res5) {
loading.hide();
if (res5.code == "10000") {
this_.queryUserBankInfo();
......@@ -740,7 +843,7 @@
}
this_.popshow = false;
},
error: function(err) {
error: function (err) {
loading.hide();
},
});
......@@ -760,7 +863,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res4) {
success: function (res4) {
loading.hide();
if (res4.code == "10000") {
this_.bindcardList = res4.results;
......@@ -769,7 +872,7 @@
weui.topTips(res4.message);
}
},
error: function(err) {
error: function (err) {
loading.hide();
},
});
......@@ -790,7 +893,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res3) {
success: function (res3) {
// loading.hide();
if (res3.code == "10000") {
if (res3.results.accountBalance == null) {
......@@ -812,10 +915,10 @@
weui.topTips(res3.message);
}
},
error: function(err) {
error: function (err) {
// loading.hide();
},
complete: function(XMLHttpRequest, status) {
complete: function (XMLHttpRequest, status) {
// loading.hide();
if (status == "timeout") {
weui.topTips("请求超时,余额查询失败");
......@@ -837,7 +940,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res2) {
success: function (res2) {
if (res2.code == "10000") {
if (!res2.results) {
weui.topTips("获取用户银行信息失败!");
......@@ -853,7 +956,7 @@
weui.topTips(res2.message);
}
},
error: function(err) {
error: function (err) {
// loading.hide();
},
});
......@@ -876,7 +979,7 @@
sessionid: sessionID,
wechattype: 1,
},
success: function(res1) {
success: function (res1) {
loading.clear();
if (res1.code == "10000") {
bankInfo.schoolId = res1.results.schoolid;
......@@ -897,24 +1000,32 @@
}, 1500);
}
},
error: function(err) {
error: function (err) {
loading.clear();
},
});
},
},
};
};
</script>
<style lang="scss">
html,
body,
page {
html,
body,
page {
width: 750rpx;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.userInfoBox {
}
.rechageWallet {
width: 100%;
text-align: center;
height: 100rpx;
line-height: 100rpx;
color: #04b871;
font-size: 30rpx;
margin-top: 20rpx;
}
.userInfoBox {
display: flex;
flex-direction: column;
width: calc(100% - 64rpx);
......@@ -980,15 +1091,15 @@
font-size: 26rpx;
color: rgba(0, 0, 0, 0.45);
}
}
}
.contentWrapper {
.contentWrapper {
width: 100%;
display: flex;
flex-direction: column;
}
}
.balanceWrapper {
.balanceWrapper {
width: calc(100% - 144rpx);
margin: 0 32rpx;
margin-top: 24rpx;
......@@ -1066,14 +1177,14 @@
height: 60rpx;
}
}
}
}
.accountlist {
.accountlist {
width: 100%;
height: 100%;
}
}
.showBindCardList {
.showBindCardList {
width: 100%;
height: 100%;
......@@ -1107,22 +1218,22 @@
height: 40rpx;
font-size: 28rpx;
font-weight: 400;
color: #04B871;
color: #04b871;
line-height: 40rpx;
text-align: center;
}
}
}
.SubmittedSuccessfully {
.SubmittedSuccessfully {
width: 400rpx !important;
height: 200rpx !important;
margin: 0 auto !important;
background: #000000;
opacity: 0.8;
border-radius: 8rpx;
}
}
.cardNum {
.cardNum {
width: 574rpx;
margin: 0 auto;
display: flex;
......@@ -1142,9 +1253,9 @@
text-decoration: underline;
color: #ffffff;
}
}
}
.RechargeDetailed {
.RechargeDetailed {
text-align: center;
// width: 118rpx;
height: 32rpx;
......@@ -1155,16 +1266,16 @@
text-decoration: underline;
color: #36a8ff;
margin-top: 50rpx;
}
}
.contentBox {
.contentBox {
width: 670rpx;
display: flex;
flex-direction: column;
margin: 0 auto;
}
}
.contentDiv {
.contentDiv {
height: 100%;
// margin-top: 36rpx;
border-radius: 15rpx;
......@@ -1174,16 +1285,16 @@
position: relative;
top: 36rpx;
}
}
.HidenText {
.HidenText {
width: 574rpx;
margin: 0 auto;
padding-top: 88rpx;
}
}
.HidenText,
.Balance {
.HidenText,
.Balance {
padding-left: 46rpx;
padding-right: 40rpx;
display: flex;
......@@ -1191,9 +1302,9 @@
font-size: 28rpx;
color: #ffffff;
}
}
.Balance {
.Balance {
width: 574rpx;
margin: 0 auto;
margin-top: 20rpx;
......@@ -1202,9 +1313,9 @@
font-family: PingFang SC;
font-weight: bold;
color: #ffffff;
}
}
.Recharge {
.Recharge {
width: 100%;
height: 40rpx;
margin-top: 40rpx;
......@@ -1213,9 +1324,9 @@
font-weight: 500;
color: rgba(0, 0, 0, 0.4);
line-height: 40rpx;
}
}
.headview {
.headview {
display: flex;
justify-content: space-between;
// padding-left: 40rpx;
......@@ -1224,9 +1335,9 @@
padding-top: 36rpx;
width: 574rpx;
margin: 0 auto;
}
}
.headview .schoolname {
.headview .schoolname {
width: 252rpx;
height: 50rpx;
font-size: 36rpx;
......@@ -1234,9 +1345,9 @@
font-weight: 500;
color: #ffffff;
line-height: 50rpx;
}
}
.headview .IconCls {
.headview .IconCls {
width: 170rpx;
height: 48rpx;
background: #20946d;
......@@ -1247,9 +1358,9 @@
color: #ffffff;
line-height: 48rpx;
text-align: center;
}
}
.moneyWrapper {
.moneyWrapper {
margin-top: 10rpx;
width: 100%;
display: flex;
......@@ -1315,24 +1426,23 @@
line-height: 120rpx;
}
}
}
}
.MoneyBox {
.MoneyBox {
flex-wrap: wrap;
height: auto;
color: #888888;
width: 686rpx;
margin: 0 auto;
overflow: hidden;
}
}
.choiceClass {
.choiceClass {
background: rgba(39, 266, 148, 0.1) !important;
color: #28d79c;
}
}
.MoneyBox view {
.MoneyBox view {
width: 220rpx;
height: 120rpx;
background: #ffffff;
......@@ -1344,17 +1454,17 @@
box-shadow: 0px 9rpx 23rpx 0rpx rgba(25, 26, 88, 0.07);
margin-right: 2px;
float: left;
}
}
.depotMoney .value {
.depotMoney .value {
font-size: 45rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
line-height: 120rpx;
text-align: center;
}
}
.depotMoney .tips {
.depotMoney .tips {
// width: 79rpx;
// height: 33rpx;
// background: linear-gradient(180deg, #FA6400 0%, #FD9D00 100%);
......@@ -1367,9 +1477,9 @@
// position: absolute;
// right: 0rpx;
// line-height: 33rpx;
}
}
.OtherMoney {
.OtherMoney {
display: flex;
justify-content: flex-start;
// color: #999999;
......@@ -1398,9 +1508,9 @@
input {
height: 100%;
}
}
}
.OtherMoney view:nth-child(2) {
.OtherMoney view:nth-child(2) {
// width: 30rpx;
// height: 30rpx;
// background: #F0F0F0;
......@@ -1409,9 +1519,9 @@
// line-height: 30rpx;
// margin-top: 7rpx;
// margin-left: 5rpx;
}
}
.paytype {
.paytype {
display: flex;
margin-top: 39rpx;
width: 100%;
......@@ -1432,16 +1542,16 @@
color: #161616;
}
}
}
}
.payType {
.payType {
height: 98rpx;
line-height: 98rpx;
display: flex;
justify-content: space-between;
}
}
.payType view:nth-child(1) {
.payType view:nth-child(1) {
// width: 120rpx;
height: 42rpx;
font-size: 32rpx;
......@@ -1449,9 +1559,9 @@
font-weight: 500;
color: #888888;
line-height: 98rpx;
}
}
.payType view::nth-child(2) {
.payType view::nth-child(2) {
width: 225rpx;
height: 45rpx;
font-size: 32rpx;
......@@ -1459,9 +1569,9 @@
font-weight: bold;
color: #333333;
line-height: 45rpx;
}
}
.arrow {
.arrow {
transform: rotate(-45deg);
top: -3rpx;
border: solid #999999;
......@@ -1469,18 +1579,18 @@
display: inline-block;
padding: 8rpx;
position: relative;
}
}
@media (min-height: 1040px) {
@media (min-height: 1040px) {
.bottomdiv {
position: fixed;
left: 0;
right: 0;
bottom: 30rpx;
}
}
}
.DepositID {
.DepositID {
width: 100%;
height: 90rpx;
background: #04b871;
......@@ -1493,18 +1603,18 @@
margin: 0 auto;
margin-top: 29rpx;
text-align: center;
}
}
.DepositID span {
.DepositID span {
height: 50rpx;
font-size: 36rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #ffffff;
line-height: 92rpx;
}
}
.service {
.service {
margin-top: 118rpx;
width: 100%;
height: 40rpx;
......@@ -1513,9 +1623,9 @@
color: rgba(0, 0, 0, 0.5);
line-height: 40rpx;
text-align: center;
}
}
.switchbankCard {
.switchbankCard {
text-align: center;
/* width: 205px; */
// height: 28rpx;
......@@ -1525,9 +1635,9 @@
text-decoration: underline;
color: #268ef8;
margin-top: 23rpx;
}
}
.RechargeConfirmationBox {
.RechargeConfirmationBox {
position: fixed;
left: 0;
right: 0;
......@@ -1598,9 +1708,9 @@
}
}
}
}
}
.closePhoneBox {
.closePhoneBox {
// width: 35rpx;
height: 35rpx;
position: relative;
......@@ -1613,9 +1723,9 @@
height: 40rpx;
position: relative;
}
}
}
.doBtnTx {
.doBtnTx {
width: 506rpx;
height: 92rpx;
background: #04ba73;
......@@ -1627,46 +1737,46 @@
right: 0;
margin: 0 auto;
bottom: 38rpx;
}
}
.PhoneNum,
.VerifyCode {
.PhoneNum,
.VerifyCode {
width: 506rpx;
height: 80rpx;
line-height: 60rpx;
background: #f7f6fb;
margin: 0 auto;
margin-top: 20rpx;
}
}
.VerifyCode {
.VerifyCode {
display: flex;
justify-content: space-between;
}
}
.VerifyCode input {
.VerifyCode input {
width: 200rpx;
}
}
.CodeMsg {
.CodeMsg {
color: #01bc73;
background: #f7f6fb;
font-size: 32rpx;
font-weight: 600;
line-height: 80rpx;
letter-spacing: 3rpx;
}
}
.placeholderInput {
.placeholderInput {
color: #aaaaaa;
font-size: 42rpx;
font-weight: 500;
letter-spacing: 3rpx;
// padding-left: 50rpx;
height: 80rpx;
}
}
.OtherTitle {
.OtherTitle {
height: 67rpx;
font-size: 48rpx;
font-family: PingFangSC-Semibold, PingFang SC;
......@@ -1675,55 +1785,55 @@
line-height: 67rpx;
padding-top: 60rpx;
}
}
.inputOtherM {
.inputOtherM {
display: flex;
height: 100rpx;
margin-top: 40rpx;
}
}
.inputOtherM input {
.inputOtherM input {
border: none;
outline: none;
height: 50rpx;
padding-left: 16rpx;
font-size: 72rpx;
font-weight: 600;
}
}
.inputOtherM span:nth-child(1) {
.inputOtherM span:nth-child(1) {
width: 72rpx;
font-size: 80rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #010101;
line-height: 100rpx;
}
}
.OtherLine {
.OtherLine {
width: 631rpx;
height: 1rpx;
background-color: #cccccc;
margin-top: 19rpx;
}
}
.depositbox {
.depositbox {
margin-top: 40rpx;
height: 30rpx;
line-height: 30rpx;
}
}
.depositImg {
.depositImg {
width: 24rpx;
height: 24rpx;
vertical-align: middle;
margin-right: 8rpx;
position: relative;
top: -2rpx;
}
}
.Recharge_ {
.Recharge_ {
height: 40rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
......@@ -1731,34 +1841,34 @@
color: #333333;
line-height: 40rpx;
margin-top: 40rpx;
}
}
.Recharge_ span:nth-child(2) {
.Recharge_ span:nth-child(2) {
font-size: 28rpx;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #fa6400;
}
}
.placeholderinputOtherM {
.placeholderinputOtherM {
height: 120rpx;
line-height: 120rpx;
font-size: 32rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: rgba(0, 0, 0, 0.25);
}
}
/deep/uni-input {
/deep/uni-input {
line-height: 120rpx;
}
}
// 异常处理
.RechargeException {
// 异常处理
.RechargeException {
padding-top: 20rpx;
}
}
.weui-label {
.weui-label {
// width: 118rpx;
height: 42rpx;
font-size: 30rpx;
......@@ -1768,9 +1878,9 @@
line-height: 42rpx;
font-weight: bold;
margin-left: 30rpx;
}
}
.tiptext {
.tiptext {
height: 1.06rem;
font-size: 0.75rem;
font-family: PingFangSC-Regular, PingFang SC;
......@@ -1779,9 +1889,9 @@
line-height: 1.06rem;
margin-bottom: 0.625rem;
text-align: center;
}
}
.bottomDetail {
.bottomDetail {
width: 628rpx;
height: 88rpx;
color: white;
......@@ -1794,37 +1904,37 @@
line-height: 88rpx;
margin-top: 84rpx;
}
}
.RechargeException input::placeholder {
.RechargeException input::placeholder {
color: #a1a4a8;
}
}
.RechargeException .weui-cell {
.RechargeException .weui-cell {
height: 4rem;
padding: 0 !important;
}
}
.idCardPhoto1,
.idCardPhoto2 {
.idCardPhoto1,
.idCardPhoto2 {
width: 388rpx;
height: 224rpx;
margin: 0 auto;
margin-top: 20rpx;
}
}
.idCardPhoto1 image,
.idCardPhoto2 image {
.idCardPhoto1 image,
.idCardPhoto2 image {
width: 100%;
height: 100%;
position: relative;
}
}
.weui-toptips_success {
.weui-toptips_success {
background-color: #03bc73 !important;
}
}
.positionCam {
.positionCam {
height: 32rpx;
font-size: 22rpx;
font-family: PingFang-SC-Medium, PingFang-SC;
......@@ -1834,9 +1944,9 @@
text-align: center;
position: relative;
top: -29px;
}
}
.BgCoverBox {
.BgCoverBox {
width: 100vw;
height: 100vh;
position: fixed;
......@@ -1845,21 +1955,21 @@
z-index: 10;
background: #000000;
opacity: 0.5;
}
}
.hideListCover {
.hideListCover {
max-height: 50vh;
overflow-y: auto;
padding: 0;
}
}
.bottomDiv {
.bottomDiv {
font-weight: bold;
height: 50px;
line-height: 50px;
border-bottom: 1px solid #e6e6e6;
}
.popoverItem {
}
.popoverItem {
width: 225rpx;
margin: 0 20rpx;
padding: 16rpx 0;
......@@ -1869,8 +1979,8 @@
font-weight: 400;
color: #000000;
border-bottom: 1rpx solid #dddddd;
}
.popoverItem:last-child {
}
.popoverItem:last-child {
border-bottom: 0;
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment