Sfoglia il codice sorgente

申请库列表修改

sujunling 1 anno fa
parent
commit
af515adaff

+ 4 - 2
src/views/assembly/library/index.vue

@@ -308,7 +308,8 @@ export default defineComponent({
       var shr = [];
       if (item?.shlc?.length > 1) {
         item.shlc.map((i, index) => {
-          if (index != 0 && index != item.shlc.length - 1) {
+          var lx = item?.shzt == '审核中' ? true : index != item.shlc.length - 1;
+          if (index != 0 && lx) {
             shr.push(i.USER_NAME)
           }
         })
@@ -323,7 +324,8 @@ export default defineComponent({
       var shyj = [];
       if (item?.shlc?.length > 1) {
         item.shlc.map((i, index) => {
-          if (index != 0 && index != item.shlc.length - 1) {
+          var lx = item?.shzt == '审核中' ? true : index != item.shlc.length - 1;
+          if (index != 0 && lx) {
             shyj.push(i.CHECKINFO)
           }
         })

+ 0 - 1
src/views/dashboard/workbench/component/UnstructuredStatistic.vue

@@ -348,7 +348,6 @@ export default defineComponent({
       console.log('文件数据统计', res, data.file);
       const result = await QueryDataStoreData({})
       console.log('非结构化数据统计',result)
-      debugger
       const res2 = await QueryDRResourceFileSize({})
       console.log('非结构化数据分类统计',res2)
     };

+ 1 - 1
src/views/resource/plat/index.vue

@@ -148,7 +148,7 @@ export default defineComponent({
       let params = {
         id: currentTreeNodeKeys.value.length ? currentTreeNodeKeys.value[0] : null
       }
-      platList(params).then((r) => { if (r) { achieveList.value = r, updateAction() } });
+      platList(params).then((r) => { if (r) { achieveList.value = r } });
     }
 
     function updateAction() {

+ 2 - 1
src/views/resource/plat/item/child/ResCarModal.vue

@@ -120,7 +120,8 @@ export default defineComponent({
                                     var shyj = [];
                                     if (item?.shlc?.length > 1) {
                                         item.shlc.map((i, index) => {
-                                            if (index != 0 && index != item.shlc.length - 1) {
+                                            var lx = item?.shzt == '审核中' ? true : index != item.shlc.length - 1;
+                                            if (index != 0 && lx) {
                                                 shr.push(i.USER_NAME)
                                                 shyj.push(i.CHECKINFO)
                                             }