You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.2 KiB
116 lines
2.2 KiB
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
},
|
|
onShow: function() {
|
|
|
|
},
|
|
onHide: function() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import "@/uni_modules/uview-ui/index.scss";
|
|
@import "common/demo.scss";
|
|
// .u-steps-item__wrapper__circle{
|
|
// background-color: #fff !important;
|
|
// }
|
|
|
|
.view-step{
|
|
margin-top: 25px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
h1{
|
|
flex:1;
|
|
height: 1px;
|
|
background: #9E9E9E;
|
|
margin-top: 10px;
|
|
}
|
|
view{
|
|
width: 30px;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
.step-img{
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
p{
|
|
font-size: 13px;
|
|
color: #9E9E9E;
|
|
}
|
|
|
|
}
|
|
}
|
|
.u-upload__button{
|
|
width: 90px !important;
|
|
height: 90px !important;
|
|
border-radius: 10px !important;
|
|
border: 1px dashed #CACACA;
|
|
}
|
|
// 登录
|
|
.form-li-input .uni-input-input{
|
|
text-align: right !important;
|
|
font-size: 18px !important;
|
|
}
|
|
.form-li-input .uni-input-placeholder{
|
|
text-align: right !important;
|
|
}
|
|
// 登记
|
|
.view-modal .u-modal__button-group__wrapper{
|
|
display: none !important;
|
|
}
|
|
// 新增患者
|
|
.view-form-item .u-form-item__body{
|
|
padding: 0 !important;
|
|
border-bottom: 1px solid #E2E2E2;
|
|
}
|
|
.view-form-item .form-item-input{
|
|
border: none;
|
|
height: 40px
|
|
}
|
|
.view-form-item .form-item-input_name .uni-input-input{
|
|
color: #c8c9cc;
|
|
}
|
|
.view-form-item .uni-input-input ,.view-form-item .uni-input-placeholder,
|
|
.view-form-item .u-form-item__body__right__message{
|
|
text-align: right;
|
|
}
|
|
.view-form-item .u-form-item__body__right__message{
|
|
width: 100%;
|
|
margin-top: 6px;
|
|
margin-left: 0 !important;
|
|
}
|
|
.view-form-item .u-form-item__body__right__content__slot{
|
|
justify-content: flex-end;
|
|
}
|
|
// .u-radio__icon-wrap--circle{
|
|
// background-color:#ff981f !important;
|
|
// border-color: #ff981f !important;
|
|
// }
|
|
|
|
.u-text{
|
|
max-height: 28px;
|
|
}
|
|
.u-steps-item__wrapper{
|
|
background-color: rgba(0, 0, 0, 0) !important;
|
|
}
|
|
|
|
.u-steps--row{
|
|
max-height: 45px;
|
|
overflow: hidden;
|
|
}
|
|
.container .modal-li-radio .u-icon__icon{
|
|
color: #fff !important;
|
|
}
|
|
// .u-radio__icon-wrap--circle{
|
|
// background-color: rgba(0, 0, 0, 0) !important;
|
|
// }
|
|
|
|
// .view-modal .u-icon__icon{
|
|
// color: #ff981f !important;
|
|
// }
|
|
</style>
|
|
|