From fc02c21485d77aff80e3b00c1646e9a89f78641b Mon Sep 17 00:00:00 2001
From: xiebin <123456>
Date: Mon, 25 Jul 2022 08:56:01 +0800
Subject: [PATCH] 修改搜索布局
---
src/views/farmplant/inventorylist.vue | 36 +++++++++++++++++++-----------------
src/views/farmplant/salelist.vue | 6 ++++--
src/views/farmplant/retrievallist.vue | 8 +++++---
3 files changed, 28 insertions(+), 22 deletions(-)
diff --git a/src/views/farmplant/inventorylist.vue b/src/views/farmplant/inventorylist.vue
index 90922ef..03d6684 100644
--- a/src/views/farmplant/inventorylist.vue
+++ b/src/views/farmplant/inventorylist.vue
@@ -1,19 +1,21 @@
<template>
- <avue-crud :option="option"
- :table-loading="loading"
- :data="data"
- ref="crud"
- v-model="form"
- :permission="permissionList"
- :before-open="beforeOpen"
- :page.sync="page"
- @search-change="searchChange"
- @search-reset="searchReset"
- @current-change="currentChange"
- @size-change="sizeChange"
- @refresh-change="refreshChange"
- @on-load="onLoad">
- </avue-crud>
+ <basic-container>
+ <avue-crud :option="option"
+ :table-loading="loading"
+ :data="data"
+ ref="crud"
+ v-model="form"
+ :permission="permissionList"
+ :before-open="beforeOpen"
+ :page.sync="page"
+ @search-change="searchChange"
+ @search-reset="searchReset"
+ @current-change="currentChange"
+ @size-change="sizeChange"
+ @refresh-change="refreshChange"
+ @on-load="onLoad">
+ </avue-crud>
+ </basic-container>
</template>
<script>
@@ -86,7 +88,7 @@
label:"损耗时间",
prop:"lossTime",
},
- ],
+ ],
},
data:[],
};
@@ -128,4 +130,4 @@
<style>
-</style>
\ No newline at end of file
+</style>
diff --git a/src/views/farmplant/retrievallist.vue b/src/views/farmplant/retrievallist.vue
index 0aa7eac..aad175b 100644
--- a/src/views/farmplant/retrievallist.vue
+++ b/src/views/farmplant/retrievallist.vue
@@ -1,5 +1,6 @@
<template>
-<avue-crud :option="option"
+ <basic-container>
+ <avue-crud :option="option"
:table-loading="loading"
:data="data"
ref="crud"
@@ -14,6 +15,7 @@
@refresh-change="refreshChange"
@on-load="onLoad">
</avue-crud>
+ </basic-container>
</template>
<script>
@@ -86,7 +88,7 @@
label:"出库时间",
prop:"createTime",
},
- ],
+ ],
},
data:[],
};
@@ -127,4 +129,4 @@
<style>
-</style>
\ No newline at end of file
+</style>
diff --git a/src/views/farmplant/salelist.vue b/src/views/farmplant/salelist.vue
index acacd1c..f0f558b 100644
--- a/src/views/farmplant/salelist.vue
+++ b/src/views/farmplant/salelist.vue
@@ -1,4 +1,5 @@
<template>
+ <basic-container>
<avue-crud :option="option"
:table-loading="loading"
:data="data"
@@ -14,6 +15,7 @@
@refresh-change="refreshChange"
@on-load="onLoad">
</avue-crud>
+ </basic-container>
</template>
<script>
@@ -90,7 +92,7 @@
label:"销售时间",
prop:"saleTime",
},
- ],
+ ],
},
data:[],
};
@@ -132,4 +134,4 @@
<style>
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.9.3