vue2-client 1.8.213 → 1.8.214
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/package.json
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
<slot name="rightBtnExpand" :selectedRowKeys="selectedRowKeys" :selectedRows="selectedRows"></slot>
|
|
61
61
|
<a-tooltip title="收起查询条件">
|
|
62
62
|
<a-button @click="toggleIsFormShow">
|
|
63
|
-
<a-icon :style="iconStyle" type="
|
|
63
|
+
<a-icon :style="iconStyle" :type="toggleIsFormIcon"/>
|
|
64
64
|
</a-button>
|
|
65
65
|
</a-tooltip>
|
|
66
66
|
</template>
|
|
@@ -118,6 +118,7 @@ export default {
|
|
|
118
118
|
loadError: false,
|
|
119
119
|
// 实际查询配置内容
|
|
120
120
|
realQueryConfig: {},
|
|
121
|
+
toggleIsFormIcon: 'vertical-align-top',
|
|
121
122
|
table_selectedRowKeys: [],
|
|
122
123
|
table_selectedRows: []
|
|
123
124
|
}
|
|
@@ -453,6 +454,7 @@ export default {
|
|
|
453
454
|
* 查询表单部分显示/隐藏切换
|
|
454
455
|
*/
|
|
455
456
|
toggleIsFormShow () {
|
|
457
|
+
this.toggleIsFormIcon = this.toggleIsFormIcon === 'vertical-align-top' ? 'vertical-align-bottom' : 'vertical-align-top'
|
|
456
458
|
this.$refs.xForm.toggleVisible()
|
|
457
459
|
this.$refs.xTable.setScrollYHeight({})
|
|
458
460
|
},
|