This commit is contained in:
Czw996 2020-09-28 11:37:11 +08:00
parent 26f76c9f93
commit 65c7e061f9
4 changed files with 8 additions and 3 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -8,7 +8,7 @@
<meta name="description" content="企业管理系统解决方案">
<meta name="keywords" content="企业管理ERP仓库管理WMS进销存协同办公OA财务管理生产管理">
<meta name="baidu-site-verification" content="6cxT5lOESu">
<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico">
<title>海鸥云 - 永久免费的企业管理SaaS平台</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ant-design-vue@1.6.2/dist/antd.min.css">
</head>

View file

@ -2,10 +2,10 @@
<div class="background" ref="card">
<a-card class="card">
<div>
<div style="text-align: center; padding-top: 16px;">
<div style="text-align: center; padding-top: 16px; cursor: pointer;" @click="backIndex">
<img :src="logo" width="112" style="margin-top: -6px; margin-left: 8px;" />
</div>
<div class="title" @click="$router.push('/')" style="margin: 0;">海鸥云</div>
<div class="title" @click="backIndex" style="margin: 0;">海鸥云</div>
<div style="text-align: center; font-size: 16px; color: #666; margin-bottom: 24px;">进销存 - 让生意更简单高效</div>
</div>
<router-view />
@ -21,6 +21,11 @@
logo: require('@/assets/logo.png'),
}
},
methods: {
backIndex() {
windows.open('http:www.haioucloud.com');
},
},
}
</script>