li-guang
2020-12-25 3cb1b4fb5546ece252e29273b14975045ff4dbdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<template>
    <!-- 提示 -->
    <view>
        <view class="content-row flex align-center">
            <text class="font-20">1</text>
            <text class="font-14 ml-10">营业收入为所有订单的应收金额之和,包含储蓄卡充 值金额,包含欠款。</text>
        </view>
        <view class="content-row flex align-center">
            <text class="font-20">2</text>
            <text class="font-14 ml-10">现金收入为所有订单中使用现金或相等现金的支付方 式支付的订单应付金额之和,包含欠款。</text>
        </view>
    </view>
</template>
 
<script>
</script>
 
<style>
    page{
        background: #F6F6F8;
    }
    .content-row{
        background: #FFFFFF;
        border: 1px solid #EDEAF4;
        border-radius: 4px;
        box-shadow:0 6px 6px rgba(237,234,244,0.5);
        padding: 10px;
        margin: 10px 10px 0;
    }
</style>