Browse Source

问题需求解决

liuxiangqi 1 year ago
parent
commit
6586b553b0

+ 2 - 2
src/api/enterprise/project/project.js

@@ -153,9 +153,9 @@ export function declareUpdateApi(data) {
   })
   })
 }
 }
 //获取企业年度信息
 //获取企业年度信息
-export function getYearDataApi(projectYear, query) {
+export function getYearDataApi(projectYear, entId, query) {
   return request({
   return request({
-    url: `/ent/data/year-project/${projectYear}`,
+    url: `/ent/data/year-project/${projectYear}/${entId}`,
     method: 'get',
     method: 'get',
     params: query
     params: query
   })
   })

+ 45 - 0
src/utils/download.js

@@ -0,0 +1,45 @@
+import axios from 'axios'
+import { getToken } from '@/utils/auth'
+import { Message } from 'element-ui'
+
+const mimeMap = {
+  xlsx: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
+  zip: 'application/zip'
+}
+
+const baseUrl = process.env.VUE_APP_BASE_API
+export function downLoadZip(str, filename) {
+  var url = baseUrl + str
+  axios({
+    method: 'get',
+    url: url,
+    responseType: 'blob',
+    headers: { 'Authorization': 'Bearer ' + getToken() }
+  }).then(res => {
+    resolveBlob(res, mimeMap.zip)
+  })
+}
+/**
+ * 解析blob响应内容并下载
+ * @param {*} res blob响应内容
+ * @param {String} mimeType MIME类型
+ */
+export function resolveBlob(res, mimeType) {
+  const aLink = document.createElement('a')
+  var blob = new Blob([res.data], { type: mimeType })
+  // //从response的headers中获取filename, 后端response.setHeader("Content-disposition", "attachment; filename=xxxx.docx") 设置的文件名;
+  var patt = new RegExp('filename=([^;]+\\.[^\\.;]+);*')
+  var contentDisposition = decodeURI(res.headers['content-disposition'])
+  var result = patt.exec(contentDisposition)
+  if(result == null) {
+    Message.error("附件为空");
+    return
+  }
+  var fileName = result[1]
+  fileName = fileName.replace(/\"/g, '')
+  aLink.href = URL.createObjectURL(blob)
+  aLink.setAttribute('download', fileName) // 设置下载文件名称
+  document.body.appendChild(aLink)
+  aLink.click()
+  document.body.appendChild(aLink)
+}

+ 3 - 8
src/views/admin/project/index.vue

@@ -66,18 +66,16 @@
       </el-table-column>
       </el-table-column>
       <el-table-column label="资料完善度" prop="linkEmail" align="center" width="340">
       <el-table-column label="资料完善度" prop="linkEmail" align="center" width="340">
         <template slot-scope="scope">
         <template slot-scope="scope">
-          <span>技术 {{scope.row.techCompRate}} 财务 {{scope.row.finCompRate}}</span>
+          <span>技术 {{scope.row.techRate}} 财务 {{scope.row.finRate}}</span>
         </template>
         </template>
       </el-table-column>
       </el-table-column>
       <el-table-column label="申报状态" prop="reportState" align="center" width="80" :formatter="reportStateFormat"></el-table-column>
       <el-table-column label="申报状态" prop="reportState" align="center" width="80" :formatter="reportStateFormat"></el-table-column>
       <el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width" fixed="right">
       <el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width" fixed="right">
         <template slot-scope="scope">
         <template slot-scope="scope">
+          <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
           <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
           <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
           <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
           <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
           <el-button type="text" @click="handleAuditAdmin(scope.row)" v-if="scope.row.reportState == 3">审核</el-button>
           <el-button type="text" @click="handleAuditAdmin(scope.row)" v-if="scope.row.reportState == 3">审核</el-button>
-          <template v-if="scope.row.attachCnt != 0">
-            <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
-          </template>
         </template>
         </template>
       </el-table-column>
       </el-table-column>
     </el-table>
     </el-table>
@@ -138,6 +136,7 @@
     created() {
     created() {
       this.getList()
       this.getList()
       this.getProvinceData()
       this.getProvinceData()
+
     },
     },
     methods: {
     methods: {
       checkRole,
       checkRole,
@@ -242,10 +241,6 @@
           this.$refs.auditProject.init(row.id)
           this.$refs.auditProject.init(row.id)
         })
         })
       },
       },
