45 lines
2.0 KiB
JavaScript
45 lines
2.0 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const routing_controllers_1 = require("routing-controllers");
|
|
const utils_1 = require("../../utils/utils");
|
|
let AboutControllerHome = class AboutControllerHome {
|
|
About(session) {
|
|
return {
|
|
title: utils_1.utils.titleName("关于"),
|
|
isShowAction: {
|
|
header: true,
|
|
footer: true
|
|
},
|
|
banner: {
|
|
bannerTitle: '关于怪客',
|
|
bannerUrl: '/img/banner_5.jpg',
|
|
},
|
|
login: session.user ? session.user : false
|
|
};
|
|
}
|
|
};
|
|
__decorate([
|
|
routing_controllers_1.Get("/about"),
|
|
routing_controllers_1.Render("home/page/about"),
|
|
__param(0, routing_controllers_1.Session()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AboutControllerHome.prototype, "About", null);
|
|
AboutControllerHome = __decorate([
|
|
routing_controllers_1.Controller()
|
|
], AboutControllerHome);
|
|
exports.AboutControllerHome = AboutControllerHome;
|