<template>
|
<!-- 提示 -->
|
<view>
|
<no-record isShow="true" txt="暂无提示"></no-record>
|
<template v-if="type==1">
|
<!-- <view class="content-row">
|
<text class="title">1、营业收入</text>
|
<text class="gray">营业收入为所有订单的应收金额之和,包含储蓄卡充 值金额,包含欠款。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">2、现金收入</text>
|
<text class="gray">所有订单中使用现金或者等同于现金的支付方式支付的订单应付金额之和。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">3、现金售卡</text>
|
<text class="gray">所有订单中使用现金或者等同于现金的支付方式购买的项目、卡项、充值卡的应付金额之和。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">4、现金产品</text>
|
<text class="gray">所有订单中使用现金或者等同于现金的支付方式购买的产品的应付金额之和。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">5、余额划扣</text>
|
<text class="gray">客户使用充值卡支付订单的应收金额。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">6、欠款金额</text>
|
<text class="gray">客户订单中欠款部分的金额。</text>
|
</view> -->
|
</template>
|
<template v-else>
|
<!-- <view class="content-row">
|
<text class="title">1、订单业绩</text>
|
<text class="gray">订单业绩=创建订单时分配的业绩金额。</text>
|
</view> -->
|
<!-- <view class="content-row">
|
<text class="title">2、现金业绩</text>
|
<text class="gray">订单业绩中客户使用现金或者等同于现金的支付方式支付的明细所对应的业绩。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">3、售卡业绩</text>
|
<text class="gray">订单业绩中客户使用现金或者等同于现金的支付方式支付的项目、卡项、充值卡的业绩。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">4、产品业绩</text>
|
<text class="gray">订单业绩中客户使用现金或者等同于现金的支付方式支付的产品的业绩。</text>
|
</view>
|
<view class="content-row">
|
<text class="title">5、划扣业绩</text>
|
<text class="gray">订单业绩中客户使用充值卡支付方式所支付的明细所对应的业绩。</text>
|
</view> -->
|
</template>
|
</view>
|
</template>
|
|
<script>
|
export default{
|
data(){
|
return {
|
type: 1
|
}
|
},
|
onLoad(options) {
|
if(options.type){
|
this.type = options.type
|
}
|
}
|
}
|
</script>
|
|
<style>
|
page{
|
background: #F6F6F8;
|
padding-top: 10px;
|
}
|
.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: 0 10px 10px;
|
font-size: 13px;
|
}
|
.title{
|
display: block;
|
font-size: 15px;
|
margin-bottom: 5px;
|
}
|
</style>
|