新增出库添加分页

This commit is contained in:
2026-02-05 10:37:44 +08:00
parent 5b5e2ceb4f
commit a667d99734

View File

@@ -730,6 +730,9 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </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"> <div class="examine" v-show="isExamine == 1">
<el-row :gutter="20"> <el-row :gutter="20">
@@ -1151,6 +1154,7 @@ const outQueryParams = ref({
pageSize: 50, pageSize: 50,
remark: "", remark: "",
}); });
const outTotal = ref(0);
//查询库存中数据 搜索 //查询库存中数据 搜索
const planList = ref([]); const planList = ref([]);
const addTableRef = ref(null); const addTableRef = ref(null);
@@ -1165,6 +1169,7 @@ function searchPlan() {
} else { } else {
planList.value = response.rows; planList.value = response.rows;
} }
outTotal.value = response.total;
}); });
} }