Commit 673039b1 authored by jingnan's avatar jingnan 👀

入库明细取消分页(因为有树结构~)

parent ccf24b34
......@@ -19,12 +19,9 @@
ref="treeTable"
:data="tableData"
:columns="columns"
:pagination="pagination"
table-height="300px"
:options="optionsTree"
:empty-content="emptyContent"
@pagination-size-change="changePageSize"
@pagination-current-change="changePageNum"
>
<!-- <div slot="header" class="table-title-wrap">
<dee-tools v-if="!isSignApproval" :tools="tools" mode="normal" />
......@@ -676,8 +673,8 @@ export default {
this.newDataImportResId = id
const param = {
'rootCondition': {
'pageFrom': this.pagination.currentPage,
'pageSize': this.pagination.pageSize,
'pageFrom': 1,
'pageSize': 9999,
'searchItems': {
'children': [
{
......
......@@ -20,12 +20,9 @@
ref="treeTable"
:data="tableData"
:columns="columns"
:pagination="pagination"
table-height="300px"
:options="optionsTree"
:empty-content="emptyContent"
@pagination-size-change="changePageSize"
@pagination-current-change="changePageNum"
>
<div slot="header" class="table-title-wrap">
<dee-tools v-if="!isSignApproval" :tools="tools" mode="normal" />
......@@ -719,8 +716,8 @@ export default {
this.newDataImportResId = reqObj && reqObj.id || ''
const param = {
'rootCondition': {
'pageFrom': this.pagination.currentPage,
'pageSize': this.pagination.pageSize,
'pageFrom': 1,
'pageSize': 9999,
'searchItems': {
'children': [
{
......
......@@ -17,13 +17,10 @@
<dee-up-table
v-if="basicData.id"
ref="treeTable"
:pagination="pagination"
:data="tableData"
table-height="calc(100vh - 460px)"
:columns="columns"
:options="optionsTree"
@pagination-size-change="changePageSize"
@pagination-current-change="changePageNum"
/>
</div>
</template>
......@@ -232,8 +229,8 @@ export default {
searchInStorageRequestItem() {
const param = {
'rootCondition': {
'pageFrom': this.pagination.currentPage,
'pageSize': this.pagination.pageSize,
'pageFrom': 1,
'pageSize': 9999,
'searchItems': {
'children': [
{
......
......@@ -16,15 +16,12 @@
<dee-up-table
v-if="basicData.id"
ref="treeTable"
:pagination="pagination"
:selection-row="{selectable: selectable}"
:data="tableData"
table-height="calc(100vh - 460px)"
:columns="columns"
:options="optionsTree"
@selection-change="selectionChange"
@pagination-size-change="changePageSize"
@pagination-current-change="changePageNum"
>
<dee-tools v-if="basicData.state === 'In_Confirm'" slot="header" :tools="tools" mode="normal" :collapse="false" /></dee-up-table>
<EditDrawer ref="editDrawer" :basic-data="basicData" />
......@@ -379,8 +376,8 @@ export default {
searchInStorageRequestItem() {
const param = {
'rootCondition': {
'pageFrom': this.pagination.currentPage,
'pageSize': this.pagination.pageSize,
'pageFrom': 1,
'pageSize': 9999,
'searchItems': {
'children': [
{
......
......@@ -3,13 +3,10 @@
<dee-up-table
v-if="basicData.id"
ref="treeTable"
:pagination="pagination"
:data="tableData"
:columns="columns"
table-height="calc(100vh - 200px)"
:options="optionsTree"
@pagination-size-change="changePageSize"
@pagination-current-change="changePageNum"
/>
</div>
</template>
......@@ -192,8 +189,8 @@ export default {
searchInStorageRequestItem() {
const param = {
'rootCondition': {
'pageFrom': this.pagination.currentPage,
'pageSize': this.pagination.pageSize,
'pageFrom': 1,
'pageSize': 9999,
'searchItems': {
'children': [
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment