wangfukang 1 month ago
parent
commit
1b17a2982b
  1. 73
      src/views/app/data-statistics/data-statistics.vue

73
src/views/app/data-statistics/data-statistics.vue

@ -54,7 +54,7 @@
</Card> </Card>
<Card v-if="tabName !== '3' && tabName !== '4'"> <Card v-if="tabName !== '3' && tabName !== '4'">
<Alert show-icon style="margin-bottom: 16px;"> <Alert show-icon style="margin-bottom: 16px;">
统计口径订单按支付时间退款/售后按成功时间抽奖按开奖时间流水总金额=商品价格+打包费+配送费有效流水总金额=订单商品价格+打包费后扣微信0.6%手续费 统计口径订单按支付时间退款/售后按成功时间抽奖按开奖时间流水总金额=订单totalAmount总金额有效流水总金额=流水总金额-退款总金额-售后总金额微信手续费=有效流水总金额*0.006
</Alert> </Alert>
<div style="border-left: 5px solid rgb(70, 130, 180);height: 20px;line-height: 20px;font-size: 18px;font-weight: 700;margin-bottom: 20px;padding-left: 7px;"> <div style="border-left: 5px solid rgb(70, 130, 180);height: 20px;line-height: 20px;font-size: 18px;font-weight: 700;margin-bottom: 20px;padding-left: 7px;">
订单数据 订单数据
@ -91,7 +91,7 @@
<Tooltip transfer placement="top-start"> <Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" /> <Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;"> <div slot="content" style="max-width: 320px; white-space: normal;">
商品价格+打包费+配送费 订单totalAmount总金额
</div> </div>
</Tooltip> </Tooltip>
</div> </div>
@ -110,7 +110,7 @@
<Tooltip transfer placement="top-start"> <Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" /> <Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;"> <div slot="content" style="max-width: 320px; white-space: normal;">
订单商品价格+打包费再扣微信0.6%手续费 流水总金额-退款总金额-售后总金额
</div> </div>
</Tooltip> </Tooltip>
</div> </div>
@ -205,7 +205,7 @@
<Tooltip transfer placement="top-start"> <Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" /> <Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;"> <div slot="content" style="max-width: 320px; white-space: normal;">
仅结束时间小于今天且范围不超过31天时计算 仅结束时间小于今天且范围不超过31天时计算实际所得=有效流水总金额-配送费总额-总部扣点-微信手续费-短信成本-内容审核成本-实名认证成本-抽奖/排位/配送奖励-已结算金额
</div> </div>
</Tooltip> </Tooltip>
</div> </div>
@ -224,7 +224,7 @@
<Tooltip transfer placement="top-start"> <Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" /> <Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;"> <div slot="content" style="max-width: 320px; white-space: normal;">
有效流水总金额 * 0.01 (有效流水总金额-配送费总额)*0.01
</div> </div>
</Tooltip> </Tooltip>
</div> </div>
@ -244,6 +244,67 @@
</Col> </Col>
</Row> </Row>
<div style="width:100%;height: 20px;"></div> <div style="width:100%;height: 20px;"></div>
<Row :gutter="16">
<Col span="6">
<div style="display:flex;">
<div style="width:50px;height:50px;background:#87CEFA;border-radius:5px;text-align:center;padding-top:5px;margin-right:10px;">
<Icon type="logo-yen" color="#fff" size="40"/>
</div>
<div>
<div style="font-weight:700;font-size:22px;">{{ statistics.wechatReceiptAmount }}</div>
<div>
微信实际收款总额
<Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;">
流水总金额-退款总金额-售后总金额
</div>
</Tooltip>
</div>
</div>
</div>
</Col>
<Col span="6">
<div style="display:flex;">
<div style="width:50px;height:50px;background:#87CEFA;border-radius:5px;text-align:center;padding-top:5px;margin-right:10px;">
<Icon type="logo-yen" color="#fff" size="40"/>
</div>
<div>
<div style="font-weight:700;font-size:22px;">{{ statistics.wechatFeeAmount }}</div>
<div>
微信手续费
<Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;">
有效流水总金额*0.006
</div>
</Tooltip>
</div>
</div>
</div>
</Col>
<Col span="6">
<div style="display:flex;">
<div style="width:50px;height:50px;background:#87CEFA;border-radius:5px;text-align:center;padding-top:5px;margin-right:10px;">
<Icon type="logo-yen" color="#fff" size="40"/>
</div>
<div>
<div v-if="statistics.actualIncomeAvailable" style="font-weight:700;font-size:22px;">{{ statistics.settledAmount }}</div>
<div v-else style="font-weight:700;font-size:22px;">--</div>
<div>
商家结算金额
<Tooltip transfer placement="top-start">
<Icon type="md-help-circle" size="14" />
<div slot="content" style="max-width: 320px; white-space: normal;">
与实际所得一致仅结束时间小于今天且范围不超过31天时显示实际所得中会扣除此金额
</div>
</Tooltip>
</div>
</div>
</div>
</Col>
</Row>
<div style="width:100%;height: 20px;"></div>
<Row :gutter="16"> <Row :gutter="16">
<Col span="6"> <Col span="6">
<div style="display:flex;"> <div style="display:flex;">
@ -526,6 +587,8 @@
actualIncomeAvailable: false, actualIncomeAvailable: false,
settledAmount: "0.00", settledAmount: "0.00",
headquartersDeductionAmount: "0.00", headquartersDeductionAmount: "0.00",
wechatReceiptAmount: "0.00",
wechatFeeAmount: "0.00",
deliveryFeeAmount: "0.00", deliveryFeeAmount: "0.00",
smsCount: 0, smsCount: 0,
contentAuditCount: 0, contentAuditCount: 0,

Loading…
Cancel
Save