|
@@ -24,30 +24,22 @@
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="ARTICLEList">
|
|
|
- <el-table-column label="项目名称" align="center" prop="atvName">
|
|
|
+ <el-table :data="ARTICLEList">
|
|
|
+ <el-table-column label="保税区名称" align="center" prop="deptName">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.atvName}}
|
|
|
+ {{scope.row.deptName}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="项目情况概述" align="center" prop="preview">
|
|
|
+ <el-table-column label="项目名称" align="center" prop="atvName">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.preview}}
|
|
|
+ {{scope.row.atvName}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="建设规模" align="center" prop="scale">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.scale}}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="单位" align="center" prop="unit">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{scope.row.unit}}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="建设内容" align="center" prop="content">
|
|
|
- <template slot-scope="scope">
|
|
|
- {{scope.row.content}}
|
|
|
+ <el-tag v-if="scope.row.scale == 1" type="success">小型</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.scale == 2" type="success">中型</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.scale == 3" type="success">大型</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="年度投资计划" align="center" prop="plan">
|
|
@@ -60,7 +52,7 @@
|
|
|
{{scope.row.reality}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="完成百分比" align="center" prop="retio">
|
|
|
+ <el-table-column label="年度投资完成百分比" align="center" prop="retio">
|
|
|
<template slot-scope="scope">
|
|
|
{{scope.row.retio}}
|
|
|
</template>
|
|
@@ -70,6 +62,15 @@
|
|
|
{{scope.row.schedule}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="项目审核状态" align="center" prop="status">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag v-if="scope.row.status == 0">草稿</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 1" type="info">审核中</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 2" type="danger">审核拒绝</el-tag>
|
|
|
+ <el-tag v-else-if="scope.row.status == 3" type="success">已审核</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -78,6 +79,7 @@
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['business:ARTICLE:edit']"
|
|
|
+ v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
|
>修改</el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
@@ -108,6 +110,12 @@ export default {
|
|
|
name: "ARTICLE",
|
|
|
data() {
|
|
|
return {
|
|
|
+ statusList:[
|
|
|
+ { label:'已保存' , value:0 },
|
|
|
+ { label:'审核中' , value:1 },
|
|
|
+ { label:'审核驳回' , value:2 },
|
|
|
+ { label:'已审核' , value:3 },
|
|
|
+ ],
|
|
|
// 根路径
|
|
|
baseURL: process.env.VUE_APP_BASE_API,
|
|
|
// 遮罩层
|
|
@@ -182,12 +190,12 @@ export default {
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
- this.iframe({ obj: edit, param: {}, title: '添加重点项目', width: '1050px', height: '750px' });
|
|
|
+ this.iframe({ obj: edit, param: {}, title: '添加重点项目', width: '1050px', height: '80%' });
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
const id = row.id || this.ids;
|
|
|
- this.iframe({ obj: edit, param: { id: id }, title: '修改重点项目', width: '1050px', height: '750px' });
|
|
|
+ this.iframe({ obj: edit, param: { id: id }, title: '修改重点项目', width: '1050px', height: '80%' });
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|