|
@@ -694,6 +694,7 @@ class My extends Core
|
|
|
if ($cash > $this->user['cash']) {
|
|
|
Dever::alert('您的可提现金额不足');
|
|
|
}
|
|
|
+
|
|
|
$name = Dever::input('name');
|
|
|
if (!$name) {
|
|
|
Dever::alert('姓名不能为空');
|
|
@@ -717,6 +718,7 @@ class My extends Core
|
|
|
if ($card != $ycard) {
|
|
|
Dever::alert('银行卡号和确认银行卡号不同');
|
|
|
}
|
|
|
+ */
|
|
|
$sign = Dever::input('sign');
|
|
|
if(!$sign){
|
|
|
|
|
@@ -727,7 +729,7 @@ class My extends Core
|
|
|
$ycash = $cash;
|
|
|
$cash = $cash - $cash*$tax;
|
|
|
|
|
|
- $id = Dever::load('bill/lib/tixian')->up($this->uid, $ycash, $cash, $name, $bank, $bankname, $card,$sign);
|
|
|
+ $id = Dever::load('bill/lib/tixian')->up($this->uid, $ycash, $cash,$sign);
|
|
|
|
|
|
if ($id) {
|
|
|
$cash_id = Dever::load('bill/lib/cash')->up($this->uid, 11, $ycash, $this->user['role'], $id, '提现到'.substr($card, -4).'银行卡', 1);
|