2e3050ea by renchao@pashanhoo.com

style:头部信息修改

1 parent 02eedc28
1 { 1 {
2 "TITLE": "不动产登记系统",
2 "SERVERAPI": "/bdcdj" 3 "SERVERAPI": "/bdcdj"
3 } 4 }
...\ No newline at end of file ...\ No newline at end of file
......
1 { 1 {
2 "TITLE": "不动产登记系统",
2 "SERVERAPI": "/bdcdj" 3 "SERVERAPI": "/bdcdj"
3 } 4 }
...\ No newline at end of file ...\ No newline at end of file
......
1 { 1 {
2 "TITLE": "不动产登记系统",
2 "SERVERAPI": "service-bdcdj-th" 3 "SERVERAPI": "service-bdcdj-th"
3 } 4 }
...\ No newline at end of file ...\ No newline at end of file
......
1 // 获取浏览器便签标题 1 /*
2 import defaultSettings from '@/settings' 2 * @Description: 获取浏览器便签标题
3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 15:51:27
5 */
6 import Vue from 'vue'
7 const title = Vue.prototype.BASE_API.TITLE
3 8
4 const title = defaultSettings.title || '厦门市房屋数据服务平台' 9 export default function getPageTitle (pageTitle) {
5
6 export default function getPageTitle(pageTitle) {
7 if (pageTitle) { 10 if (pageTitle) {
8 return `${pageTitle} - ${title}` 11 return `${pageTitle} - ${title}`
9 } 12 }
......