enclosure-edit.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. <template>
  2. <div class="app-container">
  3. <div>
  4. <b style="color: red;font-size: 15px;">根据您填报的项目信息,系统自动将需要上传的文件列出,每种类型文件只能上传单个文件(大小限制4M),如有多个请打包上传!</b><br><b style="color: red;font-size: 15px;">技术人员上传1-7项相关文件,财务人员上传8-10项相关文件。当技术、财务资料达到 100%时,可提交项目申报。</b>
  5. </div>
  6. <h3 class="toolbar">
  7. <!-- <span class="title">加计扣除备查资料清单</span> -->
  8. <div class="tool">
  9. <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">批量下载</el-button>
  10. </div>
  11. </h3>
  12. <div class="table-con">
  13. <table class="table_register mt20 tablebar" style="width: 100%;">
  14. <tr>
  15. <th colspan="4" class="th_title">1、项目计划书
  16. </th>
  17. </tr>
  18. <tr>
  19. <th>项目计划书导入</th>
  20. <td colspan="3">
  21. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('9')" v-if="techFlag && list9.length<=0">上传</el-button>
  22. </td>
  23. </tr>
  24. <tr>
  25. <th>下载</th>
  26. <td colspan="3">
  27. <ul>
  28. <li v-for="(item, index) in list9" :key="index" style="margin: 2px;">
  29. <el-row :gutter="20">
  30. <el-col :span="12">
  31. <a :href="item.url">{{item.fileName}}</a>
  32. </el-col>
  33. <el-col :span="12">
  34. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  35. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  36. </el-col>
  37. </el-row>
  38. </li>
  39. </ul>
  40. </td>
  41. </tr>
  42. </table>
  43. <table class="table_register mt20 tablebar" style="width: 100%;">
  44. <tr>
  45. <th colspan="4" class="th_title">2、研究成果报告
  46. </th>
  47. </tr>
  48. <tr>
  49. <th>研究成果导入</th>
  50. <td colspan="3">
  51. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('10')" v-if="techFlag && list10.length <= 0">上传</el-button>
  52. <el-button type="primary" size="mini">
  53. <a href="/temp/研究成果报告模板.xls">模板下载</a>
  54. </el-button>
  55. </td>
  56. </tr>
  57. <tr>
  58. <th>下载</th>
  59. <td colspan="3">
  60. <ul>
  61. <li v-for="(item, index) in list10" :key="index" style="margin: 2px;">
  62. <el-row :gutter="20">
  63. <el-col :span="12">
  64. <a :href="item.url">{{item.fileName}}</a>
  65. </el-col>
  66. <el-col :span="12">
  67. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  68. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  69. </el-col>
  70. </el-row>
  71. </li>
  72. </ul>
  73. </td>
  74. </tr>
  75. </table>
  76. <table class="table_register mt20" style="width: 100%;">
  77. <tr>
  78. <th colspan="4" class="th_title">3、自主、委托、合作研究开发项目计划书和企业有权部门关于自主、委托、合作研究开发项目立项的决议文件
  79. </th>
  80. </tr>
  81. <tr>
  82. <th>决议文件导入</th>
  83. <td colspan="3">
  84. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('1')" v-if="techFlag && list1.length <= 0">上传</el-button>
  85. <el-button type="primary" size="mini">
  86. <a href="/temp/项目立项书模板.doc">模板下载</a>
  87. </el-button>
  88. </td>
  89. </tr>
  90. <tr>
  91. <th>下载</th>
  92. <td colspan="3">
  93. <ul>
  94. <li v-for="(item, index) in list1" :key="index" style="margin: 2px;">
  95. <el-row :gutter="20">
  96. <el-col :span="12">
  97. <a :href="item.url">{{item.fileName}}</a>
  98. </el-col>
  99. <el-col :span="12">
  100. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  101. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  102. </el-col>
  103. </el-row>
  104. </li>
  105. </ul>
  106. </td>
  107. </tr>
  108. </table>
  109. <table class="table_register mt20" style="width: 100%;">
  110. <tr>
  111. <th colspan="4" class="th_title">4、自主、委托、合作研究开发专门机构或项目组的编制情况和研发人员名单
  112. </th>
  113. </tr>
  114. <tr>
  115. <th>研发人员名单导入</th>
  116. <td colspan="3">
  117. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('2')" v-if="techFlag && list2.length <= 0">上传</el-button>
  118. <el-button type="primary" size="mini">
  119. <a href="/temp/项目负责人及研发人员模板.xls">模板下载</a>
  120. </el-button>
  121. </td>
  122. </tr>
  123. <tr>
  124. <th>下载</th>
  125. <td colspan="3">
  126. <ul>
  127. <li v-for="(item, index) in list2" :key="index" style="margin: 2px;">
  128. <el-row :gutter="20">
  129. <el-col :span="12">
  130. <a :href="item.url">{{item.fileName}}</a>
  131. </el-col>
  132. <el-col :span="12">
  133. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  134. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  135. </el-col>
  136. </el-row>
  137. </li>
  138. </ul>
  139. </td>
  140. </tr>
  141. </table>
  142. <table class="table_register mt20" style="width: 100%;">
  143. <tr>
  144. <th colspan="4" class="th_title">5、经科技行政主管部门登记的委托、合作研究开发项目的合同
  145. </th>
  146. </tr>
  147. <tr>
  148. <th>研究开发合同导入</th>
  149. <td colspan="3">
  150. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('3')" v-if="techFlag && list3.length <= 0">上传</el-button>
  151. </td>
  152. </tr>
  153. <tr>
  154. <th>下载</th>
  155. <td colspan="3">
  156. <ul>
  157. <li v-for="(item, index) in list3" :key="index" style="margin: 2px;">
  158. <el-row :gutter="20">
  159. <el-col :span="12">
  160. <a :href="item.url">{{item.fileName}}</a>
  161. </el-col>
  162. <el-col :span="12">
  163. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  164. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  165. </el-col>
  166. </el-row>
  167. </li>
  168. </ul>
  169. </td>
  170. </tr>
  171. </table>
  172. <table class="table_register mt20" style="width: 100%;">
  173. <tr>
  174. <th colspan="4" class="th_title">6、“研发支出”辅助账及汇总表
  175. </th>
  176. </tr>
  177. <tr>
  178. <th>“研发支出”辅助账及汇总表导入</th>
  179. <td colspan="3">
  180. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('6')" v-if="techFlag && list6.length <= 0">上传</el-button>
  181. </td>
  182. </tr>
  183. <tr>
  184. <th>下载</th>
  185. <td colspan="3">
  186. <ul>
  187. <li v-for="(item, index) in list6" :key="index" style="margin: 2px;">
  188. <el-row :gutter="20">
  189. <el-col :span="12">
  190. <a :href="item.url">{{item.fileName}}</a>
  191. </el-col>
  192. <el-col :span="12">
  193. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  194. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  195. </el-col>
  196. </el-row>
  197. </li>
  198. </ul>
  199. </td>
  200. </tr>
  201. </table>
  202. <table class="table_register mt20" style="width: 100%;">
  203. <tr>
  204. <th colspan="4" class="th_title">7、企业如果已取得地市级(含)以上科技行政主管部门出具的鉴定意见,应作为资料留存备查
  205. </th>
  206. </tr>
  207. <tr>
  208. <th>科技主管部门鉴定意见导入</th>
  209. <td colspan="3">
  210. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('7')" v-if="techFlag && list7.length <= 0">上传</el-button>
  211. </td>
  212. </tr>
  213. <tr>
  214. <th>下载</th>
  215. <td colspan="3">
  216. <ul>
  217. <li v-for="(item, index) in list7" :key="index" style="margin: 2px;">
  218. <el-row :gutter="20">
  219. <el-col :span="12">
  220. <a :href="item.url">{{item.fileName}}</a>
  221. </el-col>
  222. <el-col :span="12">
  223. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  224. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="techFlag">删除</el-button>
  225. </el-col>
  226. </el-row>
  227. </li>
  228. </ul>
  229. </td>
  230. </tr>
  231. </table>
  232. <!-- 财务 -->
  233. <table class="table_register mt20" style="width: 100%;">
  234. <tr>
  235. <th colspan="4" class="th_title">8、从事研发活动的人员(包括外聘人员)和用于研发活动的仪器、设备、无形资产的费用分配说明(包括工作使用情况记录及费用分配计算证据材料)
  236. </th>
  237. </tr>
  238. <tr>
  239. <th>费用分配说明导入</th>
  240. <td colspan="3">
  241. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('4')" v-if="finFlag && list4.length <= 0">上传</el-button>
  242. </td>
  243. </tr>
  244. <tr>
  245. <th>下载</th>
  246. <td colspan="3">
  247. <ul>
  248. <li v-for="(item, index) in list4" :key="index" style="margin: 2px;">
  249. <el-row :gutter="20">
  250. <el-col :span="12">
  251. <a :href="item.url">{{item.fileName}}</a>
  252. </el-col>
  253. <el-col :span="12">
  254. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  255. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
  256. </el-col>
  257. </el-row>
  258. </li>
  259. </ul>
  260. </td>
  261. </tr>
  262. </table>
  263. <table class="table_register mt20" style="width: 100%;">
  264. <tr>
  265. <th colspan="4" class="th_title">9、集中研发项目研发费决算表、集中研发项目费用分摊明细情况表和实际分享收益比例等资料
  266. </th>
  267. </tr>
  268. <tr>
  269. <th>资料导入</th>
  270. <td colspan="3">
  271. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('5')"v-if="finFlag && list5.length <= 0">上传</el-button>
  272. </td>
  273. </tr>
  274. <tr>
  275. <th>下载</th>
  276. <td colspan="3">
  277. <ul>
  278. <li v-for="(item, index) in list5" :key="index" style="margin: 2px;">
  279. <el-row :gutter="20">
  280. <el-col :span="12">
  281. <a :href="item.url">{{item.fileName}}</a>
  282. </el-col>
  283. <el-col :span="12">
  284. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  285. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
  286. </el-col>
  287. </el-row>
  288. </li>
  289. </ul>
  290. </td>
  291. </tr>
  292. </table>
  293. <table class="table_register mt20" style="width: 100%;">
  294. <tr>
  295. <th colspan="4" class="th_title">10、《研发费用加计扣除优惠明细表》(a107012,选择预缴享受的企业留存备查)
  296. </th>
  297. </tr>
  298. <tr>
  299. <th>优惠明细表导入</th>
  300. <td colspan="3">
  301. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleUpload('8')" v-if="finFlag && list8.length <= 0">上传</el-button>
  302. </td>
  303. </tr>
  304. <tr>
  305. <th>下载</th>
  306. <td colspan="3">
  307. <ul>
  308. <li v-for="(item, index) in list8" :key="index" style="margin: 2px;">
  309. <el-row :gutter="20">
  310. <el-col :span="12">
  311. <a :href="item.url">{{item.fileName}}</a>
  312. </el-col>
  313. <el-col :span="12">
  314. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDownload(item.id)">下载</el-button>
  315. <el-button type="primary" icon="el-icon-upload2" size="mini" @click="handleDelete(item.id)" v-if="finFlag">删除</el-button>
  316. </el-col>
  317. </el-row>
  318. </li>
  319. </ul>
  320. </td>
  321. </tr>
  322. </table>
  323. </div>
  324. <!-- 技术 -->
  325. <upload-enclosure ref="uploadEnclosure" v-if="enclosureVisible" @refreshData="getList()" :dataId="dataId" :attachType="'PROJECT'"></upload-enclosure>
  326. </div>
  327. </template>
  328. <script>
  329. import {getEnclosureApi,deleteEnclosureApi,getProjectInfoApi,downloadApi} from '@/api/enterprise/project/project'
  330. import UploadEnclosure from './UploadEnclosure'
  331. import { getExtend, readBuffer, render } from '@/utils/util';
  332. import { parse } from 'qs';
  333. import axios from 'axios'
  334. import FileUpload from '@/components/FileUpload'
  335. import { downLoadZip } from "@/utils/zipdownload";
  336. export default {
  337. components: {
  338. UploadEnclosure,
  339. FileUpload
  340. },
  341. props: {
  342. type: {
  343. type: String
  344. }
  345. },
  346. data() {
  347. return {
  348. total: 0,
  349. enclosureVisible: false,
  350. list: [],
  351. id: this.$route.query.id,
  352. dataId: undefined,
  353. attachType: 'FINACIAL',
  354. loading: false,
  355. selectionList: [],
  356. ids: '',
  357. queryParams: {
  358. pageNum: 1,
  359. pageSize: 10
  360. },
  361. list1: [],
  362. list2: [],
  363. list3: [],
  364. list4: [],
  365. list5: [],
  366. list6: [],
  367. list7: [],
  368. list8: [],
  369. list9: [],
  370. list10: []
  371. };
  372. },
  373. computed: {
  374. userType() {
  375. return this.$store.state.user.userType
  376. },
  377. techFlag() {
  378. let roleType = this.$store.state.user.userType
  379. return this.type != 'view' ? ['ENT_TECH', 'ADMIN', 'ENT_ADMIN'].includes(roleType) : false //判断是否为技术
  380. },
  381. finFlag() {
  382. let roleType = this.$store.state.user.userType
  383. return this.type != 'view' ? ['ENT_FIN', 'ADMIN', 'ENT_ADMIN'].includes(roleType) : false //判断是否为财务
  384. }
  385. },
  386. created() {
  387. this.id = this.$route.query.id || undefined;
  388. if(this.id) {
  389. this.getList()
  390. }
  391. },
  392. methods: {
  393. getList() {
  394. getEnclosureApi(this.attachType,this.id).then(res => {
  395. if(res.code == 200) {
  396. this.list = res.data.records
  397. this.list1 = []
  398. this.list2 = []
  399. this.list3 = []
  400. this.list4 = []
  401. this.list5 = []
  402. this.list6 = []
  403. this.list7 = []
  404. this.list8 = []
  405. this.list9 = []
  406. this.list10 = []
  407. this.list.map(item => {
  408. if(item.fileType == 'file1') {
  409. this.list1.push(item)
  410. }
  411. if(item.fileType == 'file2') {
  412. this.list2.push(item)
  413. }
  414. if(item.fileType == 'file3') {
  415. this.list3.push(item)
  416. }
  417. if(item.fileType == 'file4') {
  418. this.list4.push(item)
  419. }
  420. if(item.fileType == 'file5') {
  421. this.list5.push(item)
  422. }
  423. if(item.fileType == 'file6') {
  424. this.list6.push(item)
  425. }
  426. if(item.fileType == 'file7') {
  427. this.list7.push(item)
  428. }
  429. if(item.fileType == 'file8') {
  430. this.list8.push(item)
  431. }
  432. if(item.fileType == 'file9') {
  433. this.list9.push(item)
  434. }
  435. if(item.fileType == 'file10') {
  436. this.list10.push(item)
  437. }
  438. })
  439. this.total = res.data.total
  440. }
  441. })
  442. },
  443. handleUpload(type) {
  444. let params = {
  445. attachType: 'FINACIAL',
  446. fileType: 'file'+type,
  447. dataId: this.id
  448. }
  449. this.enclosureVisible = true
  450. this.$nextTick(() => {
  451. this.$refs.uploadEnclosure.init(params)
  452. })
  453. },
  454. /** 导出按钮操作 */
  455. // handleDownload(id) {
  456. // this.download(`/common/attach/${id}`, {
  457. // }, `附件`)
  458. // },
  459. handleDownload(id) {
  460. window.open(process.env.VUE_APP_BASE_API+`/common/attach/${id}`)
  461. },
  462. handleDownloadBatch() {
  463. let id = this.id
  464. downLoadZip(`/ent/data/download/${id}`, "加计扣除备查资料清单")
  465. this.getList();
  466. },
  467. // 从url加载
  468. handleView(row) {
  469. let routeUrl = this.$router.resolve({
  470. path: '/enclosurePreview',
  471. query: {url: row.url,fileName: row.fileName,id: row.id}
  472. });
  473. window.open(routeUrl.href, "_blank");
  474. },
  475. handleDelete(id) {
  476. // const id = row.id;
  477. this.$confirm('是否确认删除该数据?', "警告", {
  478. confirmButtonText: "确定",
  479. cancelButtonText: "取消",
  480. type: "warning"
  481. }).then(function() {
  482. return deleteEnclosureApi(id);
  483. }).then(() => {
  484. this.queryParams.pageNum = 1;
  485. this.getList();
  486. this.$modal.msgSuccess("删除成功");
  487. })
  488. },
  489. // 取消全选
  490. selectAll(selection) {
  491. if (selection.length == 0) {
  492. let list = this.selectedList.filter(item => !this.list.some(ele => ele.id === item.id));
  493. this.selectionList = list;
  494. }
  495. },
  496. handleSelectionChange(val) {
  497. this.selectionList = val;
  498. if(this.selectionList.length > 0) {
  499. let selectionIds = []
  500. for (let i = 0, len = this.selectionList.length; i < len; i++) {
  501. selectionIds.push(this.selectionList[i].id)
  502. }
  503. this.ids = selectionIds.join(',')
  504. }else {
  505. this.ids = ''
  506. }
  507. }
  508. }
  509. };
  510. </script>
  511. </script>
  512. <style lang="scss" scoped>
  513. </style>