kz-ui-base 1.0.86 → 1.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -212,6 +212,7 @@
|
|
|
212
212
|
margin-bottom: 0;
|
|
213
213
|
top: 55px;
|
|
214
214
|
right: 0;
|
|
215
|
+
background: #f8f8f9;
|
|
215
216
|
"
|
|
216
217
|
v-show="isShowSearch"
|
|
217
218
|
>
|
|
@@ -268,30 +269,43 @@
|
|
|
268
269
|
</component>
|
|
269
270
|
</el-form>
|
|
270
271
|
</el-col>
|
|
271
|
-
<el-form-item
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
272
|
+
<el-form-item
|
|
273
|
+
style="
|
|
274
|
+
width: 100%;
|
|
275
|
+
padding: 2px 50px;
|
|
276
|
+
border-top: 1px solid #ddd;
|
|
277
|
+
float: left;
|
|
278
|
+
margin-bottom: 10px;
|
|
279
|
+
"
|
|
280
|
+
>
|
|
281
|
+
<div style="float: right; ">
|
|
282
|
+
<el-button
|
|
283
|
+
type="primary"
|
|
284
|
+
icon="el-icon-search"
|
|
285
|
+
size="mini"
|
|
286
|
+
@click="handleQuery"
|
|
287
|
+
>搜索</el-button
|
|
288
|
+
>
|
|
289
|
+
<el-button
|
|
290
|
+
icon="el-icon-refresh"
|
|
291
|
+
size="mini"
|
|
292
|
+
@click="resetQuery"
|
|
293
|
+
>重置</el-button
|
|
294
|
+
>
|
|
295
|
+
<AdvancedQueryClose
|
|
296
|
+
style="
|
|
297
|
+
margin-left: 10px;
|
|
298
|
+
margin-right: 20px;
|
|
299
|
+
display: inline-block;
|
|
300
|
+
float: none;
|
|
301
|
+
"
|
|
302
|
+
v-if="showToolBar"
|
|
303
|
+
:showSearch.sync="isShowSearch"
|
|
304
|
+
:sortVisible="false"
|
|
305
|
+
@queryTable="getList"
|
|
306
|
+
:columns="listColumns"
|
|
307
|
+
/>
|
|
308
|
+
</div>
|
|
295
309
|
</el-form-item>
|
|
296
310
|
</el-form>
|
|
297
311
|
</div>
|