diff --git a/src/components/selection/EnterprisePlanSelectionModal.vue b/src/components/selection/EnterprisePlanSelectionModal.vue index 951e5995..e1e79bf9 100644 --- a/src/components/selection/EnterprisePlanSelectionModal.vue +++ b/src/components/selection/EnterprisePlanSelectionModal.vue @@ -24,46 +24,70 @@ - - - - - - - - - - - - - - - - - - - - - - - - - +
+ + {{ toggleSearchStatus ? $t('putAway') : $t('open') }} + + {{ $t('query') }} {{ $t('reset') }}
@@ -282,7 +306,8 @@ export default { } ], dataList: [], - categoryTreeList: [] // 组织机构下拉框数据 + categoryTreeList: [], // 组织机构下拉框数据 + toggleSearchStatus: false } }, mounted () { @@ -296,6 +321,9 @@ export default { this.replacePage() }) }, + handleToggleSearch () { + this.toggleSearchStatus = !this.toggleSearchStatus + }, // 获取组织机构树 getSysCategoryTree () { queryDepartTreeList().then((res) => { @@ -393,6 +421,7 @@ export default { showSizeChanger: true, total: 0 } + this.toggleSearchStatus = false } } }