Parcourir la source

fix: 调试iphonex按钮上移问题

carver il y a 2 ans
Parent
commit
08c5db410d

+ 1 - 1
antbuilder/industry/hospitalV2/components/follow-up-notice/index.acss

@@ -34,7 +34,7 @@
 }
 .hospital-new-component .follow-up-notice .fixed-footer {
   position: fixed;
-  bottom: 0;
+  bottom: 1rpx;
   left: 0;
   right: 0;
   padding: 16px 24rpx 40rpx 24rpx;

+ 1 - 1
antbuilder/industry/hospitalV2/components/hospital-project/index.acss

@@ -161,7 +161,7 @@
 .project-container .project-button {
   position: fixed;
   right: 0;
-  bottom: 0;
+  bottom: 1rpx;
   left: 0;
   box-sizing: border-box;
   height: 180rpx;

+ 10 - 10
antbuilder/industry/hospitalV2/components/hospital-project/index.axml

@@ -81,18 +81,18 @@
           </block>
         </view>
       </view>
-      <!-- 预约按钮 -->
-      <view class="project-button">
-        <view class="project-button-out">
-          <view class="title-out">
-            <view class="title">费用</view>
-            <view class="money">¥ {{ projectItem.nucleicItemFee ? projectItem.nucleicItemFee : '0.00'}}</view>
-          </view>
-          <button disabled="{{disabled}}" loading="{{ loading }}" class="button" size="default" type="primary" formType="submit">{{onlinePay ? '预约并支付' : '立即预约'}}</button>
-        </view>
-      </view>
     </form>
   </view>
+  <!-- 预约按钮 -->
+  <view class="project-button">
+    <view class="project-button-out">
+      <view class="title-out">
+        <view class="title">费用</view>
+        <view class="money">¥ {{ projectItem.nucleicItemFee ? projectItem.nucleicItemFee : '0.00'}}</view>
+      </view>
+      <button disabled="{{disabled}}" loading="{{ loading }}" class="button" size="default" type="primary" formType="submit">{{onlinePay ? '预约并支付' : '立即预约'}}</button>
+    </view>
+  </view>
   <!-- 选择就诊人 -->
   <select-person personIndex="{{personIndex}}" show="{{showPerson}}" onClose="onClosePerson" onChange="onPersonChange" defaultList="{{personList}}" />
 </view>