|
|
@@ -23,7 +23,6 @@
|
|
|
size="small"
|
|
|
:inline="true"
|
|
|
v-show="showSearch"
|
|
|
- label-width="90px"
|
|
|
>
|
|
|
<el-row>
|
|
|
<el-form-item prop="checkType" label="任务类型">
|
|
|
@@ -117,8 +116,6 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
<el-form-item prop="planStatus" label="任务状态">
|
|
|
<el-select
|
|
|
prop="planStatus"
|
|
|
@@ -147,44 +144,47 @@
|
|
|
</el-form-item>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
- <el-form-item>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-search"
|
|
|
- size="mini"
|
|
|
- @click="getList"
|
|
|
- >搜索</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- icon="el-icon-refresh"
|
|
|
- size="mini"
|
|
|
- @click="resetQuery"
|
|
|
- >重置</el-button
|
|
|
- ><el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd()"
|
|
|
- v-hasPermi="['core:checkplan:add']"
|
|
|
- >新增任务</el-button
|
|
|
- >
|
|
|
- </el-form-item>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
-
|
|
|
- <!-- 按纽
|
|
|
- <el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5"> </el-col>
|
|
|
+ <el-row :gutter="10" >
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-search"
|
|
|
+ size="mini"
|
|
|
+ @click="getList"
|
|
|
+ >搜索</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-refresh"
|
|
|
+ size="mini"
|
|
|
+ @click="resetQuery"
|
|
|
+ >重置</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd()"
|
|
|
+ v-hasPermi="['core:checkplan:add']"
|
|
|
+ >新增任务</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
<right-toolbar
|
|
|
:showSearch.sync="showSearch"
|
|
|
@queryTable="getList"
|
|
|
:columns="columns"
|
|
|
></right-toolbar>
|
|
|
- </el-row> -->
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
<el-table
|
|
|
border
|
|
|
- height="700"
|
|
|
+ height="596"
|
|
|
size="small"
|
|
|
v-loading="loading"
|
|
|
:data="pageData"
|
|
|
@@ -202,12 +202,14 @@
|
|
|
<el-table-column
|
|
|
prop="planName"
|
|
|
label="任务名称"
|
|
|
+ :show-overflow-tooltip="true"
|
|
|
v-if="columns[1].visible"
|
|
|
></el-table-column>
|
|
|
|
|
|
<el-table-column
|
|
|
prop="checkType"
|
|
|
label="任务类型"
|
|
|
+
|
|
|
v-if="columns[2].visible"
|
|
|
>
|
|
|
<template slot-scope="r"
|
|
|
@@ -416,7 +418,7 @@ export default {
|
|
|
execOrgType: null,
|
|
|
checkOrgType: null,
|
|
|
planStatus: null,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 20,
|
|
|
pageNum: 1,
|
|
|
checkSub: false,
|
|
|
orgId: null,
|