35 lines
773 B
PHP
35 lines
773 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Created by Vim
|
|
* User: lcc
|
|
* Date: 2021/07/13
|
|
* Time: 14:08
|
|
*/
|
|
class Loan extends CI_Controller{
|
|
|
|
public function __construct($inputs, $app_key){
|
|
parent::__construct($inputs, $app_key);
|
|
|
|
$this->login_white = array();//登录白名单
|
|
$this->check_status = array();//用户状态校验
|
|
$this->check_mobile = array();//需要手机号
|
|
$this->check_headimg =array();//授权微信信息
|
|
}
|
|
|
|
public function get(){
|
|
$banks = [
|
|
'中国农行'
|
|
];
|
|
$years = [
|
|
1,2,3,4,5
|
|
];
|
|
$data = [
|
|
'banks' => $banks,
|
|
'years' => $years
|
|
];
|
|
return $data;
|
|
}
|
|
}
|