index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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. // 模板状态
  111. // statusOptions: accessStatus,
  112. dateRange: [],
  113. queryParams: {
  114. pageNum: 1,
  115. pageSize: 10,
  116. provinceId: undefined,
  117. cityId: undefined,
  118. districtId: undefined,
  119. entName: '',
  120. year: '',
  121. license: '',
  122. projectNo: '',
  123. projectName: ''
  124. },
  125. list: [],
  126. total: 0,
  127. open: false,
  128. openInfo: false
  129. }
  130. },
  131. computed: {
  132. userType() {
  133. return this.$store.state.user.userType
  134. },
  135. roleTypeFlag() {
  136. let roleType = this.$store.state.user.userType
  137. return ['ENT_ADMIN_TECH', 'ENT_ADMIN_FIN'].includes(roleType) //判断是否为技术负责人,财务负责人
  138. }
  139. },
  140. created() {
  141. this.getList()
  142. this.getProvinceData()
  143. },
  144. watch:{
  145. $route(){
  146. this.getList()
  147. this.getProvinceData()
  148. }
  149. },
  150. methods: {
  151. checkRole,
  152. // 多选框选中数据
  153. handleSelectionChange(selection) {
  154. this.ids = selection.map(item => item.id)
  155. this.selectCount = selection.length;
  156. },
  157. handleBatchDel() {
  158. if(this.selectCount <= 0) {
  159. this.$message.error('请选择要删除的数据');
  160. return
  161. }
  162. const delIds = this.ids.join(',')
  163. this.$confirm('是否确认删除该数据?', "警告", {
  164. confirmButtonText: "确定",
  165. cancelButtonText: "取消",
  166. type: "warning"
  167. }).then(function() {
  168. return deleteProjectApi(delIds);
  169. }).then(() => {
  170. this.queryParams.pageNum = 1;
  171. this.getList();
  172. this.$message({
  173. message: '删除成功',
  174. type: 'success'
  175. });
  176. })
  177. },
  178. //选择省份
  179. getCityData() {
  180. this.queryParams.cityId = ''
  181. this.queryParams.districtId = ''
  182. getRegionChildrenApi(this.queryParams.provinceId).then(res => {
  183. if(res.code == 200) {
  184. this.cityDataList = res.data
  185. }
  186. })
  187. },
  188. //选择市
  189. getDistrictData() {
  190. this.queryParams.districtId = ''
  191. getRegionChildrenApi(this.queryParams.cityId).then(res => {
  192. if(res.code == 200) {
  193. this.districtDataList = res.data
  194. }
  195. })
  196. },
  197. getProvinceData() {
  198. getProvinceDataApi().then(res => {
  199. if(res.code == 200) {
  200. this.provinceDataList = res.data
  201. }
  202. })
  203. },
  204. getList() {
  205. this.loading = true;
  206. this.queryParams.year = this.years.join(',')
  207. listProjectApi(this.queryParams).then(response => {
  208. this.list = response.data.records;
  209. this.total = response.data.total;
  210. this.loading = false;
  211. });
  212. },
  213. handleAdd() {
  214. this.addProjectVisible = true
  215. this.$nextTick(() => {
  216. this.$refs.addProject.init()
  217. })
  218. },
  219. handleDownload(row) {
  220. downLoadZip('/project/download/' +row.id, "项目附件")
  221. },
  222. handleDownloadBatch() {
  223. if(this.selectCount <= 0) {
  224. this.$message.error('请选择要下载的项目');
  225. return
  226. }
  227. const delIds = this.ids.join(',')
  228. downLoadZip('/project/download/' +delIds, "项目附件")
  229. },
  230. //提交申报
  231. handleDeclare(row) {
  232. const id = row.id;
  233. const reportState = '3'
  234. this.$confirm('是否确认申报该数据?', "警告", {
  235. confirmButtonText: "确定",
  236. cancelButtonText: "取消",
  237. type: "warning"
  238. }).then(function() {
  239. return submitDeclareApi(id, reportState);
  240. }).then(() => {
  241. this.queryParams.pageNum = 1;
  242. this.getList();
  243. this.$message({
  244. message: '申报成功',
  245. type: 'success'
  246. });
  247. })
  248. },
  249. //编辑
  250. handleEdit(row) {
  251. this.$router.push({name: 'editProject', query: {id: row.id, entId: row.entId, type: 'update', activeName: '2'}})
  252. },
  253. //添加年度信息 type用来区分tab页是否可以切换
  254. handleYear() {
  255. this.$router.push({name: 'editYear', query: {type: 'year'}})
  256. },
  257. // 查看
  258. handleView(row) {
  259. this.$router.push({name: 'editProject', query: {id: row.id, entId: row.entId, type: 'view'}})
  260. },
  261. handleDelete(row) {
  262. const id = row.id;
  263. this.$confirm('是否确认删除该数据?', "警告", {
  264. confirmButtonText: "确定",
  265. cancelButtonText: "取消",
  266. type: "warning"
  267. }).then(function() {
  268. return deleteProjectApi(id);
  269. }).then(() => {
  270. this.queryParams.pageNum = 1;
  271. this.getList();
  272. this.$message({
  273. message: '删除成功',
  274. type: 'success'
  275. });
  276. })
  277. },
  278. // 重置
  279. resetQuery() {
  280. this.years = [];
  281. this.resetForm("queryForm");
  282. this.handleQuery();
  283. },
  284. // 搜索
  285. handleQuery() {
  286. this.queryParams.pageNum = 1;
  287. this.getList();
  288. },
  289. reportStateFormat(row, col, val, index) {
  290. return getLabel(reportStateOptions, val)
  291. },
  292. flagFormat(row, col, val, index) {
  293. return getLabel(booleanOptions, val)
  294. },
  295. overYearFormat(row, col, val, index) {
  296. return getLabel(booleanOptions, val)
  297. }
  298. }
  299. }
  300. </script>
  301. <style>
  302. </style>