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