leisure-core 0.5.32 → 0.5.34
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.
- package/le-list/src/main.vue +8 -7
- package/package.json +1 -1
package/le-list/src/main.vue
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="page-container">
|
|
3
3
|
<el-form :inline="true" class="demo-form-inline" :model="searchData">
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
<
|
|
4
|
+
<slot name="paramSlot"></slot>
|
|
5
|
+
<el-form-item>
|
|
6
|
+
<div class="queryBtnClass">
|
|
7
7
|
<slot></slot>
|
|
8
8
|
<le-button type="primary" @click="onClickQuery()">查询</le-button>
|
|
9
9
|
<le-button type="primary" @click="addItem()" v-if="isDispAddBtn">{{
|
|
10
10
|
addBtnText
|
|
11
11
|
}}</le-button>
|
|
12
12
|
<slot name="headerBtns" :params="searchData"></slot>
|
|
13
|
-
</
|
|
14
|
-
</
|
|
13
|
+
</div>
|
|
14
|
+
</el-form-item>
|
|
15
15
|
</el-form>
|
|
16
16
|
<el-table
|
|
17
17
|
ref="eltablemain"
|
|
@@ -308,8 +308,9 @@ export default {
|
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
.queryBtnClass {
|
|
311
|
-
display: flex;
|
|
312
|
-
display: -webkit-flex;
|
|
311
|
+
display: flex !important;
|
|
312
|
+
display: -webkit-flex !important;
|
|
313
313
|
justify-content: start;
|
|
314
|
+
gap: 5px;
|
|
314
315
|
}
|
|
315
316
|
</style>
|