|
@@ -21,10 +21,14 @@
|
|
|
v-hasPermi="['business:ARTICLE:add']"
|
|
|
>新增</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="danger" size="mini" icon="el-icon-delete" :disabled="multiple" @click="handleDelete" v-hasPermi="['business:ARTICLE:remove']">删除</el-button>
|
|
|
+ </el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table :data="ARTICLEList">
|
|
|
+ <el-table :data="ARTICLEList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection"></el-table-column>
|
|
|
<el-table-column label="保税区名称" align="center" prop="deptName">
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.deptName}}
|
|
@@ -76,7 +80,6 @@
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['business:ARTICLE:edit']"
|
|
|
v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
@@ -84,10 +87,9 @@
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['business:ARTICLE:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ @click="showEnterData(scope.row)"
|
|
|
+ v-hasPermi="['business:ARTICLE:edit']"
|
|
|
+ >数据填报</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -106,6 +108,7 @@
|
|
|
<script>
|
|
|
import { listARTICLE, getARTICLE, delARTICLE, addARTICLE, updateARTICLE } from "@/api/portal/ARTICLE/ARTICLE.js";
|
|
|
import edit from './edit.vue'
|
|
|
+import enterData from "./enterData.vue";
|
|
|
export default {
|
|
|
name: "ARTICLE",
|
|
|
data() {
|
|
@@ -164,6 +167,16 @@ export default {
|
|
|
this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
+ showEnterData(row){
|
|
|
+ const id = row.id || this.ids;
|
|
|
+ this.iframe({ obj: enterData, param: { id: id }, title: '数据填报', width: '1050px', height: '80%' });
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id);
|
|
|
+ this.single = selection.length !== 1;
|
|
|
+ this.multiple = !selection.length;
|
|
|
+ },
|
|
|
/** 查询重点项目管理列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|