diff --git a/src/views/inventory/goods.vue b/src/views/inventory/goods.vue
index 38cbbb7..a46d763 100644
--- a/src/views/inventory/goods.vue
+++ b/src/views/inventory/goods.vue
@@ -12,12 +12,15 @@
@input="searchGoods"
>
-
+
+
+
-
+
-
+
%
@@ -47,21 +51,32 @@
-
+
%
-
-
-
-
+
+
+
+
+
+
+
+
+
+ 重置
+
+
+
+
+
+ 搜索
+
@@ -72,7 +87,8 @@
-
+
{{ scope.row.name }}{{ scope.row.commonName ? "(" + scope.row.commonName + ")" : "" }}
@@ -181,7 +197,7 @@
-
+
@@ -204,7 +220,8 @@ import Edit from "@/components/inventory/goods/Edit.vue";
import InventoryBatchDetail from "@/components/inventory/goods/InventoryBatchDetail.vue";
import InventoryStatistics from "@/components/inventory/goods/InventoryStatistics.vue";
import CloseBtn from "@/components/CloseBtn.vue";
-import {Search, SemiSelect} from "@element-plus/icons-vue";
+import {Search, SemiSelect, Refresh} from "@element-plus/icons-vue";
+
const statisticsData = ref({})
const inventoryNumber = ref(false)
const status = ref(false)
@@ -431,7 +448,7 @@ const getStatisticsData = () => {
flex-direction: column;
.top {
- height: 157px;
+ height: 144px;
padding: 24px 24px 0;
background: #fff;
display: flex;
@@ -468,6 +485,11 @@ const getStatisticsData = () => {
color: #4D6DE4;
text-align: center;
line-height: 42px;
+ &:hover {
+ background: #4D6DE4;
+ color: #fff;
+ border: none;
+ }
}
}
}
@@ -499,10 +521,34 @@ const getStatisticsData = () => {
.tags {
margin-left: 5px;
}
-:deep(.el-cascader .el-input){
+
+:deep(.el-cascader .el-input) {
height: 42px;
}
-:deep(.el-select__wrapper){
+
+:deep(.el-select__wrapper) {
height: 42px;
}
+
+.btn-group {
+ display: flex;
+
+ .btn {
+ width: 120px;
+ height: 42px;
+ background: #FFFFFF;
+ border-radius: 6px;
+ border: 1px solid #979797;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-left: 24px;
+ cursor: pointer;
+ &:hover {
+ background: #4D6DE4;
+ color: #fff;
+ border: none;
+ }
+ }
+}
\ No newline at end of file