123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view class="box">
- <view class="card">
- <view class="card-left">
- <view class="image-box">
- <image :src="`${$imgUrl}InvoiceMannager/icon2.png`" mode=""></image>
- </view>
- <text>开票申请</text>
- </view>
- <u-icon name="arrow-right" color="#B2B2B2" size="30" @click="toPage(1)"></u-icon>
- </view>
- <view class="card">
- <view class="card-left">
- <view class="image-box">
- <image :src="`${$imgUrl}InvoiceMannager/icon1.png`" mode=""></image>
- </view>
- <text>开票记录</text>
- </view>
- <u-icon name="arrow-right" color="#B2B2B2" size="30" @click="toPage(2)"></u-icon>
- </view>
- </view>
-
- </template>
-
- <script setup lang="ts">
- import {
- reactive
- } from "vue";
- import {
- msg,
- navTo
- } from '@/utils/utils';
-
- const toPage = (type) => {
- if (type == 1) {
- navTo('/invoice/invoiceApply/invoiceList')
- } else {
- navTo('/invoice/invoicing-record')
- }
-
- }
- </script>
-
-
- <style>
- page {
- width: 100%;
- height: 100%;
- }
- </style>
-
- <style lang="scss" scoped>
- .box {
- height: 100%;
- // width: 100%;
- padding: 30rpx;
- border-top: 1rpx solid #EEF7F7;
- background: #EEF7F7;
-
- .card {
- margin-bottom: 30rpx;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
- border-radius: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx;
-
- .card-left {
- display: flex;
- align-items: center;
-
- .image-box {
- width: 60rpx;
- height: 60rpx;
- background: #00B38B;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
-
- image {
- width: 40rpx;
- height: 40rpx;
- }
- }
-
- text {
- font-size: 32rpx;
- font-family: Noto Sans S Chinese;
- font-weight: 400;
- color: #333333;
- margin-left: 30rpx;
- }
- }
- }
- }
- </style>
|