|
|
@@ -1,4 +1,5 @@
|
|
|
<template>
|
|
|
+<view class="app-content">
|
|
|
<view class="affirm-page">
|
|
|
<view class="affirm-view overscroll">
|
|
|
<form>
|
|
|
@@ -55,6 +56,7 @@
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
+</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
@@ -242,6 +244,7 @@ export default {
|
|
|
|
|
|
.affirm-view {
|
|
|
flex: 1;
|
|
|
+ margin-bottom:90upx;
|
|
|
padding: 20upx;
|
|
|
background-color: #f0f2f6;
|
|
|
|
|
|
@@ -372,7 +375,16 @@ export default {
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
padding: 0 20upx;
|
|
|
- width: 100%;
|
|
|
+ position: fixed;
|
|
|
+ bottom:0;
|
|
|
+ /* 手机mobile屏幕小于1000px */
|
|
|
+ @media screen and (max-width: 1100px) {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ /* 收银台cashier屏幕大于1000px */
|
|
|
+ @media screen and (min-width:1100px) {
|
|
|
+ width: 40%;
|
|
|
+ }
|
|
|
height: 100upx;
|
|
|
background-color: #fff;
|
|
|
|