diff --git a/api/dataStatistics/networkPoint.js b/api/dataStatistics/networkPoint.js
new file mode 100644
index 0000000..d4660a0
--- /dev/null
+++ b/api/dataStatistics/networkPoint.js
@@ -0,0 +1,45 @@
+import request from '@/utils/request'
+
+export default {
+ getByProvince(data) {
+ return request({
+ url: '/oil-finance/siteOperateRecord/getByProvince',
+ method: 'post',
+ data: data
+ })
+ },
+ getCheckInfo(data) {
+ return request({
+ url: '/oil-site/oilSiteAppInfo/getCheckInfo',
+ method: 'get'
+ })
+ },
+ getByProvincePage(data) {
+ return request({
+ url: '/oil-finance/siteOperateRecord/getByProvincePage',
+ method: 'post',
+ data: data
+ })
+ },
+ getNetworkCount(data) {
+ return request({
+ url: '/oil-finance/siteOperateRecord/getNetworkCount',
+ method: 'post',
+ data: data
+ })
+ },
+
+ // getByProvincePage(data) {
+ // return request({
+ // url: '/oil-finance/siteOperateRecord/getByProvincePage',
+ // method: 'post',
+ // data: data
+ // })
+ // },
+ liekQuery(query) {
+ return request({
+ url: `/oil-user/sysCustomerInfo/liekQuery/${query}`,
+ method: 'get'
+ })
+ },
+}
diff --git a/api/orderList/orderDetails.js b/api/orderList/orderDetails.js
new file mode 100644
index 0000000..52b3d4d
--- /dev/null
+++ b/api/orderList/orderDetails.js
@@ -0,0 +1,46 @@
+import request from '@/utils/request'
+
+export default {
+ // 福佑
+ fuyouRefund(data) {
+ return request({
+ url: '/oil-site/fuYou/refund',
+ method: 'post',
+ data: data
+ })
+ },
+ //智猪 长久 牧原 新希望(黑龙江中锐)
+ orderRefund(data) {
+ return request({
+ url: '/oil-site/openPlatform/orderRefund',
+ method: 'post',
+ data: data
+ })
+ },
+ //顺丰
+ sfRefund(data) {
+ return request({
+ url: '/oil-site/sf/refund',
+ method: 'post',
+ data: data
+ })
+ },
+ // 安能
+ refund(id) {
+ return request({
+ url: `/oil-finance/oilOrderInfo/refund/${id}`,
+ method: 'get'
+ })
+ },
+ // 安途 圆通(易管油)
+ unifiedRefund(data) {
+ return request({
+ url: '/oil-site/xoil/unifiedRefund',
+ method: 'post',
+ data: data
+ })
+ },
+
+
+
+}
diff --git a/dataStatistics/networkPoint/components/charge.vue b/dataStatistics/networkPoint/components/charge.vue
new file mode 100644
index 0000000..0b6809a
--- /dev/null
+++ b/dataStatistics/networkPoint/components/charge.vue
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+ {{ item.userName || item.nickName }}
+
+
+
+ 确定
+
+
+
+
+
+
+
+
+
diff --git a/dataStatistics/networkPoint/img/1.png b/dataStatistics/networkPoint/img/1.png
new file mode 100644
index 0000000..13c330a
Binary files /dev/null and b/dataStatistics/networkPoint/img/1.png differ
diff --git a/dataStatistics/networkPoint/img/2.png b/dataStatistics/networkPoint/img/2.png
new file mode 100644
index 0000000..edbba75
Binary files /dev/null and b/dataStatistics/networkPoint/img/2.png differ
diff --git a/dataStatistics/networkPoint/img/3.png b/dataStatistics/networkPoint/img/3.png
new file mode 100644
index 0000000..bcb4bb7
Binary files /dev/null and b/dataStatistics/networkPoint/img/3.png differ
diff --git a/dataStatistics/networkPoint/index.vue b/dataStatistics/networkPoint/index.vue
new file mode 100644
index 0000000..5ccdb6e
--- /dev/null
+++ b/dataStatistics/networkPoint/index.vue
@@ -0,0 +1,424 @@
+
+
+
+
+ {{params.nickName || '负责人'}}
+
+
+
+
+
+ {{params.provinceName || '省份'}}
+
+
+
+
+
+
+ {{dataTime.start || '开始时间'}} ~ {{dataTime.end || '结束时间'}}
+
+
+
+
+
+ {{info.revenueAmountCount || '- - '}}元
+ GMV总金额
+
+ 总毛利:{{info.grossProfitCount || '- - '}}元
+ 毛利率:{{info.grossMargin || '- - '}}%
+
+
+ 省份排名:
+
+
+
+
+
+
+
+ {{
+ index < 3 ? '' : index + 1
+ }}
+
+
+ {{item.provinceName}}
+ 动销油站({{item.siteDXCount}})
+ {{item.revenueAmountCount || '- - '}}元
+
+
+
+
+
+
+ 总毛利:{{item.grossProfitCount|| '- - '}}元
+ 毛利率:{{item.grossMargin|| '- - '}}%
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/dataStatistics/networkPoint/province.vue b/dataStatistics/networkPoint/province.vue
new file mode 100644
index 0000000..25909dd
--- /dev/null
+++ b/dataStatistics/networkPoint/province.vue
@@ -0,0 +1,325 @@
+
+
+
+
+ 时间:{{dataTime.start}} ~ {{dataTime.end}}
+
+
+ {{info.revenueAmountCount}}元
+ {{paramter.params.provinceName}}油站消费总金额
+
+ 总毛利:{{info.grossProfitCount}}元
+ 毛利率:{{info.grossMargin}}%
+
+
+
+ {{item.label}}
+
+
+
+
+
+
+
+
+ {{
+ index < 3 ? '' : index + 1
+ }}
+
+
+ {{item.siteName || item.accountName || ''}}
+ {{item.revenueAmountCount|| '- - '}}元
+
+
+
+
+
+
+ 总毛利:{{item.grossProfitCount|| '- - '}}元
+ 毛利率:{{item.grossMargin|| '- - '}}%
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/orderList/orderDetails/orderDetails.vue b/orderList/orderDetails/orderDetails.vue
index 4423f81..dbc4ea3 100644
--- a/orderList/orderDetails/orderDetails.vue
+++ b/orderList/orderDetails/orderDetails.vue
@@ -6,15 +6,18 @@
{{details.payAccountType==0?'个人':'企业'}}
- {{paymentStatus(details.orderStatus).text}}
+ {{paymentStatus(details.orderStatus).text}}
- {{details.siteName}}
-
+ {{details.siteName}}
+
{{details.siteId}}
@@ -22,7 +25,11 @@
- {{details.customerName}} {{details.customerPhone}}
+ {{details.customerName}} {{details.customerPhone}}
+
+
{{details.customerId}}
@@ -45,12 +52,14 @@
价格
- {{ details.realAmount}}元
+ {{ details.realAmount}}元
升数
- {{details.volume}} L
+ {{details.volume}} L
@@ -76,13 +85,16 @@
- 待核销
- 已核销
-
+
更多信息&退款信息
-
+
@@ -94,41 +106,53 @@
- {{details.orderSerialNumber}}
-
-
+ {{details.orderSerialNumber}}
+
+
{{details.createTime}}
- 退款
+
+ 退款
-
+
-
- 核销二维码
-
-
- 二维码生成错误
-
-
+
+ 核销二维码
+
+
+ 二维码生成错误
+
+
-
+