<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>
|