from django.shortcuts import render from django.shortcuts import HttpResponse # Create your views here. def company(request): html = '公司要闻' return HttpResponse(html) def industry(request): html = '行业新闻' return HttpResponse(html) def notice(request): html = '通知公告' return HttpResponse(html)