|
|
|
@ -5,17 +5,17 @@
|
|
|
|
|
<div class="search-title">查询条件</div>
|
|
|
|
|
<el-form :inline="true" :model="formInline" size="small" class="demo-form-inline">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="任务名称:">
|
|
|
|
|
<el-input v-model="formInline.taskName" placeholder="请输入"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="任务编号:">
|
|
|
|
|
<el-input v-model="formInline.taskId" placeholder="请输入"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-col :span="7">
|
|
|
|
|
<el-form-item label="任务状态:">
|
|
|
|
|
<el-select v-model="formInline.taskStatus" placeholder="请选择">
|
|
|
|
|
<el-option label="进行中" value="1">
|
|
|
|
@ -27,17 +27,8 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item >
|
|
|
|
|
<!-- <el-date-picker v-model="formInline.time" format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
|
|
type="datetimerange" start-placeholder="开始时间" end-placeholder="结束时间" placeholder="请选择">
|
|
|
|
|
</el-date-picker> -->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="16" style="text-align: right;padding-right: 20px;">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<el-form-item class="unit-form">
|
|
|
|
|
<el-button size="mini" @click="resetQuery('queryFrom')">重置</el-button>
|
|
|
|
|
<el-button size="mini" type="primary" @click="handleQuery('queryFrom')">查询</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -83,15 +74,15 @@
|
|
|
|
|
<el-table-column label="操作" prop="userId" class-name="table-operation" align="center">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div style="display: flex;align-items: center;justify-content: center;">
|
|
|
|
|
<div style="display: flex;align-items: center;cursor: pointer;">
|
|
|
|
|
<div style="display: flex;align-items: center;cursor: pointer;" @click="goInfo(scope.row)">
|
|
|
|
|
<img src="@/assets/images/icon-ck@2x.png" alt="" style="width: 20px;margin-right: 5px;">
|
|
|
|
|
<span class="look-info" @click="goInfo(scope.row)"
|
|
|
|
|
<span class="look-info"
|
|
|
|
|
style="color: #1485EF;margin-right: 15px;cursor: pointer;">查看</span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- v-if="scope.row.taskStatus == 1" -->
|
|
|
|
|
<div style="display: flex;align-items: center;cursor: pointer;">
|
|
|
|
|
<div style="display: flex;align-items: center;cursor: pointer;" @click="delInfo(scope.row)">
|
|
|
|
|
<img src="@/assets/images/icon-shenhe@2x.png" alt="" style="width: 15px;margin-right: 5px;">
|
|
|
|
|
<span class="del-info" @click="delInfo(scope.row)"
|
|
|
|
|
<span class="del-info"
|
|
|
|
|
style="color: #1485EF;margin-right: 15px;cursor: pointer;">开始核查</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|