|
@@ -53,11 +53,12 @@
|
|
|
<h3 class="toolbar">
|
|
|
<span class="title">列表</span>
|
|
|
<div class="tool">
|
|
|
- <!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDel">批量删除</el-button> -->
|
|
|
+ <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDel" v-if="roleType == 'entAdmin' || roleType == 'entUser' || roleType == 'manager'">批量删除</el-button>
|
|
|
<!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleBatchDow">批量下载</el-button> -->
|
|
|
</div>
|
|
|
</h3>
|
|
|
- <el-table v-loading="loading" :data="list" border>
|
|
|
+ <el-table v-loading="loading" :data="list" border @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="项目编号" prop="projectNo" width="150" align="center" />
|
|
|
<el-table-column label="项目名称" prop="projectName" align="center" width="150"></el-table-column>
|
|
|
<el-table-column label="企业名称" prop="entName" align="center" width="150"/>
|
|
@@ -86,7 +87,7 @@
|
|
|
<!-- 科德管理员、企业角色、税务角色都有项目申报角色 -->
|
|
|
<script>
|
|
|
import {getProvinceDataApi,getRegionChildrenApi} from "@/api/common/common"
|
|
|
- import {listDeclareApi,listDeclareCommonApi} from '@/api/enterprise/declare/declare'
|
|
|
+ import {listDeclareApi,listDeclareCommonApi,projectBackApi} from '@/api/enterprise/declare/declare'
|
|
|
import {entStateOptions, getLabel, authStateOptions} from '@/utils/dataFormat'
|
|
|
export default {
|
|
|
data () {
|
|
@@ -95,8 +96,11 @@
|
|
|
provinceDataList: [],
|
|
|
cityDataList: [],
|
|
|
districtDataList: [],
|
|
|
+ ids: [],
|
|
|
+ selectCount: '',
|
|
|
entStateOptions: entStateOptions,
|
|
|
authStateOptions: authStateOptions,
|
|
|
+ roleType: '',
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
@@ -137,6 +141,32 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ 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() {
|
|
|
getRegionChildrenApi(this.scopeId).then(res => {
|
|
|
if(res.code == 200) {
|
|
@@ -198,11 +228,14 @@
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning"
|
|
|
}).then(function() {
|
|
|
- return deleteEntApi(id);
|
|
|
+ return projectBackApi(id);
|
|
|
}).then(() => {
|
|
|
this.queryParams.pageNum = 1;
|
|
|
this.getList();
|
|
|
- this.msgSuccess("删除成功");
|
|
|
+ this.$message({
|
|
|
+ message: '删除成功',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
})
|
|
|
},
|
|
|
// 重置
|