...
|
...
|
@@ -145,7 +145,7 @@ |
145
|
145
|
ref="listElRef"
|
146
|
146
|
:dataSource="dataSource"
|
147
|
147
|
:pagination="pagination"
|
148
|
|
- :grid="{ gutter: 16, xs: 1, sm: 1, md: 2, lg: 3, xl: 3, xxl: 4, column: 4 }"
|
|
148
|
+ :grid="{ gutter: 16, xs: 1, sm: 1, md: 2, lg: 3, xl: 3, xxl: 4, column: colNumber }"
|
149
|
149
|
:loading="loading"
|
150
|
150
|
>
|
151
|
151
|
<template #header>
|
...
|
...
|
@@ -154,7 +154,7 @@ |
154
|
154
|
<span class="text-lg font-medium">任务列表</span>
|
155
|
155
|
</div>
|
156
|
156
|
<Space>
|
157
|
|
- <CardLayoutButton v-model:value="colNumber" @change="reload" />
|
|
157
|
+ <CardLayoutButton v-model:value="colNumber" :max="4" :min="1" @change="reload" />
|
158
|
158
|
<Tooltip v-if="dataSource.length" title="刷新">
|
159
|
159
|
<Button type="primary" @click="getDataSource">
|
160
|
160
|
<ReloadOutlined :spin="loading" />
|
...
|
...
|
|