修改部分bug
parent
460d4b26d6
commit
09319be94f
@ -1,7 +1,7 @@
|
|||||||
export default {
|
export default {
|
||||||
// baseUrl :process.env.NODE_ENV === 'development' ? "https://wechat.myshipping.net:8860": "http://djy-identity.myshipping.net",
|
// baseUrl :process.env.NODE_ENV === 'development' ? "https://wechat.myshipping.net:8860": "http://djy-identity.myshipping.net",
|
||||||
baseUrl :process.env.NODE_ENV === 'development' ? "https://wechat.myshipping.net:8860": "https://wechat.myshipping.net:8860",
|
baseUrl :process.env.NODE_ENV === 'development' ? "https://wechat.myshipping.net:8860": "https://wechat.myshipping.net:8860",
|
||||||
moduleUrlType: 'formal', // test 测试版 formal 正式版
|
moduleUrlType: 'test', // test 测试版 formal 正式版
|
||||||
// dataType: "json",
|
// dataType: "json",
|
||||||
// responseType: "text",
|
// responseType: "text",
|
||||||
}
|
}
|
@ -0,0 +1,300 @@
|
|||||||
|
.content{
|
||||||
|
height: 100vh;
|
||||||
|
background: #f6f6f6;
|
||||||
|
// padding-bottom:120rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
overflow:hidden;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.swiper{
|
||||||
|
height: 100%;
|
||||||
|
flex: 1;
|
||||||
|
.swiper-item {
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
padding: 20rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.detail-tit{
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight:600;
|
||||||
|
color: #333;
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
color: #2c96fb ;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
.iconfont{
|
||||||
|
margin-right: 20rpx;
|
||||||
|
font-size: 38rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.detail-from{
|
||||||
|
height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #fff;
|
||||||
|
padding: 30rpx;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
box-shadow: 0 0 10rpx #eee;
|
||||||
|
overflow-y: auto;
|
||||||
|
.from-list{
|
||||||
|
.line{
|
||||||
|
min-height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
margin-bottom: 28rpx;
|
||||||
|
.left{
|
||||||
|
width:165rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color:#333;
|
||||||
|
.iconfont{
|
||||||
|
margin-right: 8rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
flex: 1;
|
||||||
|
min-height: 70rpx;
|
||||||
|
background: #eee;
|
||||||
|
border-radius: 14rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
input{
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right-input{
|
||||||
|
padding: 30rpx;
|
||||||
|
display: block;
|
||||||
|
flex: 1;
|
||||||
|
height: 70rpx;
|
||||||
|
background: #eee;
|
||||||
|
border-radius: 14rpx;
|
||||||
|
padding: 20rpx 30rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: 40rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mt-20{
|
||||||
|
margin-top: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line-more{
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
margin-bottom: 28rpx;
|
||||||
|
.part{
|
||||||
|
display: flex;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
.left{
|
||||||
|
margin-right: 30rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color:#333;
|
||||||
|
.iconfont{
|
||||||
|
margin-right: 8rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
flex: 1;
|
||||||
|
height: 70rpx;
|
||||||
|
background: #eee;
|
||||||
|
border-radius: 14rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
input{
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mb-20{
|
||||||
|
margin-bottom: 40rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.from-tip{
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: 32rpx;
|
||||||
|
color: #999;
|
||||||
|
display: flex;
|
||||||
|
background: #fef6eb;
|
||||||
|
color: #f9a629;
|
||||||
|
margin-top:40rpx;
|
||||||
|
padding: 20rpx;
|
||||||
|
.left{
|
||||||
|
width: 80rpx;
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.detail-list{
|
||||||
|
height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #fff;
|
||||||
|
padding: 30rpx;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
box-shadow: 0 0 10rpx #eee;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
.goods-list{
|
||||||
|
flex: 1;
|
||||||
|
overflow: auto;
|
||||||
|
|
||||||
|
.goods{
|
||||||
|
padding: 20rpx 20rpx 20rpx 0;
|
||||||
|
margin-left: 116rpx;
|
||||||
|
position: relative;
|
||||||
|
border-bottom: 1rpx dashed #eee;
|
||||||
|
position: relative;
|
||||||
|
.icon{
|
||||||
|
position:absolute;
|
||||||
|
font-size: 24rpx;
|
||||||
|
top: 18px;
|
||||||
|
left: -84rpx;
|
||||||
|
color: #2c96fb;
|
||||||
|
}
|
||||||
|
&::before{
|
||||||
|
content:'';
|
||||||
|
position: absolute;
|
||||||
|
width: 3rpx;
|
||||||
|
height: calc(100%-3rpx);
|
||||||
|
height: 100%;
|
||||||
|
background:#eee;
|
||||||
|
top: 54rpx;left: -33rpx;
|
||||||
|
}
|
||||||
|
&:nth-last-child(1){
|
||||||
|
&::before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.circle{
|
||||||
|
position: absolute;
|
||||||
|
top: 44rpx;
|
||||||
|
left: -37rpx;
|
||||||
|
width: 10rpx;
|
||||||
|
height: 10rpx;
|
||||||
|
background-color: #2c96fb;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
.goods-line{
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
display: flex;
|
||||||
|
.left{
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
.right-input{
|
||||||
|
height: 50rpx;
|
||||||
|
flex: 1;
|
||||||
|
background: #eee;
|
||||||
|
margin-top: 8rpx;
|
||||||
|
padding: 0 18rpx;
|
||||||
|
line-height: 80rpx;
|
||||||
|
font-size: 22rpx;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.btns{
|
||||||
|
height: 80rpx;
|
||||||
|
text-align: right;
|
||||||
|
.iconfont{
|
||||||
|
font-size: 40rpx;
|
||||||
|
line-height: 80rpx;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
.icon-cuowu{
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
.icon-dui{
|
||||||
|
color: #ff8213;
|
||||||
|
margin-top: 2rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.goods-btn{
|
||||||
|
height: 78rpx;
|
||||||
|
// border-top: 1rpx solid #eee;
|
||||||
|
text-align: right;
|
||||||
|
padding-top: 20rpx;
|
||||||
|
button{
|
||||||
|
height: 64rpx;
|
||||||
|
line-height: 64rpx;
|
||||||
|
border-radius: 70rpx;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
font-size: 26rpx;
|
||||||
|
padding: 0 40rpx;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.add{
|
||||||
|
background: #2c96fb;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.copy{
|
||||||
|
border: 1rpx solid #2c96fb;
|
||||||
|
background: #fff;
|
||||||
|
color: #2c96fb;
|
||||||
|
}
|
||||||
|
.remove{
|
||||||
|
border: 1rpx solid #999;
|
||||||
|
background: #fff;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.detail-bottom{
|
||||||
|
background: #fff;
|
||||||
|
line-height: 50px;
|
||||||
|
border-top: 1rpx solid #eee;
|
||||||
|
display: flex;
|
||||||
|
.btn{
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
&::before{
|
||||||
|
content: '';
|
||||||
|
width: 2rpx;
|
||||||
|
height: 44rpx;
|
||||||
|
background: #eee;
|
||||||
|
position: absolute;
|
||||||
|
top: 25rpx;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
&:nth-last-child(1){
|
||||||
|
&::before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
text{
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.iconfont{
|
||||||
|
margin-right: 18rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
&.send{
|
||||||
|
color: #2c96fb;
|
||||||
|
}
|
||||||
|
&.copy{
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
&.save{
|
||||||
|
color: #ff8213;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue