Selaa lähdekoodia

Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev

lifanagju_citu 6 kuukautta sitten
vanhempi
commit
d7b1aeffb4

+ 4 - 4
.env.localDev

@@ -3,12 +3,12 @@ NODE_ENV = 'localDev'
 VITE_APP_TITLE = 门墩儿
 
 # 访问路径
-# VITE_ACCESS_BASE_URL = 'http://localhost:3000'
-VITE_ACCESS_BASE_URL = 'https://www.menduner.com'
+VITE_ACCESS_BASE_URL = 'http://localhost:3000'
+# VITE_ACCESS_BASE_URL = 'https://www.menduner.com'
 
 # 请求路径
-# VITE_BASE_URL = 'http://192.168.3.80'
-VITE_BASE_URL = 'https://www.menduner.com'
+VITE_BASE_URL = 'http://192.168.3.80'
+# VITE_BASE_URL = 'https://www.menduner.com'
 
 # 预览路径
 VITE_PREVIEW_URL = 'http://192.168.3.91:8012'

+ 7 - 0
package-lock.json

@@ -19,6 +19,7 @@
         "html2canvas": "^1.4.1",
         "js-base64": "^3.7.7",
         "js-cookie": "^3.0.5",
+        "js-sha256": "^0.11.0",
         "lodash": "^4.17.21",
         "nprogress": "^0.2.0",
         "pinia": "^2.1.7",
@@ -4605,6 +4606,12 @@
         "node": ">=14"
       }
     },
+    "node_modules/js-sha256": {
+      "version": "0.11.0",
+      "resolved": "https://registry.npmmirror.com/js-sha256/-/js-sha256-0.11.0.tgz",
+      "integrity": "sha512-6xNlKayMZvds9h1Y1VWc0fQHQ82BxTXizWPEtEeGvmOUYpBRy4gbWroHLpzowe6xiQhHpelCQiE7HEdznyBL9Q==",
+      "license": "MIT"
+    },
     "node_modules/js-tokens": {
       "version": "9.0.0",
       "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-9.0.0.tgz",

+ 1 - 0
src/views/recruit/enterprise/jobFair/components/job.vue

@@ -92,6 +92,7 @@ const jobList = ref([])
 const positionItems = ref([])
 const positionTotal = ref(0)
 const positionLoading = ref(false)
+const total = ref(0)
 const positionPageInfo = ref({
   pageSize: 10,
   pageNo: 1,

+ 2 - 2
src/views/recruit/enterprise/jobFair/details.vue

@@ -10,13 +10,13 @@
 
 <script setup>
 defineOptions({ name: 'jobFairDetails' })
-import { ref } from 'vue'
+import { shallowRef, ref } from 'vue'
 import { useRouter } from 'vue-router'
 import JobFairDetailsJob from './components/job.vue'
 import JobFairDetailsResume from './components/resume.vue'
 const router = useRouter()
 
-const jobFairDetailsJob = ref([
+const jobFairDetailsJob = shallowRef([
   {
     title: '职位',
     component: JobFairDetailsJob