Commit ffec89cd by 孙龙

up

parent 69b35c0a
Showing with 9 additions and 2 deletions
......@@ -84,12 +84,17 @@ class WebController extends Controller
return view('web', $info);
}
/*
* 设计
*/
public function design($request,$info){
$info['title'] = '标签设计';
return view('web', $info);
}
/*
* 标签预览
*/
public function showPage($request,$info){
$info['title'] = '预览';
$id = $request->input("tmpl_relation_id",0);
......@@ -98,7 +103,9 @@ class WebController extends Controller
return view('web', $info);
}
/*
* 打印标签
*/
public function prints($request,$info){
$tmpl_relationids = $request->input("tmpl_relationids",'');
$tmpl_relationid_arr = explode(",",$tmpl_relationids);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment