|
@ -1,7 +1,7 @@ |
|
|
<template> |
|
|
<template> |
|
|
<div class="app-container"> |
|
|
|
|
|
|
|
|
<div> |
|
|
<!--工具栏--> |
|
|
<!--工具栏--> |
|
|
<div class="head-container"> |
|
|
|
|
|
|
|
|
<div class="head-container" style="padding-bottom:0"> |
|
|
<div v-if="crud.props.searchToggle" style="margin-bottom:10px"> |
|
|
<div v-if="crud.props.searchToggle" style="margin-bottom:10px"> |
|
|
<!-- 搜索 --> |
|
|
<!-- 搜索 --> |
|
|
<el-input v-model="query.jobName" clearable size="small" placeholder="输入任务名称搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery" /> |
|
|
<el-input v-model="query.jobName" clearable size="small" placeholder="输入任务名称搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="toQuery" /> |
|
@ -79,6 +79,9 @@ |
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
<!--表格渲染--> |
|
|
<!--表格渲染--> |
|
|
|
|
|
<div class="app-container container-wrap" style="min-height: calc(100vh - 282px)"> |
|
|
|
|
|
<span class="right-top-line" /> |
|
|
|
|
|
<span class="left-bottom-line" /> |
|
|
<el-table ref="table" v-loading="crud.loading" :cell-class-name="cell" :data="crud.data" style="width: 100%;" @selection-change="crud.selectionChangeHandler"> |
|
|
<el-table ref="table" v-loading="crud.loading" :cell-class-name="cell" :data="crud.data" style="width: 100%;" @selection-change="crud.selectionChangeHandler"> |
|
|
<el-table-column :selectable="checkboxT" type="selection" width="55" /> |
|
|
<el-table-column :selectable="checkboxT" type="selection" width="55" /> |
|
|
<el-table-column :show-overflow-tooltip="true" align="center" prop="id" label="任务ID" /> |
|
|
<el-table-column :show-overflow-tooltip="true" align="center" prop="id" label="任务ID" /> |
|
@ -121,6 +124,7 @@ |
|
|
<!--分页组件--> |
|
|
<!--分页组件--> |
|
|
<pagination /> |
|
|
<pagination /> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|