Files
order/web/controllers/stat/Stat.py

21 lines
489 B
Python
Raw Normal View History

2019-07-21 18:20:01 +08:00
# -*- coding: utf-8 -*-
2019-07-22 14:50:06 +08:00
from flask import Blueprint
from common.libs.Helper import ops_render
2019-07-21 18:20:01 +08:00
route_stat = Blueprint( 'stat_page',__name__ )
@route_stat.route( "/index" )
def index():
2019-07-22 14:50:06 +08:00
return ops_render( "stat/index.html" )
2019-07-21 18:20:01 +08:00
@route_stat.route( "/food" )
def food():
2019-07-22 14:50:06 +08:00
return ops_render( "stat/food.html" )
2019-07-21 18:20:01 +08:00
@route_stat.route( "/member" )
def memebr():
2019-07-22 14:50:06 +08:00
return ops_render( "stat/member.html" )
2019-07-21 18:20:01 +08:00
@route_stat.route( "/share" )
def share():
2019-07-22 14:50:06 +08:00
return ops_render( "stat/share.html" )