目录结构 cms模块 from flask import Blueprint bp = Blueprint('cms', __name__, url_prefix='/cms') @bp.route('/')def index(): return 'cms index' from .views import bp common模块 from flask import Blueprint bp = Blueprint('common', __name__, url_prefix='/common'…