作者 anyv
1 个管道 的构建 通过 耗费 4 秒

36

... ... @@ -32,7 +32,7 @@ class IndentModel extends Model
* @throws \think\exception\DbException
*/
public function selectData($where){
$data = $this->where($where)->order('pay_time desc,create_time desc')->select()->toArray();
$data = $this->where($where)->order('create_time desc')->select()->toArray();
return $data;
}
... ...
... ... @@ -206,18 +206,20 @@
$("input").on("blur",function(){window.scroll(0,0)});
<!--验证弹窗-->
var state;
$(".log_seven_btn_contant").click(function() {
$.post("{:url('Personalcenter/id_first_withdrawal')}",{},function(data){
state = data;
});
$(".log_seven_btn_contant").click(function() {
console.log(state);
if(state != false){
if(data != false){
$(".tx_maskPhone").css("display","block");
}else{
$(".tx_mask").css("display","block");
return false;
}
});
});
/**
*手机号验证点击确定时
*/
... ...