diff --git a/web/src/layout/Layout.vue b/web/src/layout/Layout.vue index d47dc873..ea213b5b 100644 --- a/web/src/layout/Layout.vue +++ b/web/src/layout/Layout.vue @@ -18,6 +18,14 @@ + +
+ + Powered by AnyLink + + 企业级远程办公系统 AGPL-3.0 ⓒ 2020-present +
+
@@ -36,6 +44,11 @@ export default { route_name: ['首页'], } }, + methods: { + goUrl(url) { + window.open(url, "_blank") + }, + }, watch: { route_path: function (val) { // var w = document.getElementById('layout-menu').clientWidth; @@ -60,4 +73,16 @@ export default { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .12), 0 0 3px 0 rgba(0, 0, 0, .04); } +.el-footer { + display: flex; + align-items: center; + justify-content: center; + text-align: center; + + font-size: 12px; + line-height: 12px; + margin: 0 12px; + color: rgb(134, 144, 156); +} + diff --git a/web/src/pages/set/Other.vue b/web/src/pages/set/Other.vue index 84b0b5c0..769e209c 100644 --- a/web/src/pages/set/Other.vue +++ b/web/src/pages/set/Other.vue @@ -88,7 +88,7 @@ step: '01:00', end: '23:00', }" - editable="false," + :editable="false" size="small" placeholder="请选择" style="width: 130px" diff --git a/web/src/plugins/request.js b/web/src/plugins/request.js index 4f56543d..6ac3520d 100644 --- a/web/src/plugins/request.js +++ b/web/src/plugins/request.js @@ -7,7 +7,7 @@ axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded if (process.env.NODE_ENV !== 'production') { // 开发环境 - axios.defaults.baseURL = 'http://172.23.83.233:8800'; + axios.defaults.baseURL = 'https://192.168.8.24:8800'; } function request(vm) {