Browse Source

系统管理 任务调度 功能删减 css修改

master
x_ying 3 years ago
parent
commit
ce3720ffb9
  1. 8
      src/views/system/timing/index.vue

8
src/views/system/timing/index.vue

@ -1,7 +1,7 @@
<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">
<!-- 搜索 -->
<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>
</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-column :selectable="checkboxT" type="selection" width="55" />
<el-table-column :show-overflow-tooltip="true" align="center" prop="id" label="任务ID" />
@ -121,6 +124,7 @@
<!--分页组件-->
<pagination />
</div>
</div>
</template>
<script>

Loading…
Cancel
Save