123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825 |
- <?php
- namespace app\api\controller;
- use app\common\library\Common;
- use think\Console;
- use think\Db;
- use think\Request;
- use app\common\model\User as Users;
- use think\facade\Validate;
- use app\common\controller\Api;
- class User extends Api
- {
-
- public function userinfo(){
- $user_id = $this->check_login();
- $userinfo = Users::getUserInfo($user_id);
- $this->success('成功',$userinfo);
- }
-
- public function my_address(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $result = Users::MyAddress($user_id,$Nowpage,$limits);
- $this->success('成功',$result['data']);
- }
-
- public function add_edit_address(){
- $user_id = $this->check_login();
- $data['name'] = input('name');
- $data['phone'] = input('phone');
- $data['province'] = input('province');
- $data['city'] = input('city');
- $data['area'] = input('area');
- $data['address'] = input('address');
- $data['is_default'] = input('is_default',0);
- $data['jd'] = input('jd');
- $data['wd'] = input('wd');
- $address_id = intval(input('address_id'));
- if (!$data['name'] || !$data['phone'] || !$data['province'] || !$data['city'] || !$data['area'] || !$data['address']) $this->error('参数错误');
- if (!Validate::regex($data['phone'], "^1\d{10}$")) $this->error('手机号格式错误');
- $result = Users::AddEditAddress($user_id,$data,$address_id);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function set_address_default(){
- $user_id = $this->check_login();
- $address_id = intval(input('address_id'));
- if (!$address_id) $this->error('地址ID为空');
- $result = Users::SetAddressDefault($user_id,$address_id);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function del_address(){
- $user_id = $this->check_login();
- $address_id = intval(input('address_id'));
- if (!$address_id) $this->error('地址ID为空');
- $result = Users::DelAddress($user_id,$address_id);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function edit_user_info(){
- $user_id = $this->check_login();
- $data = input();
- $result = Users::EditUserInfo($user_id,$data);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function change_password(){
- $user_id = $this->check_login();
- $password = input('password');
- $confirm_password = input('confirm_password');
- $ver_code = input('ver_code');
- if (!$password || !$ver_code || !$confirm_password){
- $this->error('参数错误');
- }
- if ($password!=$confirm_password){
- $this->error('密码与确认密码不一致');
- }
- $result = Users::changePassword($user_id,$password,$ver_code);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function apply_designer(){
- $user_id = $this->check_login();
- $data['name'] = input('name');
- $data['design_classifi'] = input('design_classifi');
- $data['skills_label'] = input('skills_label');
- $data['good_type'] = input('good_type');
- $data['province'] = input('province');
- $data['city'] = input('city');
- $data['area'] = input('area');
- $data['work_year'] = input('work_year');
- $data['identity_card_zheng'] = input('identity_card_zheng');
- $data['identity_card_fan'] = input('identity_card_fan');
- $data['related_certificate'] = input('related_certificate');
- $data['works'] = input('works');
- $data['wd'] = input('wd');
- $data['jd'] = input('jd');
- $data['signature'] = input('signature');
- if (!$data['name'] || !$data['design_classifi'] || !$data['design_classifi'] || !$data['skills_label'] || !$data['good_type'] || !$data['identity_card_zheng'] || !$data['identity_card_fan'] || !$data['province']
- || !$data['city'] || !$data['area'] || !$data['work_year'] || !$data['works']){
- $this->error('参数错误');
- }
- $data['related_certificate'] = implode(',',$data['related_certificate']);
- $data['works'] = implode(',',$data['works']);
- $data['skills_label'] = implode(',',$data['skills_label']);
- $data['good_type'] = implode(',',$data['good_type']);
- $result = Users::applyDesigner($user_id,$data);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function message(){
- $user_id = $this->check_login();
- $content = input('content');
- if (!$content) $this->error('参数错误');
- $result = Users::Message($user_id,$content);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function time_list(){
- $user_id = $this->check_login();
- $result = Users::timeList($user_id);
- $this->success('成功',$result['data']);
- }
-
- public function time_switch(){
- $user_id = $this->check_login();
- $json = input('json');
- if (!$json) $this->error('参数错误');
-
- $json = json_decode($json,true);
- $result = Users::timeSwitch($user_id,$json);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function user_withdraw(){
- $user_id = $this->check_login();
- $money = input('money');
- $withdraw_type = input('withdraw_type');
- if (!in_array($withdraw_type,array('weixin','zfb'))) $this->error('提现方式错误');
- if (!$money || $money<=0) $this->error('金额错误');
- $day = date('d');
- echo $day;
- if ($day!=01 || $day!=15){
- $this->error('每月1号和15号才可以提现');
- }
- echo 222;die;
- $result = Users::userWithdraw($user_id,$money,$withdraw_type);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function money_record(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $result = Users::moneyRecord($user_id,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function user_order_list(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $status = input("status",'all');
- $keywords = input('keywords');
- $result = Users::userOrderList($user_id,$status,$keywords,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function pay_order(){
- $user_id = $this->check_login();
- $order_no = input('order_no');
- if (!$order_no) $this->error('订单号为空');
- $result = Users::payOrder($user_id,$order_no);
- if ($result['code']){
- $this->success($result['msg'],$result['data']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function overtime_pay_order(){
- $user_id = $this->check_login();
- $order_no = input('order_no');
- if (!$order_no) $this->error('订单号为空');
- $pay_type = input("pay_type",'weixin');
- if (!in_array($pay_type,array('weixin','zfb'))) $this->error('支付方式错误');
- $result = Users::overtimePayOrder($user_id,$order_no,$pay_type);
- if ($result['code']){
- $this->success($result['msg'],$result['data']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function order_detail(){
- $this->check_login();
- $order_no= input('order_no');
- $result = Users::orderDetail($order_no);
- if ($result['code']){
- $this->success($result['msg'],$result['data']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function cancel_order(){
- $user_id = $this->check_login();
- $order_no= input('order_no');
- $result = Users::cancelOrder($user_id,$order_no);
- if ($result['code']){
- $this->success($result['msg'],$result['data']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function del_order(){
- $user_id = $this->check_login();
- $order_no= input('order_no');
- $result = Users::delOrder($user_id,$order_no);
- if ($result['code']){
- $this->success($result['msg'],$result['data']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function evaluation_order(){
- $user_id = $this->check_login();
- $order_no= input('order_no');
- $evaluation = intval(input('evaluation'));
- $evaluation_content = input('evaluation_content');
- if (!$evaluation) $this->error('请评分');
- if ($evaluation<1 || $evaluation>5) $this->error('评分1-5');
- if (!$evaluation_content) $this->error('请输入评价内容');
- $result = Users::evaluationOrder($user_id,$order_no,$evaluation,$evaluation_content);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function user_evaluation_list(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $result = Users::userEvaluationList($user_id,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function designer_evaluation_list(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $result = Users::designerEvaluationList($user_id,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function add_works(){
- $user_id = $this->check_login();
- $imgs = input('imgs');
- if (!$imgs) $this->error('请上传图片');
- $result = Users::addWorks($user_id,$imgs);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function work_list(){
- $user_id = $this->check_login();
- $result = Users::workList($user_id);
- $this->success($result['msg'],$result['data']);
- }
-
- public function del_works(){
- $user_id = $this->check_login();
- $ids = input('ids');
- if (!$ids) $this->error('作品id为空');
- $result = Users::delWorks($user_id,$ids);
- if ($result['code']){
- $this->success($result['msg']);
- }else{
- $this->error($result['msg']);
- }
- }
-
- public function designer_order_list(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $status = input("status",'all');
- $keywords = input('keywords');
- $result = Users::designerOrderList($user_id,$status,$keywords,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function clock_in_start(){
- $user_id = $this->check_login();
- $order_no = input('order_no');
- $start_address = input('start_address');
- if (!$order_no || !$start_address) $this->error('参数错误');
- $result = Users::clockInStart($user_id,$order_no,$start_address);
- $this->success($result['msg'],$result['data']);
- }
-
- public function clock_in_end(){
- $user_id = $this->check_login();
- $order_no = input('order_no');
- $end_address = input('end_address');
- if (!$order_no || !$end_address) $this->error('参数错误');
- $result = Users::clockInEnd($user_id,$order_no,$end_address);
- $this->success($result['msg'],$result['data']);
- }
-
- public function order_uploading(){
- $user_id = $this->check_login();
- $order_no = input('order_no');
- $works = input('works');
- if (!$order_no || !$works) $this->error('参数错误');
- $result = Users::orderUploading($user_id,$order_no,$works);
- $this->success($result['msg'],$result['data']);
- }
-
- public function coupon_list(){
- $user_id = $this->check_login();
- $Nowpage = input('page',1);
- $limits = input("limit",10);
- $result = Users::couponList($user_id,$Nowpage,$limits);
- $this->success($result['msg'],$result['data']);
- }
-
- public function cancellation(){
- $user_id = $this->check_login();
- $this->success('成功');
- }
- }
|