|
@@ -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() {
|