AjaxAction.class.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?php
  2. /**
  3. *
  4. * AreaAction.class.php (ajax 获取地址)
  5. *
  6. */
  7. if(!defined("Ainaphp")) exit("Access Denied");
  8. class AjaxAction extends BaseAction
  9. {
  10. public function index()
  11. {
  12. exit;
  13. }
  14. public function area()
  15. {
  16. $module = M('Area');
  17. $id = intval($_REQUEST['id']);
  18. $level= intval($_REQUEST['level']);
  19. $provinceid= intval($_REQUEST['provinceid']);
  20. $cityid= intval($_REQUEST['cityid']);
  21. $areaid= intval($_REQUEST['areaid']);
  22. $province_str='<option value="0">请选择省份...</option>';
  23. $city_str='<option value="0">请选择城市...</option>';
  24. $area_str='<option value="0">请选择区域...</option>';
  25. $str ='';
  26. $r = $module->where("parentid=".$id)->select();
  27. foreach($r as $key=>$pro){
  28. $selected = ( $pro['id']==$provinceid) ? ' selected="selected" ' : '';
  29. $str .='<option value="'.$pro['id'].'"'.$selected.'>'.$pro['name'].'</option>';
  30. }
  31. if($level==0){
  32. $province_str .=$str;
  33. }elseif($level==1){
  34. $city_str .=$str;
  35. }elseif($level==2){
  36. $area_str .=$str;
  37. }
  38. $str='';
  39. if($provinceid){
  40. $rr = $module->where("parentid=".$provinceid)->select();
  41. foreach($rr as $key=>$pro){
  42. $selected = ($pro['id']==$cityid) ? ' selected="selected" ' : '';
  43. $str .='<option value="'.$pro['id'].'"'.$selected.'>'.$pro['name'].'</option>';
  44. }
  45. $city_str .=$str;
  46. }
  47. $str='';
  48. if($cityid){
  49. $rrr = $module->where("parentid=".$cityid)->select();
  50. foreach($rrr as $key=>$pro){
  51. $selected = ($pro['id']==$areaid) ? ' selected="selected" ' : '';
  52. $str .='<option value="'.$pro['id'].'"'.$selected.'>'.$pro['name'].'</option>';
  53. }
  54. $area_str .=$str;
  55. }
  56. $res=array();
  57. $res['data']= $rs ? 1 : 0 ;
  58. $res['province'] =$province_str;
  59. $res['city'] =$city_str;
  60. $res['area'] =$area_str;
  61. echo json_encode($res); exit;
  62. exit;
  63. }
  64. public function address(){
  65. $do=get_safe_replace($_REQUEST['do']);
  66. $model = M('User_address');
  67. $id = intval($_REQUEST['id']);
  68. $provinceid= intval($_REQUEST['province']);
  69. $cityid= intval($_REQUEST['city']);
  70. $areaid= intval($_REQUEST['area']);
  71. $userid = $_POST['userid'] = $this->_userid;
  72. if($do=='save'){
  73. $id= intval($_POST['id']);
  74. $_POST['isdefault']=1;
  75. if($userid){
  76. $model->where("userid=".$userid)->save(array('isdefault'=>0));
  77. if($id){
  78. $r = $model->save($_POST);
  79. if($model->getDbError())die(json_encode(array('id'=>0)));
  80. $_POST['edit'] =1;
  81. }else{
  82. $where['province'] = array('eq',$provinceid);
  83. $where['city'] = array('eq',$cityid);
  84. $where['area'] = array('eq',$areaid);
  85. $where['consignee'] = array('eq',$_POST['consignee']);
  86. $where['address'] = array('eq',$_POST['address']);
  87. $ir = $model->where($where)->find();
  88. if($ir){
  89. echo json_encode(array('error'=>'收货信息已经存在!'));exit;
  90. }
  91. $id=$model->add ($_POST);
  92. }
  93. }else{
  94. $_POST['id']=1;
  95. $data = serialize($_POST);
  96. cookie('guest_address',$data,315360000);
  97. $id=1;
  98. $_POST['edit'] =1;
  99. }
  100. if($id){
  101. $_POST['id'] =$id;
  102. die(json_encode($_POST));
  103. }else{
  104. die(json_encode(array('id'=>0)));
  105. }
  106. }elseif($do=='get'){
  107. if($userid){
  108. $data=$model->find($id);
  109. }else{
  110. $data = unserialize( cookie('guest_address'));
  111. }
  112. if($data){
  113. die(json_encode($data));
  114. }else{
  115. die(json_encode(array('id'=>0)));
  116. }
  117. exit;
  118. }
  119. }
  120. public function shipping(){
  121. $do=get_safe_replace($_REQUEST['do']);
  122. $model = M('Shipping');
  123. $id = intval($_REQUEST['id']);
  124. if($do=='get'){
  125. $data=$model->find($id);
  126. if($data){
  127. echo json_encode($data);
  128. }else{
  129. echo json_encode(array('id'=>0));
  130. }
  131. exit;
  132. }
  133. }
  134. }
  135. ?>