소스 검색

禅道问题修复

刘湘琪 2 년 전
부모
커밋
885840ca17

+ 9 - 0
src/views/enterprise/declare/components/BasicInfo.vue

@@ -1,6 +1,11 @@
 <template>
   <div class="app-container" v-loading="loading">
     <h3 class="toolbar">
+      <div class="tool">
+        <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownload">下载</el-button>
+      </div>
+    </h3>
+    <h3 class="toolbar">
       <span class="title">项目基本信息</span>
     </h3>
     <table class="table_view">
@@ -108,6 +113,10 @@
       cancel() {
         this.$store.dispatch("tagsView/delView", this.$route); // 关闭当前tab
         this.$router.go(-1);
+      },
+      //没有模板
+      handleDownload() {
+
       }
     }
   }

+ 20 - 5
src/views/enterprise/declare/components/EnclosureInfo.vue

@@ -2,7 +2,8 @@
   <div class="app-container">
     <h3 class="toolbar">
       <div class="tool">
-        <!-- <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownload">批量下载</el-button> -->
+        <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">批量下载</el-button>
+        <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">一键打印</el-button>
       </div>
     </h3>
     <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange" style="width: 100%" @select-all="selectAll">
@@ -12,8 +13,7 @@
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template slot-scope="scope">
           <el-button type="text" @click="handleView(scope.row)">查看</el-button>
-          <!-- <el-button type="text" @click="handleDownload(scope.row)">下载</el-button> -->
-          <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
+          <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
         </template>
       </el-table-column>
     </el-table>
@@ -90,8 +90,12 @@
         	})
         })
       },
-      handleView() {
-
+      // 查看
+      handleView(row) {
+        let fileUrl = row.url
+        let url = encodeURIComponent(fileUrl)
+        let officeUrl = 'https://view.xdocin.com/view?src='+url
+        window.open(officeUrl, '_target')
       },
       handleDelete(row) {
         const id = row.id;
@@ -125,6 +129,17 @@
         }else {
           this.ids = ''
         }
+      },
+      handleDownloadBatch() {
+        if(this.selectionList.length <=0) {
+          this.$message.error('请选择要下载的数据');
+          return
+        }
+        window.open("http://124.232.146.72:7015/api/common/attach/"+this.ids)
+        this.getList();
+      },
+      handleDownload(row) {
+        window.open("http://124.232.146.72:7015/api/common/attach/"+row.id)
       }
     }
   };

+ 12 - 3
src/views/enterprise/declare/index.vue

@@ -54,7 +54,7 @@
       <span class="title">列表</span>
       <div class="tool">
          <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDel" v-if="roleType == 'entAdmin' || roleType == 'entUser' || roleType == 'manager'">批量删除</el-button>
-        <!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDow">批量下载</el-button> -->
+        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleDownloadBatch">下载</el-button>
       </div>
     </h3>
     <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange">
@@ -89,6 +89,7 @@
   import {getProvinceDataApi,getRegionChildrenApi} from "@/api/common/common"
   import {listDeclareApi,listDeclareCommonApi,projectBackApi} from '@/api/enterprise/declare/declare'
   import {entStateOptions, getLabel, authStateOptions} from '@/utils/dataFormat'
+  import { downLoadZip } from "@/utils/zipdownload";
   export default {
     data () {
       return {
@@ -141,6 +142,14 @@
       }
     },
     methods: {
+      handleDownloadBatch() {
+        if(this.selectCount <= 0) {
+          this.$message.error('请选择要下载的项目');
+          return
+        }
+        const delIds = this.ids.join(',')
+        downLoadZip('/project/download/' +delIds, "项目附件")
+      },
       // 多选框选中数据
       handleSelectionChange(selection) {
         this.ids = selection.map(item => item.id)
@@ -213,8 +222,8 @@
           this.loading = false;
         });
       },
