空托出入库

This commit is contained in:
2024-03-11 13:43:45 +08:00
parent 33c59564c4
commit 9bb3f00b91
24 changed files with 2771 additions and 233 deletions

View File

@@ -67,10 +67,10 @@ uni-button:after {
color: #fff;
}
.icon_scan {
width: 42rpx;
height: 48rpx;
font-size: 40rpx;
line-height: 48rpx;
width: 60rpx;
height: 80rpx;
font-size: 48rpx;
line-height: 80rpx;
color: #323232;
text-align: center;
}
@@ -149,39 +149,49 @@ uni-button:after {
height: auto;
background-color: #fff;
border-radius: 24rpx;
padding: 22rpx 14rpx;
padding: 22rpx;
margin-bottom: 20rpx;
box-shadow: 0 4rpx 10rpx 2rpx rgba(0,0,0,.1);
}
.filter_item {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 10rpx;
}
.filter_item:last-child {
margin-bottom: 0;
}
.filter_label_wraper {
flex: none;
width: 140rpx;
text-align:justify;
text-align-last: justify;
text-justify: inter-ideograph;/*兼容ie*/
}
.filter_label {
display: block;
width: 140rpx;
line-height: 80rpx;
font-size: 28rpx;
color: #323232;
font-weight: bold;
text-align:justify;
letter-spacing: 4rpx;
/* text-align:justify;
text-align-last: justify;
text-justify: inter-ideograph;/*兼容ie*/
text-justify: inter-ideograph; */
}
.filter_label_1 {
line-height: 30rpx;
/** 筛选选择器样式 */
.filter_picker .uni-input {
width: 100%;
line-height: 80rpx;
height: 80rpx;
font-size: 28rpx;
color: #606266;
}
/** 筛选下拉框带搜索过滤功能样式 */
.filter_select .uni-select {
line-height: 80rpx !important;
height: 80rpx !important;
font-size: 28rpx !important;
color: #606266;
padding: 0 !important;
border: 0 !important;
}
.filter_input {
width: 100%;
height: 80rpx;
line-height: 80rpx;
border: 0;
background-color: transparent;
font-size: 28rpx;
color: #606266;
}
.filter_input_disabled {
background-color: #eee;
}
.filter_search {
width: 100rpx;
@@ -210,29 +220,6 @@ uni-button:after {
justify-content: flex-start;
align-items: center;
}
.filter_input_wraper_1 {
height: 30rpx;
}
.filter_input_wraper_inn_text {
line-height: 30rpx;
font-size: 28rpx;
color: #606266;
}
.filter_input {
width: 100%;
height: 70rpx;
line-height: 70rpx;
border: 1px solid #dcdfe6;
background-color: #fff;
padding: 0 15rpx;
font-size: 28rpx;
color: #606266;
border-radius: 10rpx;
}
.filter_input_disabled {
background-color: #eee;
}
.grid-wraper {
width: 100%;
}
@@ -289,23 +276,6 @@ uni-button:after {
/** 提交栏 **/
.submit-bar {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 200;
background-color: #fff;
padding-top: 20rpx;
box-shadow: 0 0 20rpx 0 rgba(160,160,160,0.7);
}
.submit-bar_new {
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
bottom: 0;
left: 0;
@@ -315,29 +285,33 @@ uni-button:after {
padding: 14rpx;
box-shadow: 0 0 20rpx 0 rgba(160,160,160,0.7);
}
.submit-button {
.button-default {
font-size: 34rpx;
line-height: 88rpx;
color: #ff6a00;
text-align: center;
letter-spacing: 1rpx;
padding: 0 22rpx;
letter-spacing: 4rpx;
padding: 0;
background-color: #fff;
border: 1px solid #ff6a00;
margin: 0 40rpx 20rpx 0;
border: 2rpx solid #ff6a00;
border-radius: 10rpx;
}
.submit-button_new {
/* width: 35%; */
.button-primary {
font-size: 34rpx;
line-height: 88rpx;
color: #fff;
text-align: center;
letter-spacing: 1rpx;
letter-spacing: 4rpx;
padding: 0;
background-color: #ff6a00;
border: 2rpx solid #ff6a00;
border-radius: 10rpx;
}
.button-info, .submit-button[disabled] {
background-color: #c9c9c9;
border: 2rpx solid #c9c9c9;
color: #fff;
}
.submit-more {
width: 20%;
font-size: 34rpx;
@@ -347,11 +321,6 @@ uni-button:after {
text-align: center;
background-color: #fff
}
.btn-disabled, .submit-button[disabled] {
background-color: #c9c9c9 !important;
border: 1px solid #c9c9c9 !important;
color: #fff !important;
}
.more_btns_wraper {
position: fixed;
bottom: 0;

View File

@@ -52,6 +52,7 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
}
.zd-row {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
@@ -128,6 +129,9 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
.zd-col-1 {
width: 4.16667%
}
.border-bottom {
border-bottom: 1rpx solid #e5e5e5;
}
.mgb10 {
margin-bottom: 10rpx;
}