فهرست منبع

Merge branch 'master' of http://39.98.153.250:9080/bowintek/EmploymentSite

82064491C07A712AE32B5B57EC6EF136 11 ماه پیش
والد
کامیت
0e4a2a6d87

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 991 - 615
doc/就业驿站管理系统.pdb


+ 7 - 6
doc/就业驿站管理系统.pdm

@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<?PowerDesigner AppLocale="UTF16" ID="{2D964471-9870-48BE-90E9-524D40D03B42}" Label="" LastModificationDate="1714093631" Name="就业驿站管理系统" Objects="567" Symbols="48" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.0.0.3514"?>
+<?PowerDesigner AppLocale="UTF16" ID="{2D964471-9870-48BE-90E9-524D40D03B42}" Label="" LastModificationDate="1714285878" Name="就业驿站管理系统" Objects="566" Symbols="48" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.0.0.3514"?>
 <!-- do not edit this file -->
 
 <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@@ -4694,7 +4694,7 @@ Reference.ParentRole 1</a:SymbolContent>
 <o:ReferenceSymbol Id="o53">
 <a:CreationDate>1701934197</a:CreationDate>
 <a:ModificationDate>1701934341</a:ModificationDate>
-<a:Rect>((-121277,70117), (-86530,74445))</a:Rect>
+<a:Rect>((-121277,70117), (-86530,74446))</a:Rect>
 <a:ListOfPoints>((-120877,73349),(-89530,73349),(-89530,70517))</a:ListOfPoints>
 <a:CornerStyle>2</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -4782,7 +4782,7 @@ DESTINATION 0 新宋体,8,N</a:FontList>
 <o:ReferenceSymbol Id="o63">
 <a:CreationDate>1713147065</a:CreationDate>
 <a:ModificationDate>1713147241</a:ModificationDate>
-<a:Rect>((-48679,26477), (-31746,43454))</a:Rect>
+<a:Rect>((-48679,26476), (-31746,43454))</a:Rect>
 <a:ListOfPoints>((-48279,27573),(-34746,27573),(-34746,43054))</a:ListOfPoints>
 <a:CornerStyle>2</a:CornerStyle>
 <a:ArrowStyle>1</a:ArrowStyle>
@@ -6345,12 +6345,13 @@ LABL 0 Arial,8,N</a:FontList>
 <o:Column Id="o175">
 <a:ObjectID>F1FC6ADD-8263-4397-82B4-DD07B3A5011C</a:ObjectID>
 <a:Name>所属行业</a:Name>
-<a:Code>ProfessionID</a:Code>
+<a:Code>IndustryID</a:Code>
 <a:CreationDate>1713851392</a:CreationDate>
 <a:Creator>bowin_89</a:Creator>
-<a:ModificationDate>1713851578</a:ModificationDate>
+<a:ModificationDate>1714285878</a:ModificationDate>
 <a:Modifier>bowin_89</a:Modifier>
-<a:DataType>int</a:DataType>
+<a:DataType>varchar(50)</a:DataType>
+<a:Length>50</a:Length>
 </o:Column>
 <o:Column Id="o176">
 <a:ObjectID>F1C4EA97-F9B6-44D5-BD0E-700937F301D9</a:ObjectID>

BIN
h5app/src/assets/icon/apkDownLoadBg.png


BIN
h5app/src/assets/icon/apkDownLoadLogo.png


+ 5 - 0
h5app/src/router/index.ts

@@ -280,6 +280,11 @@ const routes: Array<RouteRecordRaw> = [
             }
         ]
 
+    },
+    {
+        path: '/apkDownLoad',
+        name: 'apkDownLoad',
+        component: () => import('@/views/pages/components/apkDownLoad.vue'),
     }
 ]
 

+ 73 - 0
h5app/src/views/pages/components/apkDownLoad.vue

@@ -0,0 +1,73 @@
+<template>
+  <ion-page>
+    <ion-content>
+      <div class="bg-box">
+        <div class="logo-box">
+          <img src="../../../assets/icon/apkDownLoadLogo.png" alt="">
+          <p>惠州市就业驿站系统</p>
+        </div>
+        <div class="content-box">
+          <p>APP下载</p>
+        </div>
+      </div>
+    </ion-content>
+  </ion-page>
+</template>
+
+<script setup lang="ts">
+
+</script>
+
+<style lang="less" scoped>
+ion-content {
+  --background: #ffffff !important;
+  height: 100%;
+}
+
+.bg-box {
+  width: 100%;
+  height: 100%;
+  background-image: url("../../../assets/icon/apkDownLoadBg.png");
+  background-size: cover;
+  background-repeat: no-repeat;
+  background-position: center;
+}
+
+.logo-box {
+  width: 100%;
+  height: 20%;
+  display: flex;
+  justify-content: center;
+  padding-top: 20%;
+  flex-wrap: wrap;
+
+  img {
+    width: 50vw;
+    height: auto;
+  }
+
+  p {
+    width: 100%;
+    text-align: center;
+    margin-top: 30px;
+    font-size: 20px;
+    font-weight: 700;
+    color: #2F2075;
+  }
+}
+
+.content-box {
+  display: flex;
+  justify-content: center;
+  margin-top: 160px;
+
+  p {
+    width: 100%;
+    text-align: center;
+    margin-top: 30px;
+    font-size: 20px;
+    font-weight: 700;
+    color: #2F2075;
+  }
+}
+</style>