Browse Source

1月27日

yq1 1 year ago
parent
commit
db751ce91b
1 changed files with 9 additions and 5 deletions
  1. 9 5
      src/pages/patientCenter/allCheck/index.vue

+ 9 - 5
src/pages/patientCenter/allCheck/index.vue View File

57
         </van-tab>
57
         </van-tab>
58
       </van-tabs>
58
       </van-tabs>
59
       <div class="fixedBox3" ref="butt">
59
       <div class="fixedBox3" ref="butt">
60
-        <div @mousedown="down" @touchstart="down" @mousemove="move" 
60
+        <div  @mousedown="down" @touchstart="down" @mousemove="move" 
61
         @touchmove="move" @mouseup="end" @touchend="end" @touchcancel="end">
61
         @touchmove="move" @mouseup="end" @touchend="end" @touchcancel="end">
62
-          <el-button type="primary">上一张</el-button>
62
+          <el-button type="primary" >上一张</el-button>
63
         </div>
63
         </div>
64
       </div>
64
       </div>
65
-      <div class="fixedBox4" ref="butt2">
66
-        <div @mousedown="down2" @touchstart="down2" @mousemove="move2" 
65
+      <div class="fixedBox4"  ref="butt2">
66
+        <div  @mousedown="down2" @touchstart="down2" @mousemove="move2" 
67
         @touchmove="move2" @mouseup="end2" @touchend="end2" @touchcancel="end2">
67
         @touchmove="move2" @mouseup="end2" @touchend="end2" @touchcancel="end2">
68
           <el-button type="primary">下一张</el-button>
68
           <el-button type="primary">下一张</el-button>
69
         </div>
69
         </div>
462
 }
462
 }
463
 .fixedBox3{
463
 .fixedBox3{
464
   position: fixed;
464
   position: fixed;
465
-  bottom: 1.2rem;
465
+  bottom: 4.2rem;
466
   right: 0.2rem;
466
   right: 0.2rem;
467
   z-index: 5;
467
   z-index: 5;
468
+  width: 100px;
469
+  height: 50px;
468
 }
470
 }
469
 .fixedBox4{
471
 .fixedBox4{
470
   position: fixed;
472
   position: fixed;
471
   bottom: 0.625rem;
473
   bottom: 0.625rem;
472
   right: 0.2rem;
474
   right: 0.2rem;
473
   z-index: 5;
475
   z-index: 5;
476
+  width: 100px;
477
+  height: 50px;
474
 }
478
 }
475
 </style>
479
 </style>
476
 
480