diff --git a/src/components/common/Header.vue b/src/components/common/Header.vue
index 28b69ed..942ae73 100644
--- a/src/components/common/Header.vue
+++ b/src/components/common/Header.vue
@@ -11,8 +11,8 @@
-
@@ -145,26 +145,45 @@ header {
background-color: base.$background-color-main;
padding: 15px 0;
}
+
+.btn {
+ color: #FFF;
+ font-size: 18px;
+ float: right;
+ margin-right: 24px;
+ margin-top: 10px;
+}
diff --git a/src/components/inventory/GoodsSearch.vue b/src/components/inventory/GoodsSearch.vue
index 9397240..5488449 100644
--- a/src/components/inventory/GoodsSearch.vue
+++ b/src/components/inventory/GoodsSearch.vue
@@ -86,7 +86,6 @@ const handleSelect = (item: any) => {
.search_box {
//background-color: rgb(148.6, 212.3, 117.1);
background-color: #fff;
- padding: 10px;
border-radius: 10px;
box-sizing: border-box;
margin-top: 10px;
diff --git a/src/components/inventory/check/Add.vue b/src/components/inventory/check/Add.vue
index 7933aac..a55fc4a 100644
--- a/src/components/inventory/check/Add.vue
+++ b/src/components/inventory/check/Add.vue
@@ -1,17 +1,19 @@
-
-
-
+
+
+
+
+
+
-
+
@@ -121,8 +123,10 @@
@@ -134,17 +138,32 @@
display: flex;
min-height: 0;
flex-direction: column;
+ margin-top: 24px;
.top {
position: relative;
width: 100%;
- height: 60px;
}
.content {
display: block;
width: 100%;
flex: 1;
+
+ .add_goods {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ font-weight: 800;
+ font-size: 18px;
+ color: #333333;
+ font-style: normal;
+
+ .search {
+ width: 50%;
+ }
+ }
+
//min-height: 0;
table {
@@ -267,10 +286,20 @@
}
.bottom {
+ height: 86px;
+ width: 100%;
margin-top: 10px;
position: absolute;
right: 10px;
- bottom: 10px;
+ bottom: 0;
+ border-top: 1px solid #EAEAEC;
+ .btn{
+ width: 100%;
+ height: 100%;
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+ }
}