diff --git a/src/views/system/bindingParts/modules/ClauseModal.vue b/src/views/system/bindingParts/modules/ClauseModal.vue index 3376efbc..31710135 100644 --- a/src/views/system/bindingParts/modules/ClauseModal.vue +++ b/src/views/system/bindingParts/modules/ClauseModal.vue @@ -265,6 +265,18 @@ export default { this.treeData = [] this.searchValue = '' this.selectedKeys = [] + this.queryParam = {} + this.ipagination = { + current: 1, + pageSize: 10, + pageSizeOptions: ['10', '30', '50', '100', '150', '200'], + showTotal: (total, range) => { + return range[0] + '-' + range[1] + ' ' + this.$t('total') + total + this.$t('strip') + }, + showQuickJumper: true, + showSizeChanger: true, + total: 0 + } } } }