Files
order/common/libs/UrlManager.py
2019-07-18 08:59:26 +08:00

15 lines
325 B
Python

# -*- coding: utf-8 -*-
class UrlManager(object):
def __init__(self):
pass
@staticmethod
def buildUrl( path ):
return path
@staticmethod
def buildStaticUrl(path):
ver = "%s"%( 22222222 )
path = "/static" + path + "?ver=" + ver
return UrlManager.buildUrl( path )