Parcourir la source

项目初始化

pengjing il y a 1 an
Parent
commit
d02420b8a1

+ 1 - 1
h5app/public/index.html

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

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

@@ -1,8 +1,8 @@
 <template>
   <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>
+<!--      <img style="height: 52px;" src="~@/assets/images/logo-login.png" alt=""/>-->
+      <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: '惠州就业驿站',
   },
 };
 

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

@@ -2,13 +2,13 @@
   <div class="login-box">
     <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>
+<!--      <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>
     </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;">
       <a-form-item>
-        <a-input v-model:value="state.formInline.username" size="large" placeholder="请输入工号/学号">
+        <a-input v-model:value="state.formInline.username" size="large" placeholder="请输入号">
           <template #prefix><user-outlined type="user" /></template>
         </a-input>
       </a-form-item>

+ 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;
     });