1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="page" :style="{'min-height':(h-th)+'px','padding-top':mt+'px'}">
- <c-nav-bar title="扫码核销"></c-nav-bar>
- <view class="list">
- <view class="item" v-for="(i,index) in data" :key="index" @click="check()">
- <text>08A</text>
- <text>核销</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- date: new Date().Format('yyyy-MM-dd'),
- show: false,
- h: uni.getSystemInfoSync().windowHeight - 87,
- mt: uni.getSystemInfoSync().statusBarHeight + 44,
- data: [1, 2, 3, 4, 5, 6, 7],
- }
- },
- onLoad() {},
- methods: {
- check() {
- uni.navigateTo({
- url: '/pagesHouse/Verification/check'
- })
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .page {
- background: #F5F8FA;
- padding-bottom: 40rpx;
- box-sizing: border-box;
- }
- .list {
- box-sizing: border-box;
- padding: 30rpx 30rpx 0;
- .item {
- height: 160rpx;
- display: flex;
- justify-content: space-between;
- padding: 0 24rpx;
- background-color: #fff;
- align-items: center;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.08);
- margin-bottom: 20rpx;
- text {
- &:first-child {
- font-size: 54rpx;
- font-weight: bold;
- color: #111;
- }
- &:last-child {
- display: inline-block;
- width: 168rpx;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- background-color: #007A69;
- color: #fff;
- font-size: 32rpx;
- border-radius: 44rpx;
- }
- }
- }
- }
- </style>
|