|
@@ -58,6 +58,9 @@
|
|
|
<br />
|
|
|
<el-pagination
|
|
|
background
|
|
|
+ @current-change="currentChange"
|
|
|
+ :current-page="page_data.page"
|
|
|
+ :page-size="page_data.pageSize"
|
|
|
layout="prev, pager, next"
|
|
|
:total="page_data.total"
|
|
|
/>
|
|
@@ -162,7 +165,6 @@ function getList() {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-
|
|
|
function detail(row) {
|
|
|
sessionStorage.setItem('Processing_detail', JSON.stringify(row));
|
|
|
route.push({
|
|
@@ -172,6 +174,11 @@ function detail(row) {
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
+function currentChange(page) {
|
|
|
+ page_data.value.page = page;
|
|
|
+ getList();
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style>
|