mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-08-06 02:47:29 +08:00
- 在 App.vue 中重构站点信息的获取与应用逻辑,提升代码可读性与维护性。 - 更新 Search.vue 组件,优化搜索框的样式与结构,增强用户体验。 - 在 element.scss 中注释掉不再使用的样式,并新增确认收货按钮的样式。 - 改进多个页面的布局与样式,确保响应式设计的一致性与美观性。 - 更新订单相关组件的按钮样式,提升视觉一致性与可用性。
161 lines
2.5 KiB
SCSS
161 lines
2.5 KiB
SCSS
.card {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
}
|
|
|
|
.cardBox {
|
|
display: inline-block;
|
|
border-radius: 2px;
|
|
line-height: 1.5;
|
|
margin-right: 20px;
|
|
width: 300px;
|
|
border: 1px solid #eee;
|
|
padding: 10px;
|
|
}
|
|
|
|
.methodItem {
|
|
width: 100%;
|
|
border: 1px solid #f5f5f5;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
methodItem img {
|
|
width: 220px;
|
|
height: 86px;
|
|
}
|
|
|
|
methodItem h4 {
|
|
font-size: 14px;
|
|
color: #333;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.methodItem img {
|
|
width: 220px;
|
|
height: 86px;
|
|
}
|
|
|
|
.bar {
|
|
-webkit-flex-direction: row;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: justify;
|
|
-webkit-justify-content: space-between;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
-webkit-align-items: center;
|
|
-webkit-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
padding: 10px 8px 0;
|
|
}
|
|
|
|
.send-setting .left-show {
|
|
width: 230px;
|
|
padding: 20px 30px 20px 10px;
|
|
border: 1px solid #eee;
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.send-form {
|
|
flex: 1;
|
|
padding: 10px;
|
|
border: 1px solid #eee;
|
|
margin-left: 24px;
|
|
background-color: #fafafa;
|
|
}
|
|
.send-setting {
|
|
display: flex;
|
|
margin: 20px 0 0 0;
|
|
.sms {
|
|
word-break: break-all;
|
|
display: inline-block;
|
|
background-color: #eee;
|
|
max-width: 220px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 6px;
|
|
}
|
|
}
|
|
.choose-member-item {
|
|
width: 100%;
|
|
|
|
.el-form-item__content {
|
|
margin-left: 0 !important;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.choose-member {
|
|
display: flex;
|
|
width: 100%;
|
|
min-width: 580px;
|
|
height: 400px;
|
|
border: 1px solid #eee;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.source-member {
|
|
flex: 3;
|
|
min-width: 0;
|
|
border-right: 1px solid #eee;
|
|
padding: 10px;
|
|
}
|
|
.btns {
|
|
> span {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
.mobile {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.nickname {
|
|
font-size: 12px;
|
|
color: #999;
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
}
|
|
.traget-member {
|
|
flex: 2;
|
|
min-width: 0;
|
|
padding: 10px;
|
|
}
|
|
.scroll-card {
|
|
margin: 5px 0;
|
|
}
|
|
.ivu-card-body {
|
|
padding: 1px;
|
|
margin-left: 7px;
|
|
}
|
|
.checkbox-tag {
|
|
height: 35px;
|
|
width: 100%;
|
|
}
|
|
.ivu-tag-border.ivu-tag-closable .ivu-icon-ios-close {
|
|
margin-right: 68px !important;
|
|
left: 7px;
|
|
top: 0px;
|
|
}
|
|
|
|
.message-title{
|
|
background-color: #fff5eb;
|
|
border: 1px solid #ffc999;
|
|
box-sizing: border-box;
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 14px;
|
|
padding: 8px 15px;
|
|
border-radius: 2px;
|
|
}
|