18 lines
418 B
Python
18 lines
418 B
Python
# -*- coding: utf-8 -*-
|
|
from flask import Blueprint
|
|
from common.libs.Helper import ops_render
|
|
|
|
route_account = Blueprint( 'account_page',__name__ )
|
|
|
|
@route_account.route( "/index" )
|
|
def index():
|
|
return ops_render( "account/index.html" )
|
|
|
|
@route_account.route( "/info" )
|
|
def info():
|
|
return ops_render( "account/info.html" )
|
|
|
|
@route_account.route( "/set" )
|
|
def set():
|
|
return ops_render( "account/set.html" )
|