|
@@ -12,7 +12,7 @@
|
|
|
<el-form-item label="调阅周期" prop="cycle">
|
|
<el-form-item label="调阅周期" prop="cycle">
|
|
|
<el-select v-model="queryParams.cycle" placeholder="请选择周期" clearable>
|
|
<el-select v-model="queryParams.cycle" placeholder="请选择周期" clearable>
|
|
|
<el-option
|
|
<el-option
|
|
|
- v-for="dict in dict.type.plan_cycle"
|
|
|
|
|
|
|
+ v-for="dict in dict.type.sys_access_cycle"
|
|
|
:key="dict.value"
|
|
:key="dict.value"
|
|
|
:label="dict.label"
|
|
:label="dict.label"
|
|
|
:value="dict.value"
|
|
:value="dict.value"
|
|
@@ -64,7 +64,7 @@
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
|
|
+<!-- <el-col :span="1.5">
|
|
|
<el-button
|
|
<el-button
|
|
|
type="primary"
|
|
type="primary"
|
|
|
plain
|
|
plain
|
|
@@ -73,12 +73,12 @@
|
|
|
@click="handleExport"
|
|
@click="handleExport"
|
|
|
v-hasPermi="['core:task:export']"
|
|
v-hasPermi="['core:task:export']"
|
|
|
>导出</el-button>
|
|
>导出</el-button>
|
|
|
- </el-col>
|
|
|
|
|
|
|
+ </el-col>-->
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
|
|
- <el-table v-loading="loading" :data="taskList" @selection-change="handleSelectionChange">
|
|
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
|
|
+ <el-table v-loading="loading" :data="taskList" >
|
|
|
|
|
+
|
|
|
<el-table-column label="序号" type="index" align="center">
|
|
<el-table-column label="序号" type="index" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
|
|
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
|
|
@@ -149,7 +149,7 @@ import {listPlanRole} from "@/api/core/edu/plan";
|
|
|
export default {
|
|
export default {
|
|
|
components: {OrgTree,DialogInfo},
|
|
components: {OrgTree,DialogInfo},
|
|
|
name: "Task",
|
|
name: "Task",
|
|
|
- dicts: ['plan_cycle', 'retrieval_task_status'],
|
|
|
|
|
|
|
+ dicts: ['sys_access_cycle', 'retrieval_task_status'],
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
// 遮罩层
|
|
// 遮罩层
|
|
@@ -263,12 +263,13 @@ export default {
|
|
|
/** 搜索按钮操作 */
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
handleQuery() {
|
|
|
this.queryParams.pageNum = 1;
|
|
this.queryParams.pageNum = 1;
|
|
|
- this.queryParams.dateRange = [];
|
|
|
|
|
|
|
+ //this.queryParams.dateRange = [];
|
|
|
this.getList();
|
|
this.getList();
|
|
|
},
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
resetQuery() {
|
|
|
this.resetForm("queryForm");
|
|
this.resetForm("queryForm");
|
|
|
|
|
+ this.queryParams.dateRange = [];
|
|
|
this.handleQuery();
|
|
this.handleQuery();
|
|
|
},
|
|
},
|
|
|
// 多选框选中数据
|
|
// 多选框选中数据
|