|
@@ -9,14 +9,14 @@
|
|
|
name: 'App',
|
|
|
data() {
|
|
|
return {
|
|
|
- doctorInfo:{}
|
|
|
+ doctorInfo: {}
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
goPage(path) {
|
|
|
this.$router.push(path)
|
|
|
},
|
|
|
- getData(){
|
|
|
+ getData() {
|
|
|
// this.$api.getAccountInfo().then(res=>{
|
|
|
// if(!res.data.code){
|
|
|
// if(res.data.data.role=="1"){
|
|
@@ -29,7 +29,7 @@
|
|
|
// })
|
|
|
}
|
|
|
},
|
|
|
- created(){
|
|
|
+ created() {
|
|
|
this.getData()
|
|
|
}
|
|
|
}
|
|
@@ -77,6 +77,7 @@
|
|
|
width: 84%;
|
|
|
margin: auto;
|
|
|
margin-top: 6rem;
|
|
|
+
|
|
|
.mint-field {
|
|
|
border: 1px solid #ccc;
|
|
|
border-radius: 50px;
|
|
@@ -125,51 +126,74 @@
|
|
|
background-size: 100% 100%;
|
|
|
}
|
|
|
|
|
|
- .pickerConfirm{
|
|
|
- width:100%;
|
|
|
+ .pickerConfirm {
|
|
|
+ width: 100%;
|
|
|
height: 40px;
|
|
|
line-height: 40px;
|
|
|
- color:#26a2ff;
|
|
|
+ color: #26a2ff;
|
|
|
}
|
|
|
|
|
|
- .sexPicker{
|
|
|
+ .sexPicker {
|
|
|
position: fixed;
|
|
|
width: 100%;
|
|
|
z-index: 10;
|
|
|
- bottom:0;
|
|
|
+ bottom: 0;
|
|
|
background: #fff;
|
|
|
}
|
|
|
|
|
|
- .searchInput{
|
|
|
+ .searchInput {
|
|
|
border-radius: 1rem;
|
|
|
}
|
|
|
+
|
|
|
.inputDisable input:disabled {
|
|
|
- background-color: #fff!important;
|
|
|
+ background-color: #fff !important;
|
|
|
color: red;
|
|
|
opacity: 1;
|
|
|
- -webkit-text-fill-color:#000;
|
|
|
- }
|
|
|
- .rowfont{
|
|
|
- font-size:1rem;
|
|
|
- text-align:left;
|
|
|
- padding-left:10px;
|
|
|
- line-height: 2rem;
|
|
|
- height: 2rem;
|
|
|
- }
|
|
|
- .picker-item{
|
|
|
- font-size:14px!important;
|
|
|
- }
|
|
|
+ -webkit-text-fill-color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ input:disabled::-webkit-input-placeholder,
|
|
|
+ input:disabled::-webkit-input-placeholder {
|
|
|
+ /* font-size: 14px;
|
|
|
+ font-family: PingFangSC-Medium, PingFang SC;
|
|
|
+ font-weight: 500; */
|
|
|
+ color: #9f9f9f;
|
|
|
+ -webkit-text-fill-color: #9f9f9f;
|
|
|
+ }
|
|
|
+
|
|
|
+ .inputDisable input:disabled {
|
|
|
+ background-color: #fff !important;
|
|
|
+ color: red;
|
|
|
+ opacity: 1;
|
|
|
+ -webkit-text-fill-color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ .rowfont {
|
|
|
+ font-size: 1rem;
|
|
|
+ text-align: left;
|
|
|
+ padding-left: 10px;
|
|
|
+ line-height: 2rem;
|
|
|
+ height: 2rem;
|
|
|
+ }
|
|
|
+
|
|
|
+ .picker-item {
|
|
|
+ font-size: 14px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mint-msgbox {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mint-msgbox-title {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .mint-msgbox-confirm {
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .v-modal {
|
|
|
+ height: 100vh !important;
|
|
|
+ }
|
|
|
|
|
|
- .mint-msgbox{
|
|
|
- font-size:24px;
|
|
|
- }
|
|
|
- .mint-msgbox-title{
|
|
|
- font-size:24px;
|
|
|
- }
|
|
|
- .mint-msgbox-confirm{
|
|
|
- font-size: 24px;
|
|
|
- }
|
|
|
- .v-modal{
|
|
|
- height: 100vh!important;
|
|
|
- }
|
|
|
</style>
|