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
Commit
3e971ee7
authored
Dec 14, 2023
by
张恒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Demo
parent
f99cc40b
Changes
4
Show 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) {
...
@@ -20,13 +20,12 @@ export const getAllDatas = async function (cur_day, type,cur_page) {
/**
/**
* 后端接口数据处理
* 后端接口数据处理
* @param detailList
* @param detailList
* @returns {
Promise<void>
}
* @returns {
*[]
}
*/
*/
export
const
resultProcess
=
function
(
detailList
)
{
export
const
resultProcess
=
function
(
detailList
)
{
let
lostAddDataList
=
new
Array
();
let
lostAddDataList
=
[];
for
(
let
key
in
detailList
)
{
for
(
let
data
of
detailList
)
{
let
resData
=
detailList
[
key
];
let
lostAdd
=
adapterLostAdd
(
data
)
let
lostAdd
=
adapterLostAdd
(
resData
)
lostAddDataList
.
push
(
lostAdd
)
lostAddDataList
.
push
(
lostAdd
)
}
}
return
lostAddDataList
return
lostAddDataList
...
@@ -40,7 +39,7 @@ export const resultProcess = function (detailList) {
...
@@ -40,7 +39,7 @@ export const resultProcess = function (detailList) {
export
const
adapterLostAdd
=
function
(
data
)
{
export
const
adapterLostAdd
=
function
(
data
)
{
let
lostAddData
=
{};
let
lostAddData
=
{};
lostAddData
[
'title'
]
=
data
.
entrust_agency_name
;
lostAddData
[
'title'
]
=
data
.
entrust_agency_name
;
let
lostAddDataCol
=
new
Array
()
;
let
lostAddDataCol
=
[]
;
lostAddDataCol
[
0
]
=
adapterLostAddCol
(
"订单量(万吨) "
,
conver_amont
(
data
.
unit_weight
),
"red"
)
lostAddDataCol
[
0
]
=
adapterLostAddCol
(
"订单量(万吨) "
,
conver_amont
(
data
.
unit_weight
),
"red"
)
lostAddDataCol
[
1
]
=
adapterLostAddCol
(
"订单件数"
,
data
.
qty
,
"#eaa749"
)
lostAddDataCol
[
1
]
=
adapterLostAddCol
(
"订单件数"
,
data
.
qty
,
"#eaa749"
)
lostAddDataCol
[
2
]
=
adapterLostAddCol
(
"营业额(万元)"
,
conver_amont
(
data
.
sell_settle_amount
),
"#49eb29"
)
lostAddDataCol
[
2
]
=
adapterLostAddCol
(
"营业额(万元)"
,
conver_amont
(
data
.
sell_settle_amount
),
"#49eb29"
)
...
@@ -48,7 +47,7 @@ export const adapterLostAdd = function (data) {
...
@@ -48,7 +47,7 @@ export const adapterLostAdd = function (data) {
return
lostAddData
;
return
lostAddData
;
}
}
export
const
adapterLostAddCol
=
function
(
key
,
val
,
styleColor
)
{
export
const
adapterLostAddCol
=
function
(
key
,
val
,
styleColor
)
{
let
lostAddDataCol
=
new
Object
()
;
let
lostAddDataCol
=
{}
;
lostAddDataCol
.
key
=
key
;
lostAddDataCol
.
key
=
key
;
lostAddDataCol
.
value
=
val
;
lostAddDataCol
.
value
=
val
;
lostAddDataCol
.
valStyle
=
{
"color"
:
styleColor
}
lostAddDataCol
.
valStyle
=
{
"color"
:
styleColor
}
...
...
src/module/databoard/databoard/lost-add-customer.vue
View file @
3e971ee7
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
import
data
from
"./mockData/lost_add_customer.json"
;
import
data
from
"./mockData/lost_add_customer.json"
;
import
DisplayBoard
from
"../components/container/display-board.vue"
;
import
DisplayBoard
from
"../components/container/display-board.vue"
;
import
PagingList
from
"../components/card/paging-list.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'
import
moment
from
'moment'
export
default
{
export
default
{
...
@@ -35,21 +35,32 @@ export default {
...
@@ -35,21 +35,32 @@ export default {
return
{
return
{
today
:
moment
().
format
(
"yyyy-MM-DD"
),
today
:
moment
().
format
(
"yyyy-MM-DD"
),
curPageTitle
:
this
.
$route
.
query
.
code
===
1
?
"新增客户(较去年)"
:
"流失客户(较去年)"
,
curPageTitle
:
this
.
$route
.
query
.
code
===
1
?
"新增客户(较去年)"
:
"流失客户(较去年)"
,
pageData
:{},
pageData
:
{
pageSize
:
40
,
leftData
:
{},
curPage
:
1
,
rightData
:
{},
total
:
0
},
pageSize
:
40
,
curPage
:
1
,
}
}
},
},
methods
:
{
methods
:
{
back
()
{
back
()
{
this
.
$router
.
push
({
path
:
'/'
});
this
.
$router
.
push
({
path
:
'/'
});
},
},
async
handleCurrentChange
(
currentPage
){
handleCurrentChange
(
currentPage
)
{
this
.
pageData
=
await
getAllDatas
(
this
.
today
,
this
.
$route
.
query
.
code
,
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
()
{
mounted
()
{
this
.
pageData
=
await
getAllDatas
(
this
.
today
,
this
.
$route
.
query
.
code
)
this
.
getAllData
();
},
},
}
}
</
script
>
</
script
>
...
...
src/module/databoard/databoard/mockData/lost_add_customer.json
View file @
3e971ee7
{
[
"list"
:
[
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
1703869.537195
,
"column"
:
[
"entrust_agency_name"
:
"广东******有限公司"
,
"qty"
:
9
,
"unit_weight"
:
13456.762
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
320387.436238
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"中集******有限公司"
,
"valStyle"
:
{
"qty"
:
471
,
"color"
:
"red"
"unit_weight"
:
5049.826
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
167279.889601
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
360
,
"color"
:
"#eaa749"
"unit_weight"
:
3905.756
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
213157.226008
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
562
,
"color"
:
"#49eb29"
"unit_weight"
:
3573.007
}
}
]
},
},
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
532600.519624
,
"column"
:
[
"entrust_agency_name"
:
"销售******有限公司"
,
"qty"
:
134
,
"unit_weight"
:
3449.862
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
642879.270003
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"valStyle"
:
{
"qty"
:
322
,
"color"
:
"red"
"unit_weight"
:
3260.192
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
583868.859899
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"湖南******有限公司"
,
"valStyle"
:
{
"qty"
:
432
,
"color"
:
"#eaa749"
"unit_weight"
:
3127.524
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
104600
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"广州******有限公司"
,
"valStyle"
:
{
"qty"
:
2
,
"color"
:
"#49eb29"
"unit_weight"
:
1816
}
}
]
},
},
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
91086.918
,
"column"
:
[
"entrust_agency_name"
:
"宁波******有限公司"
,
"qty"
:
100
,
"unit_weight"
:
1624.473
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
16743.199017
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"宝钢******有限公司"
,
"valStyle"
:
{
"qty"
:
107
,
"color"
:
"red"
"unit_weight"
:
1594.934
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
310696.988963
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"宝钢******有限公司"
,
"valStyle"
:
{
"qty"
:
719
,
"color"
:
"#eaa749"
"unit_weight"
:
1486.949
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
138916.639679
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"valStyle"
:
{
"qty"
:
57
,
"color"
:
"#49eb29"
"unit_weight"
:
1234.459
}
}
]
},
},
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
12993.42
,
"column"
:
[
"entrust_agency_name"
:
"上海******有限公司"
,
"qty"
:
98
,
"unit_weight"
:
1201.918
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
158807.980002
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"苏州******有限公司"
,
"valStyle"
:
{
"qty"
:
93
,
"color"
:
"red"
"unit_weight"
:
1151.413
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
164471.12
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"物产******有限公司"
,
"valStyle"
:
{
"qty"
:
102
,
"color"
:
"#eaa749"
"unit_weight"
:
1133.08
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
155021.680003
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
104
,
"color"
:
"#49eb29"
"unit_weight"
:
1026.47
}
}
]
},
},
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
38546.34
,
"column"
:
[
"entrust_agency_name"
:
"天泰******有限公司"
,
"qty"
:
70
,
"unit_weight"
:
917.77
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
23744.348391
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
149
,
"color"
:
"red"
"unit_weight"
:
899.018
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
131329.020027
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
405
,
"color"
:
"#eaa749"
"unit_weight"
:
853.229
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
39306.204752
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
58
,
"color"
:
"#49eb29"
"unit_weight"
:
767.512
}
}
]
},
},
{
{
"title"
:
"上海欧也股份有限公司"
,
"sell_settle_amount"
:
41656.070006
,
"column"
:
[
"entrust_agency_name"
:
"兰州******有限公司"
,
"qty"
:
102
,
"unit_weight"
:
689.67
},
{
{
"key"
:
"订单量(万吨)"
,
"sell_settle_amount"
:
6419.449998
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"苏美******有限公司"
,
"valStyle"
:
{
"qty"
:
56
,
"color"
:
"red"
"unit_weight"
:
639.355
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
5796.32
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"深圳******有限公司"
,
"valStyle"
:
{
"qty"
:
50
,
"color"
:
"#eaa749"
"unit_weight"
:
587.017
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
12624.86
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"中盛******有限公司"
,
"valStyle"
:
{
"qty"
:
46
,
"color"
:
"#49eb29"
"unit_weight"
:
435.34
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
4204.110001
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
16
,
"color"
:
"#eaa749"
"unit_weight"
:
428.99
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
49495.04
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"长春******有限公司"
,
"valStyle"
:
{
"qty"
:
40
,
"color"
:
"#49eb29"
"unit_weight"
:
390.501
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
4220.04
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"上海******有限公司"
,
"valStyle"
:
{
"qty"
:
19
,
"color"
:
"#eaa749"
"unit_weight"
:
384.141
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
3723.509998
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"杭州******有限公司"
,
"valStyle"
:
{
"qty"
:
14
,
"color"
:
"#49eb29"
"unit_weight"
:
379.95
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
4759.616699
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"五矿******有限公司"
,
"valStyle"
:
{
"qty"
:
33
,
"color"
:
"#eaa749"
"unit_weight"
:
372.631
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
57825.869998
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"安悦******有限公司"
,
"valStyle"
:
{
"qty"
:
29
,
"color"
:
"#49eb29"
"unit_weight"
:
317.385
}
}
]
},{
"title"
:
"上海欧也股份有限公司"
,
"column"
:
[
{
"key"
:
"订单量(万吨)"
,
"value"
:
"202,012"
,
"valStyle"
:
{
"color"
:
"red"
}
},
},
{
{
"key"
:
"订单件数"
,
"sell_settle_amount"
:
79449.999999
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"杭州******有限公司"
,
"valStyle"
:
{
"qty"
:
32
,
"color"
:
"#eaa749"
"unit_weight"
:
264.2
}
},
},
{
{
"key"
:
"营销额(万元)"
,
"sell_settle_amount"
:
119060.407999
,
"value"
:
"202,012"
,
"entrust_agency_name"
:
"武汉******有限公司"
,
"valStyle"
:
{
"qty"
:
67
,
"color"
:
"#49eb29"
"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 {
...
@@ -32,7 +32,7 @@ export default {
currentWeek
:
null
,
currentWeek
:
null
,
isRouterAlive
:
true
,
isRouterAlive
:
true
,
countDownTimer
:
null
,
countDownTimer
:
null
,
week
:
[
'星期天'
,
'星期一'
,
'星期二'
,
'星期三'
,
'星期四'
,
'星期五'
],
week
:
[
'星期天'
,
'星期一'
,
'星期二'
,
'星期三'
,
'星期四'
,
'星期五'
,
"星期六"
],
}
}
},
},
methods
:
{
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