index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" size="small">
  4. <!-- <el-form-item label="项目编号" prop="projectNo">
  5. <el-input v-model="queryParams.projectNo" style="width: 200px;" placeholder="请输入项目编号" clearable></el-input>
  6. </el-form-item> -->
  7. <el-form-item label="项目名称" prop="projectName">
  8. <el-input v-model="queryParams.projectName" style="width: 200px;" placeholder="请输入项目名称" clearable></el-input>
  9. </el-form-item>
  10. <el-form-item label="申报状态" prop="reportState">
  11. <el-select v-model="queryParams.reportState" filterable style="width: 200px;" clearable>
  12. <el-option value="1" label="待补充">待补充</el-option>
  13. <el-option value="2" label="待申报">待申报</el-option>
  14. <el-option value="3" label="待审核">待审核</el-option>
  15. <el-option value="4" label="已申报">已申报</el-option>
  16. </el-select>
  17. </el-form-item>
  18. <el-form-item>
  19. <el-button type="primary" @click="handleQuery">搜索</el-button>
  20. <el-button @click="resetQuery">重置</el-button>
  21. </el-form-item>
  22. </el-form>
  23. <h3 class="toolbar">
  24. <span class="title">列表</span>
  25. <div class="tool">
  26. <el-button type="text" style="color: red">当技术、财务资料达到 100%时,可提交项目申报</el-button>
  27. <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleYear" v-if="checkRole(['entAdmin'])">添加加计年度基本信息</el-button>
  28. <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" v-if="checkRole(['entAdmin'])">项目申报</el-button>
  29. <el-button type="primary" plain icon="el-icon-download" size="mini" @click="handleDownloadBatch">下载</el-button>
  30. <el-button type="primary" plain icon="el-icon-delete" size="mini" @click="handleBatchDel">批量删除</el-button>
  31. </div>
  32. </h3>
  33. <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange">
  34. <el-table-column type="selection" width="55" align="center" />
  35. <el-table-column type="index" width="60" label="序号" align="center"></el-table-column>
  36. <el-table-column label="加计扣除年度" prop="projectYear" align="center" width="120"></el-table-column>
  37. <el-table-column label="项目名称" prop="projectName" align="center" width="180"></el-table-column>
  38. <el-table-column label="是否跨年项目" prop="overYearFlag" :formatter="overYearFormat" align="center"></el-table-column>
  39. <!-- <el-table-column label="跨年申报" prop="backFlag"></el-table-column> -->
  40. <el-table-column label="是否追溯项目" prop="backFlag" :formatter="flagFormat" align="center"></el-table-column>
  41. <el-table-column label="项目起止时间" align="center" width="200">
  42. <template slot-scope="scope">
  43. <span>{{scope.row.projectStartDate}} - {{scope.row.projectEndDate}}</span>
  44. </template>
  45. </el-table-column>
  46. <el-table-column label="资料完善度" prop="linkEmail" align="center" width="220">
  47. <template slot-scope="scope">
  48. <span>技术 {{scope.row.techRate}} 财务 {{scope.row.finRate}}</span>
  49. </template>
  50. </el-table-column>
  51. <el-table-column label="申报状态" prop="reportState" align="center" width="120" :formatter="reportStateFormat"></el-table-column>
  52. </el-table-column>
  53. <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width" fixed="right">
  54. <template slot-scope="scope">
  55. <el-button type="text" @click="handleView(scope.row)" v-if="(!roleTypeFlag &&(scope.row.reportState == 3 || scope.row.reportState == 4)) || roleTypeFlag">查看</el-button>
  56. <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
  57. <template v-if="!roleTypeFlag && (scope.row.reportState == 1 || scope.row.reportState == 2)">
  58. <el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
  59. <el-button type="text" @click="handleDeclare(scope.row)" v-if="scope.row.techRate == '100.0%' && scope.row.finRate == '100.0%'">项目提交</el-button>
  60. <el-button type="text" @click="handleDelete(scope.row)" v-if="userType == 'ENT_ADMIN'">删除</el-button>
  61. </template>
  62. </template>
  63. </el-table-column>
  64. </el-table>
  65. <pagination
  66. v-show="total>0"
  67. :total="total"
  68. :page.sync="queryParams.pageNum"
  69. :limit.sync="queryParams.pageSize"
  70. @pagination="getList"/>
  71. <add-project v-if="addProjectVisible" ref="addProject" @refreshData="getList()"></add-project>
  72. <declare v-if="declareVisible" ref="declare" @refreshData="getList()"></declare>
  73. <audit-project v-if="auditVisible" ref="auditProject" @refreshData="getList()"></audit-project>
  74. </div>
  75. </template>
  76. <script>
  77. import {getProvinceDataApi,getRegionChildrenApi} from "@/api/common/common"
  78. import {listProjectApi, deleteEntApi, deleteProjectApi} from '@/api/enterprise/project/project'
  79. import {listProjectAdminApi} from '@/api/admin/project/project'
  80. import {entStateOptions, getLabel, authStateOptions, reportStateOptions,booleanOptions} from '@/utils/dataFormat'
  81. import AddProject from './components/addProject'
  82. import declare from './components/declare'
  83. import {projectAuditApi} from '@/api/admin/project/project'
  84. import AuditProject from './components/audit'
  85. import {downloadProjectByIDApi} from '@/api/common/common'
  86. import { downLoadZip } from "@/utils/zipdownload";
  87. import { checkRole } from "@/utils/permission"; // 权限判断函数
  88. import {submitDeclareApi} from "@/api/enterprise/declare/declare"
  89. export default {
  90. components: {
  91. AddProject,
  92. declare,
  93. AuditProject
  94. },
  95. // ADMIN,GOV_PROV,GOV_CITY,GOV_DISTRI,ENT_ADMIN,ENT_TECH,ENT_ADMIN_TECH,ENT_FIN,ENT_ADMIN_FIN
  96. data () {
  97. return {
  98. years: [],
  99. loading: false,
  100. addProjectVisible: false,
  101. declareVisible: false,
  102. auditVisible: false,
  103. ids: [],
  104. selectCount: '',
  105. provinceDataList: [],
  106. cityDataList: [],
  107. districtDataList: [],
  108. entStateOptions: entStateOptions,
  109. authStateOptions: authStateOptions,
  110. selectionList: [],
  111. // 模板状态
  112. // statusOptions: accessStatus,
  113. dateRange: [],
  114. queryParams: {
  115. pageNum: 1,
  116. pageSize: 10,
  117. provinceId: undefined,
  118. cityId: undefined,
  119. districtId: undefined,
  120. entName: '',
  121. year: '',
  122. license: '',
  123. projectNo: '',
  124. projectName: ''
  125. },
  126. list: [],
  127. total: 0,
  128. open: false,
  129. openInfo: false
  130. }
  131. },
  132. computed: {
  133. userType() {
  134. return this.$store.state.user.userType
  135. },
  136. roleTypeFlag() {
  137. let roleType = this.$store.state.user.userType
  138. return ['ENT_ADMIN_TECH', 'ENT_ADMIN_FIN'].includes(roleType) //判断是否为技术负责人,财务负责人
  139. }
  140. },
  141. created() {
  142. this.getList()
  143. this.getProvinceData()
  144. },
  145. watch:{
  146. $route(){
  147. this.getList()
  148. this.getProvinceData()
  149. }
  150. },
  151. methods: {
  152. checkRole,
  153. // 多选框选中数据
  154. handleSelectionChange(selection) {
  155. this.selectionList = selection
  156. this.ids = selection.map(item => item.id)
  157. this.selectCount = selection.length;
  158. },
  159. handleBatchDel() {
  160. if(this.selectCount <= 0) {
  161. this.$message.error('请选择要删除的数据');
  162. return
  163. }
  164. let flag = this.selectionList.some(item => item.reportState == 4)
  165. if(flag) {
  166. this.$message.error('所选择的数据中存在已申报的项目,已申报的项目不可以选择删除')
  167. return
  168. }
  169. const delIds = this.ids.join(',')
  170. this.$confirm('是否确认删除该数据?', "警告", {
  171. confirmButtonText: "确定",
  172. cancelButtonText: "取消",
  173. type: "warning"
  174. }).then(function() {
  175. return deleteProjectApi(delIds);
  176. }).then(() => {
  177. this.queryParams.pageNum = 1;
  178. this.getList();
  179. this.$message({
  180. message: '删除成功',
  181. type: 'success'
  182. });
  183. })
  184. },
  185. //选择省份
  186. getCityData() {
  187. this.queryParams.cityId = ''
  188. this.queryParams.districtId = ''
  189. getRegionChildrenApi(this.queryParams.provinceId).then(res => {
  190. if(res.code == 200) {
  191. this.cityDataList = res.data
  192. }
  193. })
  194. },
  195. //选择市
  196. getDistrictData() {
  197. this.queryParams.districtId = ''
  198. getRegionChildrenApi(this.queryParams.cityId).then(res => {
  199. if(res.code == 200) {
  200. this.districtDataList = res.data
  201. }
  202. })
  203. },
  204. getProvinceData() {
  205. getProvinceDataApi().then(res => {
  206. if(res.code == 200) {
  207. this.provinceDataList = res.data
  208. }
  209. })
  210. },
  211. getList() {
  212. this.loading = true;
  213. this.queryParams.year = this.years.join(',')
  214. listProjectApi(this.queryParams).then(response => {
  215. this.list = response.data.records;
  216. this.total = response.data.total;
  217. this.loading = false;
  218. });
  219. },
  220. handleAdd() {
  221. this.addProjectVisible = true
  222. this.$nextTick(() => {
  223. this.$refs.addProject.init()
  224. })
  225. },
  226. handleDownload(row) {
  227. downLoadZip('/ent/data/download/' +row.id, "项目附件")
  228. },
  229. handleDownloadBatch() {
  230. if(this.selectCount <= 0) {
  231. this.$message.error('请选择要下载的项目');
  232. return
  233. }
  234. const delIds = this.ids.join(',')
  235. downLoadZip('/ent/data/download/' +delIds, "项目附件")
  236. },
  237. //提交申报
  238. handleDeclare(row) {
  239. const id = row.id;
  240. const reportState = '3'
  241. this.$confirm('是否确认申报该数据?', "警告", {
  242. confirmButtonText: "确定",
  243. cancelButtonText: "取消",
  244. type: "warning"
  245. }).then(function() {
  246. return submitDeclareApi(id, reportState);
  247. }).then(() => {
  248. this.queryParams.pageNum = 1;
  249. this.getList();
  250. this.$message({
  251. message: '申报成功',
  252. type: 'success'
  253. });
  254. })
  255. },
  256. //编辑
  257. handleEdit(row) {
  258. this.$router.push({name: 'editProject', query: {id: row.id, entId: row.entId, type: 'update', activeName: '2'}})
  259. },
  260. //添加年度信息 type用来区分tab页是否可以切换
  261. handleYear() {
  262. this.$router.push({name: 'editYear', query: {type: 'year'}})
  263. },
  264. // 查看
  265. handleView(row) {
  266. this.$router.push({name: 'editProject', query: {id: row.id, entId: row.entId, type: 'view'}})
  267. },
  268. handleDelete(row) {
  269. const id = row.id;
  270. this.$confirm('是否确认删除该数据?', "警告", {
  271. confirmButtonText: "确定",
  272. cancelButtonText: "取消",
  273. type: "warning"
  274. }).then(function() {
  275. return deleteProjectApi(id);
  276. }).then(() => {
  277. this.queryParams.pageNum = 1;
  278. this.getList();
  279. this.$message({
  280. message: '删除成功',
  281. type: 'success'
  282. });
  283. })
  284. },
  285. // 重置
  286. resetQuery() {
  287. this.years = [];
  288. this.resetForm("queryForm");
  289. this.handleQuery();
  290. },
  291. // 搜索
  292. handleQuery() {
  293. this.queryParams.pageNum = 1;
  294. this.getList();
  295. },
  296. reportStateFormat(row, col, val, index) {
  297. return getLabel(reportStateOptions, val)
  298. },
  299. flagFormat(row, col, val, index) {
  300. return getLabel(booleanOptions, val)
  301. },
  302. overYearFormat(row, col, val, index) {
  303. return getLabel(booleanOptions, val)
  304. }
  305. }
  306. }
  307. </script>
  308. <style>
  309. </style>