1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <view class="page" :style="{'min-height':(h-th)+'px','padding-top':mt+'px'}">
- <c-nav-bar title="核销"></c-nav-bar>
- <view class="content">
- <view class="content-one">
- <view class="image">
- <image src="https://i.ringzle.com/file/20240224/f7c81755b4f74f47b80c53ba4e6b051a.png" mode="">
- </image>
- </view>
- <view class="text">
- 扫一扫核销
- </view>
- </view>
- <view class="content-two">
- <view class="image">
- <image src="https://i.ringzle.com/file/20240224/49af25724572427fadff57f73a29d15b.png" mode="">
- </image>
- </view>
- <view class="text">
- 手工核销
- </view>
- </view>
- </view>
- <Tabbares :tabbarid="1"></Tabbares>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- h: uni.getSystemInfoSync().windowHeight - 87,
- mt: uni.getSystemInfoSync().statusBarHeight + 44,
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="less">
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box
- }
- .page {
- height: 100%;
- background-color: #FFFFFF;
- .content {
- // height: 100%;
- // line-height: 100%;
- // padding: 40rpx auto;
- margin: 34% 64rpx;
- display: flex;
- flex-wrap: wrap;
- .content-one,
- .content-two {
- box-sizing: border-box;
- width: 100%;
- height: 224rpx;
- background-color: #F0F8F6;
- padding: 40rpx 0;
- margin-top: 60rpx;
- border-radius: 24rpx;
- .image {
- width: 88rpx;
- height: 88rpx;
- margin: auto;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .text {
- margin-top: 24rpx;
- text-align: center;
- font-size: 32rpx;
- color: #111111;
- font-weight: Regular;
- }
- }
- }
- }
- </style>
|