|
@@ -12,22 +12,21 @@ type Lab struct {
|
|
newIndex xweb.Mapper `xweb:"/jyapp/jylab/newIndex"` //实验室 nginx跳转
|
|
newIndex xweb.Mapper `xweb:"/jyapp/jylab/newIndex"` //实验室 nginx跳转
|
|
}
|
|
}
|
|
|
|
|
|
-//
|
|
|
|
func init() {
|
|
func init() {
|
|
xweb.AddAction(&Lab{})
|
|
xweb.AddAction(&Lab{})
|
|
}
|
|
}
|
|
|
|
|
|
-//剑鱼标讯实验室首页>移动端工作桌面(百宝箱)
|
|
|
|
|
|
+// 剑鱼标讯实验室首页>移动端工作桌面(工作台)
|
|
func (l *Lab) Index() error {
|
|
func (l *Lab) Index() error {
|
|
return l.Redirect("/jy_mobile/tabbar/box")
|
|
return l.Redirect("/jy_mobile/tabbar/box")
|
|
}
|
|
}
|
|
|
|
|
|
-//剑鱼标讯实验室首页
|
|
|
|
|
|
+// 剑鱼标讯实验室首页
|
|
func (l *Lab) IndexNg() error {
|
|
func (l *Lab) IndexNg() error {
|
|
return l.Redirect("/jyapp/jylab/page_index") //在nginx配置的路由
|
|
return l.Redirect("/jyapp/jylab/page_index") //在nginx配置的路由
|
|
}
|
|
}
|
|
|
|
|
|
-//剑鱼标讯实验室首页>移动端工作桌面(百宝箱)
|
|
|
|
|
|
+// 剑鱼标讯实验室首页>移动端工作桌面(工作台)
|
|
func (l *Lab) NewIndex() error {
|
|
func (l *Lab) NewIndex() error {
|
|
return l.Redirect("/jy_mobile/tabbar/box")
|
|
return l.Redirect("/jy_mobile/tabbar/box")
|
|
}
|
|
}
|