Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
shld-databoard-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘自豪 Rambo Pan
shld-databoard-ui
Commits
3e971ee7
You need to sign in or sign up before continuing.
Commit
3e971ee7
authored
Dec 14, 2023
by
张恒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Demo
parent
f99cc40b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
754 additions
and
281 deletions
+754
-281
lostAddCustomer.js
src/module/databoard/databoard/js/lostAddCustomer.js
+6
-7
lost-add-customer.vue
src/module/databoard/databoard/lost-add-customer.vue
+19
-8
lost_add_customer.json
...odule/databoard/databoard/mockData/lost_add_customer.json
+728
-265
index.vue
src/module/index/index.vue
+1
-1
No files found.
src/module/databoard/databoard/js/lostAddCustomer.js
View file @
3e971ee7
...
...
@@ -20,13 +20,12 @@ export const getAllDatas = async function (cur_day, type,cur_page) {
/**
* 后端接口数据处理
* @param detailList
* @returns {
Promise<void>
}
* @returns {
*[]
}
*/
export
const
resultProcess
=
function
(
detailList
)
{
let
lostAddDataList
=
new
Array
();
for
(
let
key
in
detailList
)
{
let
resData
=
detailList
[
key
];
let
lostAdd
=
adapterLostAdd
(
resData
)
let
lostAddDataList
=
[];
for
(
let
data
of
detailList
)
{
let
lostAdd
=
adapterLostAdd
(
data
)
lostAddDataList
.
push
(
lostAdd
)
}
return
lostAddDataList
...
...
@@ -40,7 +39,7 @@ export const resultProcess = function (detailList) {
export
const
adapterLostAdd
=
function
(
data
)
{
let
lostAddData
=
{};
lostAddData
[
'title'
]
=
data
.
entrust_agency_name
;
let
lostAddDataCol
=
new
Array
()
;
let
lostAddDataCol
=
[]
;
lostAddDataCol
[
0
]
=
adapterLostAddCol
(
"订单量(万吨) "
,
conver_amont
(
data
.
unit_weight
),
"red"
)
lostAddDataCol
[
1
]
=
adapterLostAddCol
(
"订单件数"
,
data
.
qty
,
"#eaa749"
)
lostAddDataCol
[
2
]
=
adapterLostAddCol
(
"营业额(万元)"
,
conver_amont
(
data
.
sell_settle_amount
),
"#49eb29"
)
...
...
@@ -48,7 +47,7 @@ export const adapterLostAdd = function (data) {
return
lostAddData
;
}
export
const
adapterLostAddCol
=
function
(
key
,
val
,
styleColor
)
{
let
lostAddDataCol
=
new
Object
()
;
let
lostAddDataCol
=
{}
;
lostAddDataCol
.
key
=
key
;
lostAddDataCol
.
value
=
val
;
lostAddDataCol
.
valStyle
=
{
"color"
:
styleColor
}
...
...
src/module/databoard/databoard/lost-add-customer.vue
View file @
3e971ee7
...
...
@@ -25,7 +25,7 @@
import
data
from
"./mockData/lost_add_customer.json"
;
import
DisplayBoard
from
"../components/container/display-board.vue"
;
import
PagingList
from
"../components/card/paging-list.vue"
;
import
{
getAllData
s
}
from
"./js/lostAddCustomer"
import
{
resultProces
s
}
from
"./js/lostAddCustomer"
import
moment
from
'moment'
export
default
{
...
...
@@ -35,21 +35,32 @@ export default {
return
{
today
:
moment
().
format
(
"yyyy-MM-DD"
),
curPageTitle
:
this
.
$route
.
query
.
code
===
1
?
"新增客户(较去年)"
:
"流失客户(较去年)"
,
pageData
:{},
pageSize
:
40
,
curPage
:
1
,
pageData
:
{
leftData
:
{},
rightData
:
{},
total
:
0
},
pageSize
:
40
,
curPage
:
1
,
}
},
methods
:
{
back
()
{
this
.
$router
.
push
({
path
:
'/'
});
},
async
handleCurrentChange
(
currentPage
){
this
.
pageData
=
await
getAllDatas
(
this
.
today
,
this
.
$route
.
query
.
code
,
currentPage
)
handleCurrentChange
(
currentPage
)
{
this
.
curPage
=
currentPage
;
this
.
getAllData
();
},
getAllData
()
{
let
index
=
(
this
.
curPage
-
1
)
*
40
this
.
pageData
.
leftData
=
resultProcess
(
data
.
slice
(
index
,
index
+
20
));
this
.
pageData
.
rightData
=
resultProcess
(
data
.
slice
(
index
+
20
,
index
+
40
));
this
.
pageData
.
total
=
data
.
length
;
}
},
async
mounted
()
{
this
.
pageData
=
await
getAllDatas
(
this
.
today
,
this
.
$route
.
query
.
code
)
mounted
()
{
this
.
getAllData
();
},
}
</
script
>
...
...
src/module/databoard/databoard/mockData/lost_add_customer.json
View file @
3e971ee7
{
"list"
:
[
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},
{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
{
"key"
:
"订单件数"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#eaa749"
}
},
{
"key"
:
"营销额(万元)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"#49eb29"
}
}
]
}
]
}
[
{
"sell_settle_amount"
:
1703869.537195
,
"entrust_agency_name"
:
"广东******有限公司"
,
"qty"
:
9
,
"unit_weight"
:
13456.762
},
{
"sell_settle_amount"
:
320387.436238
,
"entrust_agency_name"
:
"中集******有限公司"
,
"qty"
:
471
,
"unit_weight"
:
5049.826
},
{
"sell_settle_amount"
:
167279.889601
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
360
,
"unit_weight"
:
3905.756
},
{
"sell_settle_amount"
:
213157.226008
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
562
,
"unit_weight"
:
3573.007
},
{
"sell_settle_amount"
:
532600.519624
,
"entrust_agency_name"
:
"销售******有限公司"
,
"qty"
:
134
,
"unit_weight"
:
3449.862
},
{
"sell_settle_amount"
:
642879.270003
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"qty"
:
322
,
"unit_weight"
:
3260.192
},
{
"sell_settle_amount"
:
583868.859899
,
"entrust_agency_name"
:
"湖南******有限公司"
,
"qty"
:
432
,
"unit_weight"
:
3127.524
},
{
"sell_settle_amount"
:
104600
,
"entrust_agency_name"
:
"广州******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
1816
},
{
"sell_settle_amount"
:
91086.918
,
"entrust_agency_name"
:
"宁波******有限公司"
,
"qty"
:
100
,
"unit_weight"
:
1624.473
},
{
"sell_settle_amount"
:
16743.199017
,
"entrust_agency_name"
:
"宝钢******有限公司"
,
"qty"
:
107
,
"unit_weight"
:
1594.934
},
{
"sell_settle_amount"
:
310696.988963
,
"entrust_agency_name"
:
"宝钢******有限公司"
,
"qty"
:
719
,
"unit_weight"
:
1486.949
},
{
"sell_settle_amount"
:
138916.639679
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"qty"
:
57
,
"unit_weight"
:
1234.459
},
{
"sell_settle_amount"
:
12993.42
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
98
,
"unit_weight"
:
1201.918
},
{
"sell_settle_amount"
:
158807.980002
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"qty"
:
93
,
"unit_weight"
:
1151.413
},
{
"sell_settle_amount"
:
164471.12
,
"entrust_agency_name"
:
"物产******有限公司"
,
"qty"
:
102
,
"unit_weight"
:
1133.08
},
{
"sell_settle_amount"
:
155021.680003
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
104
,
"unit_weight"
:
1026.47
},
{
"sell_settle_amount"
:
38546.34
,
"entrust_agency_name"
:
"天泰******有限公司"
,
"qty"
:
70
,
"unit_weight"
:
917.77
},
{
"sell_settle_amount"
:
23744.348391
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
149
,
"unit_weight"
:
899.018
},
{
"sell_settle_amount"
:
131329.020027
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
405
,
"unit_weight"
:
853.229
},
{
"sell_settle_amount"
:
39306.204752
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
58
,
"unit_weight"
:
767.512
},
{
"sell_settle_amount"
:
41656.070006
,
"entrust_agency_name"
:
"兰州******有限公司"
,
"qty"
:
102
,
"unit_weight"
:
689.67
},
{
"sell_settle_amount"
:
6419.449998
,
"entrust_agency_name"
:
"苏美******有限公司"
,
"qty"
:
56
,
"unit_weight"
:
639.355
},
{
"sell_settle_amount"
:
5796.32
,
"entrust_agency_name"
:
"深圳******有限公司"
,
"qty"
:
50
,
"unit_weight"
:
587.017
},
{
"sell_settle_amount"
:
12624.86
,
"entrust_agency_name"
:
"中盛******有限公司"
,
"qty"
:
46
,
"unit_weight"
:
435.34
},
{
"sell_settle_amount"
:
4204.110001
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
16
,
"unit_weight"
:
428.99
},
{
"sell_settle_amount"
:
49495.04
,
"entrust_agency_name"
:
"长春******有限公司"
,
"qty"
:
40
,
"unit_weight"
:
390.501
},
{
"sell_settle_amount"
:
4220.04
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
19
,
"unit_weight"
:
384.141
},
{
"sell_settle_amount"
:
3723.509998
,
"entrust_agency_name"
:
"杭州******有限公司"
,
"qty"
:
14
,
"unit_weight"
:
379.95
},
{
"sell_settle_amount"
:
4759.616699
,
"entrust_agency_name"
:
"五矿******有限公司"
,
"qty"
:
33
,
"unit_weight"
:
372.631
},
{
"sell_settle_amount"
:
57825.869998
,
"entrust_agency_name"
:
"安悦******有限公司"
,
"qty"
:
29
,
"unit_weight"
:
317.385
},
{
"sell_settle_amount"
:
79449.999999
,
"entrust_agency_name"
:
"杭州******有限公司"
,
"qty"
:
32
,
"unit_weight"
:
264.2
},
{
"sell_settle_amount"
:
119060.407999
,
"entrust_agency_name"
:
"武汉******有限公司"
,
"qty"
:
67
,
"unit_weight"
:
262.694
},
{
"sell_settle_amount"
:
2493.316
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
12
,
"unit_weight"
:
254.42
},
{
"sell_settle_amount"
:
16680.69
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
18
,
"unit_weight"
:
213.855
},
{
"sell_settle_amount"
:
59100.000001
,
"entrust_agency_name"
:
"浙江******有限公司"
,
"qty"
:
18
,
"unit_weight"
:
208.923
},
{
"sell_settle_amount"
:
2422.304
,
"entrust_agency_name"
:
"湛江******有限公司"
,
"qty"
:
9
,
"unit_weight"
:
205.28
},
{
"sell_settle_amount"
:
23825.28
,
"entrust_agency_name"
:
"中冶******有限公司"
,
"qty"
:
31
,
"unit_weight"
:
198.544
},
{
"sell_settle_amount"
:
2152.479998
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
22
,
"unit_weight"
:
198.219
},
{
"sell_settle_amount"
:
51436.4902
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
7
,
"unit_weight"
:
189
},
{
"sell_settle_amount"
:
47984.999995
,
"entrust_agency_name"
:
"无锡******有限公司"
,
"qty"
:
25
,
"unit_weight"
:
188.5
},
{
"sell_settle_amount"
:
1726.009999
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
16
,
"unit_weight"
:
176.124
},
{
"sell_settle_amount"
:
22592.12358
,
"entrust_agency_name"
:
"中集******有限公司"
,
"qty"
:
14
,
"unit_weight"
:
151.126
},
{
"sell_settle_amount"
:
24775.150002
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
19
,
"unit_weight"
:
141.235
},
{
"sell_settle_amount"
:
1311.83
,
"entrust_agency_name"
:
"沈阳******有限公司"
,
"qty"
:
19
,
"unit_weight"
:
133.173
},
{
"sell_settle_amount"
:
63072.567
,
"entrust_agency_name"
:
"哈尔******有限公司"
,
"qty"
:
5
,
"unit_weight"
:
128.382
},
{
"sell_settle_amount"
:
54754.220001
,
"entrust_agency_name"
:
"青岛******有限公司"
,
"qty"
:
13
,
"unit_weight"
:
120.604
},
{
"sell_settle_amount"
:
5802.42
,
"entrust_agency_name"
:
"大连******有限公司"
,
"qty"
:
18
,
"unit_weight"
:
112.485
},
{
"sell_settle_amount"
:
9325.940001
,
"entrust_agency_name"
:
"菲力******有限公司"
,
"qty"
:
12
,
"unit_weight"
:
111.92
},
{
"sell_settle_amount"
:
1088.81
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
10
,
"unit_weight"
:
107.136
},
{
"sell_settle_amount"
:
3392.179966
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
17
,
"unit_weight"
:
103.538
},
{
"sell_settle_amount"
:
2005.02
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
12
,
"unit_weight"
:
100.251
},
{
"sell_settle_amount"
:
1024.680001
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
12
,
"unit_weight"
:
99.898
},
{
"sell_settle_amount"
:
927.57
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
94.65
},
{
"sell_settle_amount"
:
4995.802679
,
"entrust_agency_name"
:
"美达******有限公司"
,
"qty"
:
8
,
"unit_weight"
:
90.344
},
{
"sell_settle_amount"
:
865.05
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
5
,
"unit_weight"
:
88.27
},
{
"sell_settle_amount"
:
1601.37
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
8
,
"unit_weight"
:
86.18
},
{
"sell_settle_amount"
:
830.893
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
84.785
},
{
"sell_settle_amount"
:
11347.2
,
"entrust_agency_name"
:
"云南******有限公司"
,
"qty"
:
9
,
"unit_weight"
:
82.472
},
{
"sell_settle_amount"
:
793.36
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
80.955
},
{
"sell_settle_amount"
:
24146.19
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
32
,
"unit_weight"
:
75.653
},
{
"sell_settle_amount"
:
8965.41
,
"entrust_agency_name"
:
"重庆******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
74.34
},
{
"sell_settle_amount"
:
5695.85
,
"entrust_agency_name"
:
"广州******有限公司"
,
"qty"
:
8
,
"unit_weight"
:
67.01
},
{
"sell_settle_amount"
:
835.8632
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
6
,
"unit_weight"
:
65.816
},
{
"sell_settle_amount"
:
4328.740002
,
"entrust_agency_name"
:
"无锡******有限公司"
,
"qty"
:
10
,
"unit_weight"
:
63.658
},
{
"sell_settle_amount"
:
588.86
,
"entrust_agency_name"
:
"靖江******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
56.322
},
{
"sell_settle_amount"
:
513.75
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
52.423
},
{
"sell_settle_amount"
:
490.17
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
50.017
},
{
"sell_settle_amount"
:
543.7212
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
46.694
},
{
"sell_settle_amount"
:
456.68
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
46.6
},
{
"sell_settle_amount"
:
406.179999
,
"entrust_agency_name"
:
"浙江******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
41.447
},
{
"sell_settle_amount"
:
25000
,
"entrust_agency_name"
:
"武汉******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
32.676
},
{
"sell_settle_amount"
:
45104.500001
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
8
,
"unit_weight"
:
32.67
},
{
"sell_settle_amount"
:
315.71
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
5
,
"unit_weight"
:
32.215
},
{
"sell_settle_amount"
:
610.330996
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
32.18
},
{
"sell_settle_amount"
:
6299
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
28
,
"unit_weight"
:
31.495
},
{
"sell_settle_amount"
:
15365
,
"entrust_agency_name"
:
"吉林******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
31.26
},
{
"sell_settle_amount"
:
6940.25
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
15
,
"unit_weight"
:
30.175
},
{
"sell_settle_amount"
:
9749.999999
,
"entrust_agency_name"
:
"宁波******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
30
},
{
"sell_settle_amount"
:
9749.999999
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
29.654
},
{
"sell_settle_amount"
:
289.93
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
29.585
},
{
"sell_settle_amount"
:
284.89
,
"entrust_agency_name"
:
"加西******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
27.155
},
{
"sell_settle_amount"
:
265.83
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
27.125
},
{
"sell_settle_amount"
:
260.7
,
"entrust_agency_name"
:
"常州******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
26.602
},
{
"sell_settle_amount"
:
276.1
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
25.222
},
{
"sell_settle_amount"
:
271.425
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
24.675
},
{
"sell_settle_amount"
:
235.77
,
"entrust_agency_name"
:
"新钢******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
24.058
},
{
"sell_settle_amount"
:
443.52
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
23.1
},
{
"sell_settle_amount"
:
221.73
,
"entrust_agency_name"
:
"威尔******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
22.625
},
{
"sell_settle_amount"
:
4856.85
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
22.59
},
{
"sell_settle_amount"
:
220.67
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
22.518
},
{
"sell_settle_amount"
:
16398.4
,
"entrust_agency_name"
:
"芜湖******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
22.16
},
{
"sell_settle_amount"
:
216.99
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
22.142
},
{
"sell_settle_amount"
:
5500
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
5
,
"unit_weight"
:
21.633
},
{
"sell_settle_amount"
:
207.417
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
21.165
},
{
"sell_settle_amount"
:
225.94
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
20.54
},
{
"sell_settle_amount"
:
303.3
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
20.322
},
{
"sell_settle_amount"
:
184.44
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
18.82
},
{
"sell_settle_amount"
:
493.4995
,
"entrust_agency_name"
:
"宝钢******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
16.505
},
{
"sell_settle_amount"
:
262.85
,
"entrust_agency_name"
:
"美建******有限公司"
,
"qty"
:
4
,
"unit_weight"
:
16.428
},
{
"sell_settle_amount"
:
150.43
,
"entrust_agency_name"
:
"常州******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
15.35
},
{
"sell_settle_amount"
:
3212.04
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
15.08
},
{
"sell_settle_amount"
:
803.367321
,
"entrust_agency_name"
:
"美达******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
15.061
},
{
"sell_settle_amount"
:
161.55
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
14.686
},
{
"sell_settle_amount"
:
1399.999999
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
10
,
"unit_weight"
:
13.38
},
{
"sell_settle_amount"
:
358.47
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
13.083
},
{
"sell_settle_amount"
:
119.13
,
"entrust_agency_name"
:
"南通******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
12.156
},
{
"sell_settle_amount"
:
115.39
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
11.774
},
{
"sell_settle_amount"
:
1042.74
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
11.586
},
{
"sell_settle_amount"
:
256.07
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
10.28
},
{
"sell_settle_amount"
:
100.49
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
10.254
},
{
"sell_settle_amount"
:
103.905495
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
9.446
},
{
"sell_settle_amount"
:
100.2
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
8.281
},
{
"sell_settle_amount"
:
82.17
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
7.488
},
{
"sell_settle_amount"
:
72.39
,
"entrust_agency_name"
:
"芜湖******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
7.387
},
{
"sell_settle_amount"
:
80.38
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
7.307
},
{
"sell_settle_amount"
:
71.23
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
6.475
},
{
"sell_settle_amount"
:
59.44
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
6.065
},
{
"sell_settle_amount"
:
12000
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
3
,
"unit_weight"
:
6.018
},
{
"sell_settle_amount"
:
5000
,
"entrust_agency_name"
:
"东莞******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
5.685
},
{
"sell_settle_amount"
:
350
,
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
2
,
"unit_weight"
:
4.31
},
{
"sell_settle_amount"
:
3800
,
"entrust_agency_name"
:
"哈尔******有限公司"
,
"qty"
:
1
,
"unit_weight"
:
0.45
}
]
src/module/index/index.vue
View file @
3e971ee7
...
...
@@ -32,7 +32,7 @@ export default {
currentWeek
:
null
,
isRouterAlive
:
true
,
countDownTimer
:
null
,
week
:
[
'星期天'
,
'星期一'
,
'星期二'
,
'星期三'
,
'星期四'
,
'星期五'
],
week
:
[
'星期天'
,
'星期一'
,
'星期二'
,
'星期三'
,
'星期四'
,
'星期五'
,
"星期六"
],
}
},
methods
:
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment