Prechádzať zdrojové kódy

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

lifanagju_citu 2 mesiacov pred
rodič
commit
590841d457

+ 1 - 1
src/views/menduner/system/talentMap/maintenance/gather/components/store.vue

@@ -126,7 +126,7 @@ const showPage = (html) => {
     iframe.addEventListener('load',function () {
       let idoc = iwindow.document;
       let imgs = idoc.getElementsByTagName('img')
-      for (let i in imgs) {
+      for (let i = 0; i < imgs.length; i++) {
         const img = imgs[i]
         if (img) {
           if (img.width >= img.height) {

+ 1 - 1
src/views/menduner/system/talentMap/maintenance/gather/components/webAnalysis.vue

@@ -222,7 +222,7 @@ const handleAnalysis = async () => {
 
   const loading = ElLoading.service({
     lock: true,
-    text: '正在解析中...',
+    text: '正在加载中...',
     background: 'rgba(0, 0, 0, 0.7)',
   })
 

+ 1 - 1
src/views/menduner/system/talentMap/maintenance/gather/index.vue

@@ -277,7 +277,7 @@ const handleAnalysis = async ({ task_type, id, task_source, task_name }) => {
     data: task_source.minio_paths_json
   }
   if (task_type === '杂项') params.process_type = 'table'
-  if (task_type === '新任命') params.publish_time = '2025-07-23'
+  if (task_type === '新任命') params.publish_time = task_source.publish_time
   // 招聘数据未返回,params.data设置为测试数据
   if (task_type === '招聘' && !params.data?.length) params.data = [{"id":"1843906600113389570","userId":"598525227328212992","name":"尹世丹","name_zh":"尹世丹"},{"id":"1942125259693166593","userId":"1942124499676893185","name":"陈梅","name_zh":"陈梅"}]
   try {