-      // 查看
-      handleView(row) {
-        this.$router.push("/project/info/"+row.id)
-      },
       handleDelete(row) {
       handleDelete(row) {
         const id = row.id;
         const id = row.id;
         this.$confirm('是否确认删除该数据?', "警告", {
         this.$confirm('是否确认删除该数据?', "警告", {

+ 7 - 44
src/views/enterprise/declare/index.vue

@@ -41,7 +41,6 @@
     <h3 class="toolbar">
     <h3 class="toolbar">
       <span class="title">列表</span>
       <span class="title">列表</span>
       <div class="tool">
       <div class="tool">
-         <el-button type="primary" plain icon="el-icon-delete" size="mini" @click="handleBatchDel" v-if="roleType == 'entAdmin' || roleType == 'entUser' || roleType == 'manager'">批量删除</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>
       </div>
     </h3>
     </h3>
@@ -50,14 +49,13 @@
       <el-table-column label="项目编号" prop="projectNo" align="center" />
       <el-table-column label="项目编号" prop="projectNo" align="center" />
       <el-table-column label="项目名称" prop="projectName" align="center"></el-table-column>
       <el-table-column label="项目名称" prop="projectName" align="center"></el-table-column>
       <el-table-column label="企业名称" prop="entName" align="center"/>
       <el-table-column label="企业名称" prop="entName" align="center"/>
-      <el-table-column label="社会信用代码" prop="license" align="center"/>
+      <el-table-column label="社会信用代码" prop="creditCode" align="center"/>
       <el-table-column label="项目年份" prop="projectYear" align="center"/>
       <el-table-column label="项目年份" prop="projectYear" align="center"/>
       <el-table-column label="项目跨年" prop="overYearFlag" align="center" :formatter="fmtOverYear"></el-table-column>
       <el-table-column label="项目跨年" prop="overYearFlag" align="center" :formatter="fmtOverYear"></el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="160"></el-table-column>
       <el-table-column label="创建时间" align="center" prop="createTime" width="160"></el-table-column>
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
       <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="180" fixed="right">
         <template slot-scope="scope">
         <template slot-scope="scope">
           <el-button type="text" @click="handleView(scope.row)">查看</el-button>
           <el-button type="text" @click="handleView(scope.row)">查看</el-button>
-          <el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
           <template v-if="scope.row.attachCnt != 0">
           <template v-if="scope.row.attachCnt != 0">
             <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
             <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
           </template>
           </template>
@@ -81,6 +79,7 @@
   import {entStateOptions, getLabel, authStateOptions,yesOrNoOptions} from '@/utils/dataFormat'
   import {entStateOptions, getLabel, authStateOptions,yesOrNoOptions} from '@/utils/dataFormat'
   import { downLoadZip } from "@/utils/zipdownload";
   import { downLoadZip } from "@/utils/zipdownload";
   import { checkRole } from "@/utils/permission"; // 权限判断函数
   import { checkRole } from "@/utils/permission"; // 权限判断函数
+  import {listProjectApi} from "@/api/enterprise/project/project";
   export default {
   export default {
     data () {
     data () {
       return {
       return {
@@ -105,7 +104,8 @@
           entName: '',
           entName: '',
           license: '',
           license: '',
           projectNo: '',
           projectNo: '',
-          projectName: ''
+          projectName: '',
+          reportState: '4'
         },
         },
         list: [],
         list: [],
         total: 0,
         total: 0,
@@ -149,27 +149,6 @@
         this.ids = selection.map(item => item.id)
         this.ids = selection.map(item => item.id)
         this.selectCount = selection.length;
         this.selectCount = selection.length;
       },
       },
-      handleBatchDel() {
-        if(this.selectCount <= 0) {
-          this.$message.error('请选择要删除的数据');
-          return
-        }
-        const delIds = this.ids.join(',')
-        this.$confirm('是否确认删除该数据?', "警告", {
-            confirmButtonText: "确定",
-            cancelButtonText: "取消",
-            type: "warning"
-          }).then(function() {
-            return projectBackApi(delIds);
-          }).then(() => {
-            this.queryParams.pageNum = 1;
-            this.getList();
-            this.$message({
-              message: '删除成功',
-              type: 'success'
-            });
-          })
-      },
       getAreaData() {
       getAreaData() {
         getRegionChildrenApi(this.scopeId).then(res => {
         getRegionChildrenApi(this.scopeId).then(res => {
           if(res.code == 200) {
           if(res.code == 200) {
@@ -210,7 +189,7 @@
       getList() {
       getList() {
         this.loading = true;
         this.loading = true;
         this.queryParams.year = this.years.join(',')
         this.queryParams.year = this.years.join(',')
-        listDeclareCommonApi(this.queryParams).then(response => {
+        listProjectApi(this.queryParams).then(response => {
           this.list = response.data.records;
           this.list = response.data.records;
           this.total = response.data.total;
           this.total = response.data.total;
           this.loading = false;
           this.loading = false;
@@ -221,24 +200,8 @@
       },
       },
       // 查看
       // 查看
       handleView(row) {
       handleView(row) {
-        this.$router.push("/declare/info/"+row.id)
-      },
-      handleDelete(row) {
-        const id = row.id;
-        this.$confirm('是否确认删除该数据?', "警告", {
-            confirmButtonText: "确定",
-            cancelButtonText: "取消",
-            type: "warning"
-          }).then(function() {
-            return projectBackApi(id);
-          }).then(() => {
-            this.queryParams.pageNum = 1;
-            this.getList();
-            this.$message({
-              message: '删除成功',
-              type: 'success'
-            });
-          })
+        this.$router.push({name: 'editProject', query: {id: row.id, entId: row.entId,type: 'view'}})
+        // this.$router.push("/declare/info/"+row.id)
       },
       },
       // 重置
       // 重置
       resetQuery() {
       resetQuery() {

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

@@ -87,6 +87,7 @@
       	uploadApi(fd).then(res => {
       	uploadApi(fd).then(res => {
       		if(res.code == 200) {
       		if(res.code == 200) {
       			this.$message.success(`文件上传成功`)
       			this.$message.success(`文件上传成功`)
+            this.$refs.upload.clearFiles();
             this.$emit('refreshData')
             this.$emit('refreshData')
             this.open = false;
             this.open = false;
             this.upload.isUploading = false;
             this.upload.isUploading = false;

+ 6 - 2
src/views/enterprise/project/components/enclosure-edit.vue

@@ -1,11 +1,14 @@
 <template>
 <template>
   <div class="app-container">
   <div class="app-container">
     <h3 class="toolbar">
     <h3 class="toolbar">
-      <span class="title">加计扣除备查资料清单(<b style="color: red;font-size: 15px;">根据您填报的项目信息,系统自动将需要上传的文件列出,每种类型文件只能上传单个文件(大小限制4M),如有多个请打包上传!</b>)</span>
+      <span class="title">加计扣除备查资料清单</span>
       <div class="tool">
       <div class="tool">
         <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>
       </div>
     </h3>
     </h3>
+    <div>
+      <b style="color: red;font-size: 15px;">根据您填报的项目信息,系统自动将需要上传的文件列出,每种类型文件只能上传单个文件(大小限制4M),如有多个请打包上传!</b><br><b style="color: red;font-size: 15px;">技术人员上传1-7项相关文件,财务人员上传8-10项相关文件。当技术、财务资料达到 100%时,可提交项目申报。</b>
+    </div>
     <div class="table-con">
     <div class="table-con">
       <table class="table_register mt20 tablebar" style="width: 100%;">
       <table class="table_register mt20 tablebar" style="width: 100%;">
             <tr>
             <tr>
@@ -337,6 +340,7 @@
   import { parse } from 'qs';
   import { parse } from 'qs';
   import axios from 'axios'
   import axios from 'axios'
   import FileUpload from '@/components/FileUpload'
   import FileUpload from '@/components/FileUpload'
+  import { downLoadZip } from "@/utils/zipdownload";
   export default {
   export default {
     components: {
     components: {
       UploadEnclosure,
       UploadEnclosure,
@@ -466,7 +470,7 @@
       },
       },
       handleDownloadBatch() {
       handleDownloadBatch() {
         let id = this.id
         let id = this.id
-        window.open(process.env.VUE_APP_BASE_API+`/api/ent/data/download/${id}`)
+        downLoadZip(`/ent/data/download/${id}`, "加计扣除备查资料清单")
         this.getList();
         this.getList();
       },
       },
       // 从url加载
       // 从url加载

+ 3 - 4
src/views/enterprise/project/components/year-edit.vue

@@ -227,9 +227,7 @@ export default {
     return {
     return {
       options: businessIndustryOptions,
       options: businessIndustryOptions,
       disabledVisible: false,
       disabledVisible: false,
-      adminId: undefined,
-      techId: undefined,
-      finId: undefined,
+      entId: "",
       serviceDate: [],
       serviceDate: [],
       provinceName: "",
       provinceName: "",
       cityName: "",
       cityName: "",
@@ -323,6 +321,7 @@ export default {
     	this.$refs.form.clearValidate()
     	this.$refs.form.clearValidate()
     })
     })
     this.form.id = this.$route.query.id || undefined;
     this.form.id = this.$route.query.id || undefined;
+    this.entId = this.$route.query.entId || undefined;
     this.getYears()
     this.getYears()
     //添加年度信息 获取企业信息
     //添加年度信息 获取企业信息
     if(this.type == 'year') {
     if(this.type == 'year') {
@@ -384,7 +383,7 @@ export default {
       })
       })
     },
     },
     getYearData(projectYear) {
     getYearData(projectYear) {
-      getYearDataApi(projectYear).then(res => {
+      getYearDataApi(projectYear, this.entId).then(res => {
         this.form = res.data
         this.form = res.data
         if(this.form.techScope) {
         if(this.form.techScope) {
           let techScope = this.form.techScope.split(',') || []
           let techScope = this.form.techScope.split(',') || []

+ 3 - 5
src/views/enterprise/project/index.vue

@@ -37,7 +37,7 @@
       </el-table-column>
       </el-table-column>
       <el-table-column label="资料完善度" prop="linkEmail" align="center" width="340">
       <el-table-column label="资料完善度" prop="linkEmail" align="center" width="340">
         <template slot-scope="scope">
         <template slot-scope="scope">
-          <span>技术 {{scope.row.techCompRate}} 财务 {{scope.row.finCompRate}}</span>
+          <span>技术 {{scope.row.techRate}} 财务 {{scope.row.finRate}}</span>
         </template>
         </template>
       </el-table-column>
       </el-table-column>
       <el-table-column label="申报状态" prop="reportState" align="center" width="160" :formatter="reportStateFormat"></el-table-column>
       <el-table-column label="申报状态" prop="reportState" align="center" width="160" :formatter="reportStateFormat"></el-table-column>
@@ -45,12 +45,10 @@
       <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width" fixed="right">
       <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width" fixed="right">
         <template slot-scope="scope">
         <template slot-scope="scope">
           <el-button type="text" @click="handleView(scope.row)" v-if="(!roleTypeFlag &&(scope.row.reportState == 3 || scope.row.reportState == 4)) || roleTypeFlag">查看</el-button>
           <el-button type="text" @click="handleView(scope.row)" v-if="(!roleTypeFlag &&(scope.row.reportState == 3 || scope.row.reportState == 4)) || roleTypeFlag">查看</el-button>
-          <template v-if="scope.row.attachCnt != 0">
-            <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
-          </template>
+          <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
           <template v-if="!roleTypeFlag && (scope.row.reportState == 1 || scope.row.reportState == 2)">
           <template v-if="!roleTypeFlag && (scope.row.reportState == 1 || scope.row.reportState == 2)">
             <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
             <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
-            <el-button type="text" @click="handleDeclare(scope.row)">提交申报</el-button>
+            <el-button type="text" @click="handleDeclare(scope.row)" v-if="scope.row.techRate == '100.0%' && scope.row.finRate == '100.0%'">提交申报</el-button>
             <el-button type="text" @click="handleDelete(scope.row)" v-if="userType == 'ENT_ADMIN'">删除</el-button>
             <el-button type="text" @click="handleDelete(scope.row)" v-if="userType == 'ENT_ADMIN'">删除</el-button>
           </template>
           </template>
         </template>
         </template>