...
|
...
|
@@ -315,6 +315,11 @@ class OrderpageController extends WeChatBaseController{ |
|
|
}else{
|
|
|
$indent_id = $this -> request -> param();
|
|
|
$this -> assign('indent_id',$indent_id['indet_id']);
|
|
|
if($indent_id['type']==5){
|
|
|
$this -> assign('type',5);
|
|
|
}else{
|
|
|
$this -> assign('type',6);
|
|
|
}
|
|
|
return $this -> fetch();
|
|
|
}
|
|
|
|
...
|
...
|
@@ -337,6 +342,11 @@ class OrderpageController extends WeChatBaseController{ |
|
|
$data = Db::name('address') -> where('id',$id['id']) -> find();
|
|
|
$this -> assign('data',$data);
|
|
|
$this -> assign('indent_id',$id['indet_id']);
|
|
|
if($id['type']==5){
|
|
|
$this -> assign('type',5);
|
|
|
}else{
|
|
|
$this -> assign('type',6);
|
|
|
}
|
|
|
return $this -> fetch();
|
|
|
}
|
|
|
|
...
|
...
|
|