|
@@ -6,7 +6,7 @@
|
|
|
</div>
|
|
|
<a-card :bordered="false">
|
|
|
<!-- 查询区域 -->
|
|
|
- <div class="table-page-search-wrapper">
|
|
|
+ <!-- <div class="table-page-search-wrapper">
|
|
|
<div class="iotmenu-search-container">
|
|
|
<div class="item-search">
|
|
|
<a-select style="width: 220px" v-model="queryParam.status" placeholder="请选择状态" @change="searchQuery">
|
|
@@ -16,7 +16,7 @@
|
|
|
</a-select>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<!-- <div class="table-page-search-wrapper">
|
|
|
<a-form-model layout="inline" :model="queryParam" @keyup.enter.native="searchQuery">
|
|
|
<a-row :gutter="24">
|
|
@@ -64,7 +64,6 @@
|
|
|
<a-table
|
|
|
ref="table"
|
|
|
size="middle"
|
|
|
- bordered
|
|
|
rowKey="id"
|
|
|
:columns="columns"
|
|
|
:dataSource="dataSource"
|
|
@@ -76,10 +75,10 @@
|
|
|
|
|
|
<!-- 字符串超长截取省略号显示-->
|
|
|
<span slot="description" slot-scope="text">
|
|
|
- <j-ellipsis :value="text" :length="20" />
|
|
|
+ <j-ellipsis :value="text" :length="30" />
|
|
|
</span>
|
|
|
<span slot="parameterRender" slot-scope="text">
|
|
|
- <j-ellipsis :value="text" :length="20" />
|
|
|
+ <j-ellipsis :value="text" :length="30" />
|
|
|
</span>
|
|
|
|
|
|
|
|
@@ -137,16 +136,16 @@
|
|
|
queryParam: {},
|
|
|
// 表头
|
|
|
columns: [
|
|
|
- {
|
|
|
- title: '序号',
|
|
|
- dataIndex: '',
|
|
|
- key:'rowIndex',
|
|
|
- width:60,
|
|
|
- align:"center",
|
|
|
- customRender:function (t,r,index) {
|
|
|
- return parseInt(index)+1;
|
|
|
- }
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // title: '序号',
|
|
|
+ // dataIndex: '',
|
|
|
+ // key:'rowIndex',
|
|
|
+ // width:60,
|
|
|
+ // align:"center",
|
|
|
+ // customRender:function (t,r,index) {
|
|
|
+ // return parseInt(index)+1;
|
|
|
+ // }
|
|
|
+ // },
|
|
|
// {
|
|
|
// title: '任务类名',
|
|
|
// align:"center",
|
|
@@ -156,11 +155,11 @@
|
|
|
// return "*"+text.substring(9,text.length);
|
|
|
// }
|
|
|
// },
|
|
|
- {
|
|
|
- title: 'cron表达式',
|
|
|
- align:"center",
|
|
|
- dataIndex: 'cronExpression'
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // title: 'cron表达式',
|
|
|
+ // align:"center",
|
|
|
+ // dataIndex: 'cronExpression'
|
|
|
+ // },
|
|
|
// {
|
|
|
// title: '参数',
|
|
|
// align:"center",
|
|
@@ -169,9 +168,9 @@
|
|
|
// scopedSlots: {customRender: 'parameterRender'},
|
|
|
// },
|
|
|
{
|
|
|
- title: '描述',
|
|
|
+ title: '报表类型',
|
|
|
align:"center",
|
|
|
- width: 250,
|
|
|
+ width: 1050,
|
|
|
dataIndex: 'description',
|
|
|
scopedSlots: {customRender: 'description'},
|
|
|
},
|