-      handleDownload() {
-
+      handleDownload(row) {
+        downLoadZip('/project/download/' +row.id, "项目附件")
       },
 
       // 查看

+ 21 - 11
src/views/enterprise/project/components/EnclosureInfo.vue

@@ -2,17 +2,17 @@
   <div class="app-container">
     <h3 class="toolbar">
       <div class="tool">
-        <!-- <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownload">批量下载</el-button> -->
+        <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">批量下载</el-button>
       </div>
     </h3>
-    <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange" style="width: 100%" @select-all="selectAll">
+    <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange" style="width: 100%">
       <el-table-column type="selection" width="55"></el-table-column>
       <el-table-column label="序号" type="index" width="50" align="center"></el-table-column>
       <el-table-column label="文件名称" prop="fileName" align="center"></el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
         <template slot-scope="scope">
-          <el-button type="text" @click="handleView(scope.row)">查看</el-button>
-          <!-- <el-button type="text" @click="handleDownload(scope.row)">下载</el-button> -->
+          <!-- <el-button type="text" @click="handleView(scope.row)">查看</el-button> -->
+          <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
           <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
         </template>
       </el-table-column>
@@ -62,7 +62,6 @@
     },
     created() {
       this.id = this.$route.params.id || undefined;
-      console.log(this.id)
       this.getData()
     },
     methods: {
@@ -92,6 +91,17 @@
           }
         })
       },
+      handleDownload(row) {
+        window.open("http://124.232.146.72:7015/api/common/attach/"+row.id)
+      },
+      handleDownloadBatch() {
+        if(this.selectionList.length <=0) {
+          this.$message.error('请选择要下载的数据');
+          return
+        }
+        window.open("http://124.232.146.72:7015/api/common/attach/"+this.ids)
+        this.getList();
+      },
       handleBatchDelte() {
         if(this.selectionList.length <=0) {
           this.$message.error('请选择要删除的数据');
@@ -125,12 +135,12 @@
           })
       },
       // 取消全选
-      selectAll(selection) {
-        if (selection.length == 0) {
-          let list = this.selectedList.filter(item => !this.list.some(ele => ele.id === item.id));
-          this.selectionList = list;
-        }
-      },
+      // selectAll(selection) {
+      //   if (selection.length == 0) {
+      //     let list = this.selectedList.filter(item => !this.list.some(ele => ele.id === item.id));
+      //     this.selectionList = list;
+      //   }
+      // },
       handleSelectionChange(val) {
         this.selectionList = val;
         if(this.selectionList.length > 0) {

+ 1 - 0
src/views/enterprise/project/components/FinBasic.vue

@@ -281,6 +281,7 @@ export default {
     this.form.entId = this.$route.query.entId || undefined;
     if(this.form.id) {
       this.getData()
+      this.getEntData()
     }
   },
   methods: {

+ 5 - 3
src/views/enterprise/project/components/UploadEnclosure.vue

@@ -2,7 +2,7 @@
   <el-dialog title="上传附件" :visible.sync="open" width="500px" append-to-body>
     <el-upload
       ref="upload"
-      accept=".xlsx, .xls"
+      :accept="enclosuresAccept"
       :headers="upload.headers"
       :action="upload.url"
       :disabled="upload.isUploading"
@@ -17,7 +17,7 @@
         将文件拖到此处,或
         <em>点击上传</em>
       </div>
-      <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
+      <div class="el-upload__tip" style="color:red" slot="tip">{{encTip}}</div>
     </el-upload>
     <div slot="footer" class="dialog-footer">
       <el-button type="primary" @click="submitFileForm">确 定</el-button>
@@ -44,8 +44,10 @@
     data() {
       return {
         // 项目导入参数
+        enclosuresAccept: 'image/*, application/pdf, application/vnd.ms-excel,application/msword,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.wordprocessingml.document',
+        encTip: '上传格式为图片、PDF、WORD、EXCEL,最大不超过15M',
         upload: {
-          title: "导入资料附件",
+          title: "导入资料附件",      
           // 是否禁用上传
           isUploading: false,
           // 设置上传的请求头部