You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.9 KiB
86 lines
2.9 KiB
<?php
|
|
|
|
namespace App\Http\Controllers\Weixin;
|
|
|
|
use App\Http\Controllers\Weixin\CommonController;
|
|
use Illuminate\Http\Request;
|
|
use App\Common\ReturnCode;
|
|
|
|
class AddressController extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
//收货地址列表
|
|
public function index(Request $request)
|
|
{
|
|
$pagesize = 10;
|
|
$offset = 0;
|
|
if (isset($_REQUEST['page'])) {
|
|
$offset = ($_REQUEST['page'] - 1) * $pagesize;
|
|
}
|
|
|
|
//收货地址列表
|
|
$postdata = array(
|
|
'limit' => $pagesize,
|
|
'offset' => $offset,
|
|
'access_token' => $_SESSION['weixin_user_info']['access_token']
|
|
);
|
|
$url = env('APP_API_URL') . "/user_address_list";
|
|
$res = curl_request($url, $postdata, 'GET');
|
|
$data['list'] = $res['data']['list'];
|
|
|
|
$data['totalpage'] = ceil($res['data']['count'] / $pagesize);
|
|
if (isset($_REQUEST['page_ajax']) && $_REQUEST['page_ajax'] == 1) {
|
|
$html = '';
|
|
|
|
if ($res['data']['list']) {
|
|
foreach ($res['data']['list'] as $k => $v) {
|
|
$html .= '<div class="flow-have-adr">';
|
|
|
|
if ($v['is_default'] == 1) {
|
|
$html .= '<p class="f-h-adr-title"><label>' . $v['name'] . '</label><span class="ect-colory">' . $v['mobile'] . '</span><span class="fr">默认</span></p>';
|
|
} else {
|
|
$html .= '<p class="f-h-adr-title"><label>' . $v['name'] . '</label><span class="ect-colory">' . $v['mobile'] . '</span></p>';
|
|
}
|
|
|
|
$html .= '<p class="f-h-adr-con">' . $v['province_name'] . $v['city_name'] . $v['district_name'] . ' ' . $v['address'] . '</p>';
|
|
$html .= '<div class="adr-edit-del"><a href="' . route('weixin_user_address_update', array('id' => $v['id'])) . '"><i class="iconfont icon-bianji"></i>编辑</a><a href="javascript:del(' . $v['id'] . ');"><i class="iconfont icon-xiao10"></i>删除</a></div>';
|
|
$html .= '</div>';
|
|
}
|
|
}
|
|
|
|
exit(json_encode($html));
|
|
}
|
|
|
|
return view('weixin.address.index', $data);
|
|
}
|
|
|
|
//收货地址添加
|
|
public function userAddressAdd(Request $request)
|
|
{
|
|
return view('weixin.address.userAddressAdd');
|
|
}
|
|
|
|
//收货地址修改
|
|
public function userAddressUpdate(Request $request)
|
|
{
|
|
$id = $request->input('id', '');
|
|
|
|
if ($id == '') {
|
|
$this->error_jump(ReturnCode::NO_FOUND, route('weixin'), 3);
|
|
}
|
|
|
|
$postdata = array(
|
|
'id' => $_REQUEST['id'],
|
|
'access_token' => $_SESSION['weixin_user_info']['access_token']
|
|
);
|
|
$url = env('APP_API_URL') . "/user_address_detail";
|
|
$res = curl_request($url, $postdata, 'GET');
|
|
$data['post'] = $res['data'];
|
|
|
|
return view('weixin.address.userAddressUpdate', $data);
|
|
}
|
|
}
|