Browse Source

Merge remote-tracking branch 'origin/master'

zhangying 11 months ago
parent
commit
5f3f267075

File diff suppressed because it is too large
+ 1905 - 980
doc/就业驿站管理系统.pdb


File diff suppressed because it is too large
+ 1548 - 789
doc/就业驿站管理系统.pdm


+ 13 - 0
doc/待更新脚本

@@ -1082,3 +1082,16 @@ INSERT INTO pc_workcategory VALUES ('20201206001', '20201206000', '普工', 1046
 INSERT INTO pc_workcategory VALUES ('20201207001', '20201207000', '社会工作者', 1047, 1);
 INSERT INTO pc_workcategory VALUES ('20201207002', '20201207000', '在校学生', 1048, 1);
 INSERT INTO pc_workcategory VALUES ('20201207003', '20201207000', '志愿者', 1049, 1);
+
+-- 2024.5.9标签关系表外键索引
+delete from pc_label_company;
+alter table pc_label_company add constraint FK_Reference_30 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;
+
+delete from pc_label_jobuser;
+alter table pc_label_jobuser add constraint FK_Reference_29 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;
+
+delete from pc_label_post;
+alter table pc_label_post add constraint FK_Reference_31 foreign key (LabelID)
+      references pc_label (LabelID) on delete restrict on update restrict;

+ 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
h5app/src/components/postSelectionLike.vue

@@ -17,7 +17,7 @@
         </ion-header>
         <ion-content class="ion-padding">
           <ion-item class="search-item" style="--border-style: unset; --inner-padding-end: 0px;--padding-start: 0px;">
-            <ion-input placeholder="岗位名称" class="custom"
+            <ion-input placeholder="请输入岗位名称" class="custom"
                        v-model="searchParams.professionName"
                        @input="reload" :clear-on-edit="true"
                        style="border: 1px solid #f2f2f5;border-radius: 14px;--padding-start: 10px;height: 35px;">

+ 2 - 2
h5app/src/views/sapp/tabWork.vue

@@ -130,13 +130,13 @@
 
              <a class="tool-item box-line"  @click="router.push('/tabs/tabWork/work/track/index')">
                <div class="tool-img">
-                 <img src="@/assets/icon/map.png">
+                 <img src="@/assets/icon/dk1.png">
                </div>
                <div class="tool-title">工作轨迹</div>
              </a>
              <a class="tool-item box-line" @click="router.push('/tabs/tabWork/work/signin')">
                <div class="tool-img">
-                 <img src="@/assets/icon/dk1.png">
+                 <img src="@/assets/icon/map.png">
                </div>
                <div class="tool-title">打卡签到</div>
              </a>

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