Parcourir la source

修改系统名称

82064491C07A712AE32B5B57EC6EF136 il y a 1 an
Parent
commit
7168fed858

+ 1 - 1
h5app/public/index.html

@@ -2,7 +2,7 @@
 <html lang="en">
 <head>
     <meta charset="utf-8"/>
-    <title>惠州就业驿站</title>
+    <title>惠州就业驿站管理系统</title>
 
     <base href="/"/>
 

+ 1 - 1
vue/src/layout/header/index.vue

@@ -2,7 +2,7 @@
   <Layout.Header :style="headerStyle" class="layout-header">
     <Space :size="30">
 <!--      <img style="height: 52px;" src="~@/assets/images/logo-login.png" alt=""/>-->
-      <span style="font-size: 30px;margin-left:-10px;">惠州就业驿站</span>
+      <span style="font-size: 30px;margin-left:-10px;">惠州就业驿站管理系统</span>
     </Space>
     <Space :size="20">
       <!--      <Search />-->

+ 1 - 1
vue/src/router/outsideLayout.ts

@@ -9,7 +9,7 @@ export const LoginRoute: RouteRecordRaw = {
   name: LOGIN_NAME,
   component: () => import(/* webpackChunkName: "login" */ '@/views/login/index.vue'),
   meta: {
-    title: '惠州就业驿站',
+    title: '惠州就业驿站管理系统',
   },
 };
 

+ 1 - 1
vue/src/views/login/index.vue

@@ -3,7 +3,7 @@
     <div class="login-logo">
       <!-- <svg-icon name="logo" :size="45" />-->
 <!--      <img src="~@/assets/images/logo-login.png" width="75" />-->
-      <h1 class="mb-0 ml-2 text-3xl font-bold" style="font-size: 2.675rem;">惠州就业驿站</h1>
+      <h1 class="mb-0 ml-2 text-3xl font-bold" style="font-size: 2.675rem;">惠州就业驿站管理系统</h1>
     </div>
     <a-form layout="horizontal" :model="state.formInline" @submit.prevent="handleSubmit" style="border: 1px solid #f0f0f0;width: 600px;height: 400px;padding: 100px;">
       <div style="width: 400px;height: 400px; border-radius: 10px;">

+ 1 - 1
vue/vue.config.js

@@ -89,7 +89,7 @@ module.exports = defineConfig({
     }
 
     config.plugin('html').tap((args) => {
-      args[0].title = '惠州就业驿站';
+      args[0].title = '惠州就业驿站管理系统';
       return args;
     });