银花优选微信小程序修改后的最新版本代码
This commit is contained in:
430
pages/withdrawal/index.js
Normal file
430
pages/withdrawal/index.js
Normal file
@@ -0,0 +1,430 @@
|
||||
var app = getApp()
|
||||
var that=null
|
||||
var WxParse = null;
|
||||
var sopenFrame=null
|
||||
var wait=120
|
||||
Page( {
|
||||
data: {
|
||||
loadingHidden:false,
|
||||
umoney:0.00,
|
||||
getumoney:"",
|
||||
sjdzmoney:0.00,
|
||||
sxfmoney:0,
|
||||
sxfmoney0:0,
|
||||
sjsxfmoney:0,
|
||||
title:"余额",
|
||||
txzh:"",
|
||||
txmsg:"",
|
||||
phone:"",
|
||||
savedisable:"",
|
||||
savebutton:"确认",
|
||||
getcode:"获取验证码",
|
||||
paytype:0,
|
||||
txtype:0,
|
||||
KHName:"",
|
||||
BankName:"",
|
||||
BankCard:"",
|
||||
BankKHH:"",
|
||||
AliAccount:"",
|
||||
AliName:"",
|
||||
aliimage:"",
|
||||
weixinimage:"",
|
||||
mybalance:[],
|
||||
Start: 0,
|
||||
t:0
|
||||
},
|
||||
|
||||
onLoad: function(options) {
|
||||
that = this
|
||||
WxParse = require('../../wxParse/wxParse.js')
|
||||
if(options.t){
|
||||
that.setData({
|
||||
t:options.t
|
||||
});
|
||||
}
|
||||
if(that.data.t==4){
|
||||
wx.setNavigationBarTitle({
|
||||
title: "增值积分提现"
|
||||
})
|
||||
that.setData({
|
||||
title:"增值积分"
|
||||
});
|
||||
}else{
|
||||
wx.setNavigationBarTitle({
|
||||
title: "余额提现"
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
that.rdata()
|
||||
that.clearCache();//清本页缓存
|
||||
that.getlist(0);
|
||||
},rdata: function() {
|
||||
var userId = wx.getStorageSync("userId")
|
||||
var LoginId = wx.getStorageSync("LoginId")
|
||||
var userInfodata = wx.getStorageSync("userInfo")
|
||||
if(userId&&LoginId&&userInfodata){
|
||||
var userInfo = JSON.parse(userInfodata)
|
||||
that.setData({
|
||||
phone:userInfo.Phone
|
||||
})
|
||||
var umoney = userInfo.xjjye
|
||||
var TXEnable = userInfo.TXEnable
|
||||
if(that.data.t==4){
|
||||
umoney = userInfo.zzjfye
|
||||
}
|
||||
|
||||
if(TXEnable=="1"){
|
||||
that.setData({
|
||||
savebutton:"暂时不能提现",
|
||||
savedisable:"disabled"
|
||||
})
|
||||
}
|
||||
var txmsg=userInfo.txmsg
|
||||
txmsg=txmsg.replace(/<br>/g,"\n").replace(/ /g,"")
|
||||
that.setData({
|
||||
umoney:umoney,
|
||||
txtype:userInfo.txtype,
|
||||
sxfmoney:userInfo.txsxf,
|
||||
sxfmoney0:userInfo.txsxf0,
|
||||
KHName:userInfo.KHName,
|
||||
BankName:userInfo.KHName,
|
||||
BankCard:userInfo.BankCard,
|
||||
BankKHH:userInfo.BankKHH,
|
||||
AliAccount:userInfo.AliAccount,
|
||||
AliName:userInfo.AliName,
|
||||
aliimage:userInfo.aliimage,
|
||||
weixinimage:userInfo.weixinimage,
|
||||
txmsg:txmsg,
|
||||
loadingHidden:true
|
||||
})
|
||||
}
|
||||
}, // 下拉刷新
|
||||
onPullDownRefresh: function () {
|
||||
//在当前页面显示导航条加载动画
|
||||
wx.showNavigationBarLoading();
|
||||
//显示 loading 提示框。需主动调用 wx.hideLoading 才能关闭提示框
|
||||
wx.showLoading({
|
||||
title: '刷新中...',
|
||||
})
|
||||
that.clearCache();
|
||||
that.getlist(1);//第一次加载数据
|
||||
},
|
||||
|
||||
// 页面上拉触底事件(上拉加载更多)
|
||||
onReachBottom: function () {
|
||||
that.setData({
|
||||
loadingHidden:false
|
||||
});
|
||||
that.getlist(2);//后台获取新数据并追加渲染
|
||||
},
|
||||
|
||||
// 清缓存
|
||||
clearCache:function(){
|
||||
that.setData({
|
||||
loadingHidden:false,
|
||||
Start: 0,
|
||||
mybalance:[]
|
||||
});
|
||||
},getlist: function(gp) {
|
||||
var userId = wx.getStorageSync("userId")
|
||||
var LoginId = wx.getStorageSync("LoginId")
|
||||
wx.request({
|
||||
url: app.globalData.apiurl + "/xapiajax.ashx",
|
||||
data: {
|
||||
action:"gettixianlist",
|
||||
Start:that.data.Start,
|
||||
t:that.data.t,
|
||||
userId:(userId==null?"":userId),
|
||||
LoginId:(LoginId==null?"":LoginId)
|
||||
},
|
||||
method:"GET",
|
||||
dataType:"json",
|
||||
header: {
|
||||
"content-type": "application/json" // 默认值
|
||||
},
|
||||
success (res) {
|
||||
if(res.data.status==1){
|
||||
var tmpArr = null;
|
||||
tmpArr = that.data.mybalance;
|
||||
tmpArr.push.apply(tmpArr,res.data.data);
|
||||
that.setData({
|
||||
mybalance: tmpArr,
|
||||
Start: that.data.Start+res.data.data.length,
|
||||
loadingHidden:true
|
||||
})
|
||||
|
||||
}
|
||||
if(gp==1){
|
||||
//隐藏loading 提示框
|
||||
wx.hideLoading();
|
||||
//隐藏导航条加载动画
|
||||
wx.hideNavigationBarLoading();
|
||||
//停止下拉刷新
|
||||
wx.stopPullDownRefresh();
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
,getcode:function(e) {
|
||||
var userId = wx.getStorageSync("userId")
|
||||
var LoginId = wx.getStorageSync("LoginId")
|
||||
var b=true
|
||||
|
||||
if(b){
|
||||
wx.request({
|
||||
url: app.globalData.apiurl + "/xapiajax.ashx",
|
||||
data: {
|
||||
action:"sendphonecode1",
|
||||
userId:(!userId?"":userId),
|
||||
LoginId:(!LoginId?"":LoginId)
|
||||
},
|
||||
method:"POST",
|
||||
dataType:"json",
|
||||
header: {
|
||||
"content-type": "application/x-www-form-urlencoded" // 默认值
|
||||
},
|
||||
success (res) {
|
||||
if(res.data.status==1){
|
||||
wx.showToast({
|
||||
title: res.data.msg,
|
||||
icon: "success",
|
||||
duration: 3000
|
||||
})
|
||||
that.gettime()
|
||||
}else{
|
||||
wx.showToast({
|
||||
title: res.data.msg,
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
ontixiantype:function(e) {
|
||||
that.setData({
|
||||
paytype: e.currentTarget.dataset.id
|
||||
})
|
||||
},goeditpay:function(e) {
|
||||
wx.navigateTo({
|
||||
url: "../mybankdata/index?t="+that.data.paytype
|
||||
})
|
||||
},
|
||||
getfull:function(e) {
|
||||
that.setData({
|
||||
getumoney:that.data.umoney
|
||||
})
|
||||
that.getsjdzmoney0();
|
||||
},
|
||||
getsjdzmoney:function(e) {
|
||||
var txumoney=e.detail.value.replace(/\s+/g, "");
|
||||
if(txumoney!=""){
|
||||
that.setData({
|
||||
getumoney:txumoney
|
||||
})
|
||||
}
|
||||
that.getsjdzmoney0();
|
||||
},
|
||||
getsjdzmoney0:function() {
|
||||
|
||||
var txumoney=that.data.getumoney;
|
||||
var sxfmoney=that.data.sxfmoney;
|
||||
var sxfmoney0=that.data.sxfmoney0;
|
||||
var sjsxfmoney=0.00;
|
||||
|
||||
if(txumoney!=""){
|
||||
if(that.data.txtype==0){
|
||||
sjsxfmoney=(parseFloat(sxfmoney) + parseFloat(txumoney)*(parseFloat(sxfmoney0)/100))
|
||||
}else if(that.data.txtype==1){
|
||||
sjsxfmoney=parseFloat(sxfmoney)
|
||||
}else{
|
||||
sjsxfmoney=(parseFloat(txumoney)*(parseFloat(sxfmoney0)/100))
|
||||
}
|
||||
that.setData({
|
||||
sjsxfmoney:sjsxfmoney.toFixed(2),
|
||||
sjdzmoney:(parseFloat(txumoney)-sjsxfmoney).toFixed(2)
|
||||
})
|
||||
}else{
|
||||
that.setData({
|
||||
sjsxfmoney:0.00,
|
||||
sjdzmoney:0.00
|
||||
})
|
||||
}
|
||||
},
|
||||
gettime:function() {
|
||||
if (wait == 0) {
|
||||
that.setData({
|
||||
getcode:"获取验证码"
|
||||
})
|
||||
wait = 120;
|
||||
} else {
|
||||
that.setData({
|
||||
getcode: "重新发送(" + wait + ")"
|
||||
})
|
||||
wait--;
|
||||
setTimeout(function() {
|
||||
that.gettime()
|
||||
}, 1000)
|
||||
}
|
||||
|
||||
},onpaytype:function(e) {
|
||||
var paytype = e.currentTarget.dataset.id
|
||||
var sjsxfmoney=0;
|
||||
if(paytype==1){
|
||||
sjsxfmoney=that.data.sxfmoney;
|
||||
}
|
||||
that.setData({
|
||||
paytype:paytype,
|
||||
sjsxfmoney:sjsxfmoney
|
||||
})
|
||||
that.getsjdzmoney0();
|
||||
},withdrawal:function(e) {
|
||||
var txje = e.detail.value.txje.replace(/\s+/g, "");
|
||||
var pwd = e.detail.value.txpwd;
|
||||
var code = e.detail.value.txcode
|
||||
if(that.data.paytype==1){
|
||||
wx.login({
|
||||
success: function (res) {
|
||||
if (res.code) {
|
||||
that.withdrawalto(res.code,txje,pwd,code);
|
||||
}
|
||||
}
|
||||
});
|
||||
}else{
|
||||
that.withdrawalto("",txje,pwd,code);
|
||||
}
|
||||
|
||||
},withdrawalto:function(logincode,txje,pwd,code) {
|
||||
var userId = wx.getStorageSync("userId")
|
||||
var LoginId = wx.getStorageSync("LoginId")
|
||||
var userInfodata = wx.getStorageSync("userInfo")
|
||||
if(userId&&LoginId&&userInfodata){
|
||||
var userInfo = JSON.parse(userInfodata)
|
||||
var TXEnable = userInfo.TXEnable
|
||||
if(TXEnable=="0"){
|
||||
|
||||
var b=true
|
||||
if(b){
|
||||
if(txje==null || txje==""){
|
||||
b=false
|
||||
wx.showToast({
|
||||
title: "提现金额不能为空!",
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(b){
|
||||
if(pwd==null || pwd==""){
|
||||
b=false
|
||||
wx.showToast({
|
||||
title: "安全密码不能为空!",
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}
|
||||
/*if(b){
|
||||
if(code==null || code==""){
|
||||
b=false
|
||||
wx.showToast({
|
||||
title: "验证码不能为空!",
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}*/
|
||||
if(b){
|
||||
if(that.data.savebutton=="请稍候..."){
|
||||
b=false
|
||||
wx.showToast({
|
||||
title: "请稍候...",
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(b){
|
||||
that.setData({
|
||||
savebutton:"请稍候..."
|
||||
})
|
||||
|
||||
wx.request({
|
||||
url: app.globalData.apiurl + "/xapiajax.ashx",
|
||||
data: {
|
||||
action:"tixian",
|
||||
userId:(!userId?"":userId),
|
||||
LoginId:(!LoginId?"":LoginId),
|
||||
t:that.data.t,
|
||||
paytype:that.data.paytype,
|
||||
logincode:logincode,
|
||||
code:code,
|
||||
pwd:pwd,
|
||||
je:txje
|
||||
},
|
||||
method:"POST",
|
||||
dataType:"json",
|
||||
header: {
|
||||
"content-type": "application/x-www-form-urlencoded" // 默认值
|
||||
},
|
||||
success (res) {
|
||||
if(res.data.status==1){
|
||||
wx.setStorageSync('userInfo', JSON.stringify(res.data.userInfo))
|
||||
app.globalData.IFRefreshindex=1;
|
||||
app.globalData.IFRefreshmy=1;
|
||||
app.globalData.IFRefreshmybalance=1;
|
||||
wx.showModal({
|
||||
title: "操作提示",
|
||||
content: res.data.msg,
|
||||
showCancel:false,
|
||||
success (res0) {
|
||||
if (res0.confirm) {
|
||||
|
||||
wx.navigateBack({})
|
||||
}
|
||||
}
|
||||
})
|
||||
}else{
|
||||
if(res.data.msg=="请先完善银行资料!"){
|
||||
wx.showModal({
|
||||
title: "操作提示",
|
||||
content: res.data.msg,
|
||||
showCancel:false,
|
||||
success (res0) {
|
||||
if (res0.confirm) {
|
||||
|
||||
wx.navigateTo({
|
||||
url: "../mybankdata/index"
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}else{
|
||||
wx.showToast({
|
||||
title: res.data.msg,
|
||||
icon: "none",
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
}
|
||||
that.setData({
|
||||
savebutton:"确认"
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
},getbank:function(e){
|
||||
wx.navigateTo({
|
||||
url: "../mybankdata/index"
|
||||
})
|
||||
}
|
||||
})
|
||||
3
pages/withdrawal/index.json
Normal file
3
pages/withdrawal/index.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"navigationBarTitleText": "提现"
|
||||
}
|
||||
165
pages/withdrawal/index.wxml
Normal file
165
pages/withdrawal/index.wxml
Normal file
@@ -0,0 +1,165 @@
|
||||
<import src="../../wxParse/wxParse.wxml"/>
|
||||
<view class="container">
|
||||
<view class="mydata-box">
|
||||
<view class="tixin-item">
|
||||
<view class="account">
|
||||
|
||||
<view class="flex-end" bindtap="ontixiantype" data-id="1" wx:if="{{t!=1}}">
|
||||
<view class="account-item">
|
||||
<view><image src="../../images/alipay.png" /></view>
|
||||
<text>提现到支付宝</text>
|
||||
|
||||
</view>
|
||||
<view class="current {{paytype==1?'on':''}}"></view>
|
||||
</view>
|
||||
<view class="flex-end" bindtap="ontixiantype" data-id="2" wx:if="{{t!=1}}">
|
||||
<view class="account-item">
|
||||
<view><image src="../../images/weixinpay.png" /></view>
|
||||
<text>提现到微信</text>
|
||||
|
||||
</view>
|
||||
<view class="current {{paytype==2?'on':''}}"></view>
|
||||
</view>
|
||||
<view class="flex-end" bindtap="ontixiantype" data-id="3" wx:if="{{t==1}}">
|
||||
<view class="account-item">
|
||||
<view><image src="../../images/Qianbao.png" /></view>
|
||||
<text>提现到钱包地址</text>
|
||||
|
||||
</view>
|
||||
<view class="current {{paytype==3?'on':''}}"></view>
|
||||
</view>
|
||||
<view class="flex-end" bindtap="ontixiantype" data-id="0" wx:if="{{t!=1}}">
|
||||
<view class="account-item">
|
||||
<view><image src="../../images/bank.png" /></view>
|
||||
<text>提现到银行账号</text>
|
||||
</view>
|
||||
<view class="current {{paytype==0?'on':''}}"></view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="msg {{paytype==0?'on':''}}" id="bankpay_info">
|
||||
<view class="flex-end">
|
||||
<text>开户姓名</text>
|
||||
<view id="KHName">{{KHName}}</view>
|
||||
</view>
|
||||
<view class="flex-end">
|
||||
<text>银行名称</text>
|
||||
<view id="BankName">{{BankName}}</view>
|
||||
</view>
|
||||
<view class="flex-end">
|
||||
<text>银行卡号</text>
|
||||
<view id="BankCard">{{BankCard}}</view>
|
||||
</view>
|
||||
<view class="flex-end">
|
||||
<text>银行开户行</text>
|
||||
<view id="BankKHH">{{BankKHH}}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="msg {{paytype==1?'on':''}}" id="alipay_info">
|
||||
<view class="flex-end">
|
||||
<text>支付宝账号</text>
|
||||
<view id="AliAccount">{{AliAccount}}</view>
|
||||
</view>
|
||||
<view class="flex-end">
|
||||
<text>支付宝姓名</text>
|
||||
<view id="AliName">{{AliName}}</view>
|
||||
</view>
|
||||
<view class="flex-end ximage">
|
||||
<text>支付宝收款码</text>
|
||||
<view id="aliimage" wx:if='{{aliimage!=""}}'><image src="{{aliimage}}"></image></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="msg {{paytype==2?'on':''}}" id="weixinpay_info">
|
||||
<view class="flex-end ximage">
|
||||
<text>微信收款码</text>
|
||||
<view class="weixinimage" wx:if='{{weixinimage!=""}}'><image src="{{weixinimage}}"></image></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="msg {{paytype==3?'on':''}}" id="qbaddress_info">
|
||||
<view>
|
||||
<text>TP钱包地址</text>
|
||||
<view id="qbaddress" style="width:100%;line-height:1.2em; word-break:break-all;"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="msg on" id="bind_info" bindtap="goeditpay">
|
||||
|
||||
<view class="mybtn">去修改</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<view class="frombody">
|
||||
<form bindsubmit='withdrawal'>
|
||||
|
||||
|
||||
<view class="umoney">
|
||||
<text>可提余额:</text>¥{{umoney}}
|
||||
</view>
|
||||
<view class="getumoney">
|
||||
<text>提现金额:</text>
|
||||
<view class="sjdzmoney"><input name="txje" type="text" bindinput='getsjdzmoney' placeholder="请输入提现金额" value="{{getumoney}}" /></view>
|
||||
<text class="getfull" bindtap="getfull">全部</text>
|
||||
</view>
|
||||
<view class="getumoney0">
|
||||
<text>技术服务费:</text>
|
||||
<text class="sjdzmoney">{{sjsxfmoney}}元</text>
|
||||
</view>
|
||||
<view class="getumoney0">
|
||||
<text>实际到账:</text>
|
||||
<text class="sjdzmoney">{{sjdzmoney}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>安全密码:</text><input name="txpwd" value="" placeholder="请填写您的安全密码" type="password" />
|
||||
</view>
|
||||
<!--<view>
|
||||
<text>手机验证码:</text><input name="txcode" type="text" value="" style="width:7.5em;" placeholder="请填写验证码" /><view class="getcode" bindtap="getcode">{{getcode}}</view>
|
||||
</view>-->
|
||||
|
||||
|
||||
<view class="button">
|
||||
<button form-type="submit" class="{{savedisable}}">{{savebutton}}</button>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="txzh">
|
||||
<text>提现提示:</text><text class="msg">{{txmsg}}</text>
|
||||
</view>
|
||||
</form>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="mybalance-box">
|
||||
<view class="text">
|
||||
<view class="line_flag"></view>
|
||||
<text>提现记录</text>
|
||||
</view>
|
||||
<view class="mybalance-item" wx:for="{{mybalance}}" wx:for-index="index">
|
||||
<view class="Total">
|
||||
<view><text>提现金额:</text>{{item.Totalmoney}}</view>
|
||||
<view class="right"><text>手续费:</text>{{item.b1}}</view>
|
||||
</view>
|
||||
<view class="Total">
|
||||
<view><text>实提金额:</text>{{item.b0}}</view>
|
||||
<view class="right"></view>
|
||||
</view>
|
||||
<view class="Total0">
|
||||
<view><text>时间:</text>{{item.addtime}}</view>
|
||||
<view class="right"><text>状态:</text>{{(item.seef==1?"已发放":(item.seef==2?"已退款":(item.seef==3?"拒绝支付":"未发放")))}}
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
|
||||
<loading hidden="{{loadingHidden}}">
|
||||
加载中...
|
||||
</loading>
|
||||
178
pages/withdrawal/index.wxss
Normal file
178
pages/withdrawal/index.wxss
Normal file
@@ -0,0 +1,178 @@
|
||||
page{
|
||||
background: #ccc;
|
||||
}
|
||||
.container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-size: 14px;
|
||||
color: #000;
|
||||
}
|
||||
.flex-end {
|
||||
display: flex;
|
||||
display: -webkit-flex;
|
||||
justify-content: space-between;
|
||||
-webkit-justify-content: space-between;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
}
|
||||
.tixin-item {
|
||||
margin-top: 0.8em;
|
||||
width: 100%;
|
||||
border-radius: 0.4em;
|
||||
overflow: hidden;
|
||||
padding: 1.2rem;
|
||||
box-sizing: border-box;
|
||||
font-size: 1em;
|
||||
background-color: #fff;
|
||||
border: solid 1px #dfdfdf;
|
||||
}
|
||||
.tixin-item .account {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid #f5f5f5;
|
||||
}
|
||||
.tixin-item .account .flex-end .account-item{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
height: 2.5em;
|
||||
line-height: 2.5em;
|
||||
}
|
||||
.tixin-item .account .flex-end .account-item view{
|
||||
margin-top:0.5em;
|
||||
margin-right: 0.5em;
|
||||
width:1.5em;
|
||||
height:1.5em;
|
||||
}
|
||||
.tixin-item .account .flex-end .account-item view image{
|
||||
width:100%;
|
||||
height:100%;
|
||||
}
|
||||
.tixin-item .account .flex-end .account-item text {
|
||||
color:#ff4d00;
|
||||
}
|
||||
.tixin-item .account view view.current{
|
||||
width: 1.4em;
|
||||
height: 1.4em;
|
||||
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAACJ0lEQVRIibVX3c2rMAxlBEb4RmCEjMAIHYERugEjdARGYIQ+IvtY8ggZoffFoU4ILW25liK1EP8dHzuhaQ4KgEBEVwAzgDuAaOsuIhOAEUA4au+lqGoLYDBHj2LFyrP0fPjaKYDgHEYAMxFdmblT1dbvXZblzwKcUwAiokTUf+p0cBnNzNwd1WXmTkRuKQAiuh5SdErx44jz4IODf363eUgw7WWpqi0zd0TUm/GwZ4+ZO1eusbrJDEUAsebUiDbukUpEpmVZ/ko9q3802Pua0Xv1ZbPCtsfibDHzZUf/ASCWLxLEU6nkifLB2tQ02cnIJiJq0WYQM/PlC6eJzRlyhuozayPAJlvbeAjevUFS1tyhFxobg5t++xLiknC3HQTHxubsw0enqm2C/8eVkcnBPTeJzd5xgv+kFbzzNaCUWfEynOW4bC/jTXz+cGLD5L84XhNNUPsT50yoy7Yy0mkDO8p8D5/QSiu5fEI2PldyjfYnO7xPaqdsNrgSju8GyE/ZlpMwte4Kfyp4OWl+JFmGoDulnvDj5EOiZieVdHMjcZMqVJSGo/ACGMo7mZUzz7YC6+5F4EX2EcD87iJQwr+BQ0S0ZsQHycwXG/phk0Xu9PXVJ4m/7NVgPyoAQiqfiEx7wZVKqbcfInJ7lX0plbvZeMhpEiLq/dEoIhMzX8ogVLVV1db2T87hz18UVUaLiFpg5WitMvtrIaI+fbQ5JKL9vgMYa583e/IPvl82NAno+5AAAAAASUVORK5CYII=') no-repeat;
|
||||
background-size: cover;
|
||||
display: block;
|
||||
}
|
||||
.tixin-item .account view view.current.on {
|
||||
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAACN0lEQVRIibVXy7WrMAxkeQ/yYkq4JVACJVACJaSEdEAJKSElsMcIl0AJLoG3uDIxwnyS8HSON8T2aEZj2cmyk2EsytziTgNaGuCI4YnhaYAzjCcxGmNRnt1vN+AAYtwEaFLDJ76F77ePQY1FGQF6GtDmFnfqUMAB8dwfh19JsI0SGPMe1VugxLjNjAa01KE4vbZDQYxHSCC3uJ8FDYv82xlHYSzKmf2A9gj0FmTaYgkHUIci71EZi3LPUNShiMrVJCflParZqQlQMVqzZSrDeP44/Op1Un9PjGmlIBwQMkvJK7JtuViPemP9RAy/lEQkNoznSq7IKKdHoqZhn4XZiDESY9ISE6N+GzS4WSknpXqxFvuv2MrEs/ImG4mueWBtLMost7inzttHEq/HY0PBJpM+O8XZCdvxAuCFmWa5B7RZcHMMHOS/YuhzPicUmMU/LrrO96NWwD4Aey2JNJP/BfxHNEgd3zhXSq2PlXwfs/kqi87wBUdpNldMSNqnmOuv/06kLm+64Djp3hCVsDlqIF+x1Z0wHN1Z/lBw3Wm+NNlCweiWeslPF18SG/s0xIkXSWCdutjp9UA4lpdx028yKeeSbULWvYfAFntPA9qjh4CWfyUHMcbUJirJmhi1sShXLGLQo6dPBB5Y+W8e6NJ2x1DzreQ0eBPJ+NhjryPxNmtOgYYQOcfYqcSodRJwAByQ96hkjqfIaKcBdew4epShW2vS2R9H3qOa/7S9lPDEGMVATervzVb8A9vIpRaBFtZ8AAAAAElFTkSuQmCC') no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.tixin-item .msg{
|
||||
display: none;
|
||||
}
|
||||
.tixin-item .msg.on{
|
||||
display: block;
|
||||
}
|
||||
.tixin-item .msg view{
|
||||
line-height: 2.2em;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tixin-item .msg view text {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
|
||||
.tixin-item .msg view.mybtn {
|
||||
margin:0 auto;
|
||||
width:5em;
|
||||
height:2em;
|
||||
line-height:2em;
|
||||
text-align:center;
|
||||
border-radius: .4em;
|
||||
color: #fff;
|
||||
background-color: #00B050;
|
||||
}
|
||||
.tixin-item .msg view textarea {
|
||||
border-radius: .4em;
|
||||
line-height: 1.5em;
|
||||
width:100%;
|
||||
height:6em;
|
||||
background:none;
|
||||
border:0;
|
||||
}
|
||||
.tixin-item .msg view.ximage{}
|
||||
.tixin-item .msg view.ximage image{vertical-align:middle; width:4em;height:4em;border: 1px solid #dfdfdf;}
|
||||
.tixin-item .msg view.ximage .weixinimage image{margin-top:0.5em;}
|
||||
|
||||
.mydata-box{display: flex;flex-direction: column;align-items: center;justify-content: center;width:100%; padding: 0 0.8em; box-sizing: border-box; }
|
||||
|
||||
.mydata-box .frombody{margin-top: 1em; padding:0.5em 1em;width:100%; display: flex; border-radius:0.5em; flex-direction: column; align-items: center; background-color:#fff;box-sizing: border-box;}
|
||||
.mydata-box .frombody view{position: relative;float:left; width:100%;display: flex;flex-direction:row;border-bottom:1px solid #f1f1f1;padding:0.5em 0; box-sizing: border-box; line-height: 2.5em; }
|
||||
.mydata-box .frombody view view{display: block; width: auto;padding:0; border-bottom:0;line-height: 2.5em;}
|
||||
.mydata-box .frombody view text{float:left; display: block; padding:0; width:6em; height:2.5em; line-height: 2.5em;}
|
||||
.mydata-box .frombody view input{float:left; width:14em;height:2.5em; line-height: 2.5em;}
|
||||
.mydata-box .frombody view input.code{width:9em;}
|
||||
.mydata-box .frombody view.umoney{color:#ff4d00;}
|
||||
.mydata-box .frombody view.umoney text{color:#000;}
|
||||
.mydata-box .frombody view.getumoney view.sjdzmoney{float:left; flex-grow: 1;}
|
||||
.mydata-box .frombody view.getumoney view.sjdzmoney input{float:left; width:100%;}
|
||||
.mydata-box .frombody view.getumoney text.getfull{float: right; display: block; width:auto; color:#000;}
|
||||
.mydata-box .frombody view.getumoney0 text.sjdzmoney{float:left; flex-grow: 1;}
|
||||
.mydata-box .frombody view.getumoney0 text.getfull{float: right; display: block; width:auto; color:#000;}
|
||||
.mydata-box .frombody view.txzh{display:block;float: left; position: relative;}
|
||||
.mydata-box .frombody view.txzh text{float:left; display:block;width:25%;height:4.5em; line-height: 4.5em;}
|
||||
.mydata-box .frombody view.txzh text.msg{float:left; display:block;width:75%;height:auto; line-height:1.5em;color: #939393;}
|
||||
.mydata-box .frombody view.txzh .button{ float:left;margin-left:25%; display:block;width:9em;height:2em; line-height: 2em; background:linear-gradient(to right,#00B050,#00B050); color:#fff; font-size:0.9em; border-radius:0.5em; text-align: center;}
|
||||
.mydata-box .frombody view.area input{width:12.8em;}
|
||||
.mydata-box .frombody view.area image{position: absolute; top:1.1em; right:0; width:1.2em;height:1.2em;}
|
||||
.mydata-box .frombody view.button{border: 0;}
|
||||
.mydata-box .frombody view.button button{width:100%;height:2.5em; line-height: 2.5em; background:linear-gradient(to right,#00B050,#00B050); color:#fff; border-radius:0.5em;}
|
||||
.mydata-box .frombody view.button button.disabled{background:linear-gradient(to left,#939393,#eeeeee);color:#111;}
|
||||
.mydata-box .frombody view .picker_hx{color:#939393;line-height:2.5em;}
|
||||
.mydata-box .frombody view .picker_hx view{ float:left; position: relative; display: block; border:0;min-width:14em; padding:0 1em; box-sizing: border-box;border:1px solid #dfdfdf;border-radius:0.3em;height:2.5em;line-height:2.5em;}
|
||||
.mydata-box .frombody view .picker_hx image{position: absolute; top:0.6em;right:0.6em; width:1.2em;height:1.2em;}
|
||||
.mydata-box .frombody view.pay_box{display: flex; flex-direction: row; align-items: center; justify-content: center;width:100%; margin-top: 0em; padding:1em; box-sizing: border-box; background-color:#fff; font-size: 14px;}
|
||||
.mydata-box .frombody view.pay_box text{display: block; float:left; width:25%; height:2.5em;}
|
||||
.mydata-box .frombody view.pay_box text.pay_type{width:25%;line-height:2em;}
|
||||
.mydata-box .frombody view.pay_box view.paytype_box{
|
||||
float:left;width:75%; padding:0 0.5em; margin-right:0.5em; display: flex; flex-direction: column; align-items: center; justify-content: center; box-sizing: border-box;border-radius:0.5em;
|
||||
}
|
||||
.mydata-box .frombody view.pay_box view.paytype_box view{float:left;width: 100%; padding:0 0.5em; margin-right:0.5em; display: flex; align-items: center; justify-content:start;line-height:2em; border:1px solid #f1f1f1; box-sizing: border-box;border-radius:0.5em; text-align: left;}
|
||||
.mydata-box .frombody view.pay_box view.paytype_box view.weixinlq{margin-top: 1em;}
|
||||
.mydata-box .frombody view.pay_box view.paytype_box view.hover{border:1px solid #ff4d00;}
|
||||
.mydata-box .frombody view.pay_box view.paytype_box view image{width:1.4em;height:1.4em; margin-right: 0.5em;}
|
||||
.text{
|
||||
margin-bottom: 0.8em;
|
||||
height: 2.5em;
|
||||
line-height: 2.5em;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
border-bottom:1px solid #f1f1f1;
|
||||
}
|
||||
.text .line_flag{
|
||||
margin-top: 0em;
|
||||
margin-left: 0.8em;
|
||||
margin-right: 0.5em;
|
||||
width:0.5em;
|
||||
height: 1.5em;
|
||||
line-height: 1.5em;
|
||||
background-color: #00B050;
|
||||
border-radius:0.2em;
|
||||
}
|
||||
|
||||
.text .line_more{
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
align-self: center;
|
||||
color:#ff0000
|
||||
}
|
||||
.mybalance-box{display: flex;flex-direction: column;align-items: center;justify-content: center;width:100%; padding:0 0.8em; box-sizing: border-box;}
|
||||
.mybalance-item{width:100%;display: flex;flex-direction: column; align-items: center;justify-content: center;box-sizing: border-box; padding:0.8em; margin:0.8em 0; margin-top: 0; line-height: 2em; background-color:#fff;border-radius:0.5em;}
|
||||
.mybalance-item view{width:100%;display: flex;flex-direction: row; align-items: center;justify-content:left;color: #939393;}
|
||||
.mybalance-item view text{color: #000;}
|
||||
.mybalance-item view text.Totalprice{ margin-left: 1em;}
|
||||
.mybalance-item view.Total{float: left; display: block;}
|
||||
.mybalance-item view.Total view{float: left; display: block;width:auto; margin:0; padding:0;color:#ff4d00; box-sizing: border-box; overflow: hidden;}
|
||||
.mybalance-item view.Total view.right{float:right;}
|
||||
.mybalance-item view.Total view text{float: left; display: block;width:auto;color: #000;}
|
||||
.mybalance-item view.Total0{float: left; display: block;}
|
||||
.mybalance-item view.Total0 view{float: left; display: block;width:auto; margin:0; padding:0;color:#939393; box-sizing: border-box; overflow: hidden;}
|
||||
.mybalance-item view.Total0 view.right{float:right;width:auto;color:#939393;}
|
||||
.mybalance-item view.Total0 view.right text{color:#000;}
|
||||
Reference in New Issue
Block a user