新增出库添加分页
This commit is contained in:
@@ -730,6 +730,9 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination v-show="outTotal > 0" :total="outTotal" v-model:page="outQueryParams.pageNum"
|
||||
v-model:limit="outQueryParams.pageSize" @pagination="searchPlan" />
|
||||
<!-- 审批模块 暂时注释-->
|
||||
<div class="examine" v-show="isExamine == 1">
|
||||
<el-row :gutter="20">
|
||||
@@ -1151,6 +1154,7 @@ const outQueryParams = ref({
|
||||
pageSize: 50,
|
||||
remark: "",
|
||||
});
|
||||
const outTotal = ref(0);
|
||||
//查询库存中数据 搜索
|
||||
const planList = ref([]);
|
||||
const addTableRef = ref(null);
|
||||
@@ -1165,6 +1169,7 @@ function searchPlan() {
|
||||
} else {
|
||||
planList.value = response.rows;
|
||||
}
|
||||
outTotal.value = response.total;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user