titleUtil.js 367 B

1234567891011121314
  1. let config = require("../config/config.js");
  2. module.exports = {
  3. getTitle:getTitle
  4. }
  5. function getTitle(host){
  6. let title = config[process.env.NODE_ENV].title?config[process.env.NODE_ENV].title:"纵横公路养护云造价"
  7. //设置title
  8. if (/cgyh.smartcost.com.cn/.test(host)) {
  9. title = '四川高速养护云造价'
  10. }
  11. return title
  12. }