Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WX_h5
Project
Project
Details
Activity
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
godwithdh
WX_h5
Commits
661b6456
Commit
661b6456
authored
Feb 07, 2020
by
张锡奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
upload
parent
a5dcb94c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
295 additions
and
100 deletions
+295
-100
host.js
src/libs/host.js
+1
-1
util.js
src/libs/util.js
+17
-0
health.js
src/router/health.js
+1
-1
index.js
src/store/index.js
+3
-1
statistics.js
src/store/modules/health/statistics.js
+27
-0
chart.vue
src/view/healthCard/statistics/chart.vue
+143
-88
index.vue
src/view/healthCard/statistics/index.vue
+5
-1
list.vue
src/view/healthCard/statistics/list.vue
+98
-8
No files found.
src/libs/host.js
View file @
661b6456
...
@@ -31,7 +31,7 @@ function urlFun(name){
...
@@ -31,7 +31,7 @@ function urlFun(name){
/**
/**
* 健康打卡统计
* 健康打卡统计
*/
*/
health
:
`http
://47.97.206.38:23253
`
health
:
`http
s://weixin.huansi.net/apiproxy/huansi/service/proxy/1225621052093239296
`
}
}
return
url
[
name
]
return
url
[
name
]
}
}
...
...
src/libs/util.js
View file @
661b6456
...
@@ -7,6 +7,7 @@ var nowMonth = now.getMonth(); //当前月
...
@@ -7,6 +7,7 @@ var nowMonth = now.getMonth(); //当前月
var
nowYear
=
now
.
getYear
();
//当前年
var
nowYear
=
now
.
getYear
();
//当前年
nowYear
+=
(
nowYear
<
2000
)
?
1900
:
0
;
//
nowYear
+=
(
nowYear
<
2000
)
?
1900
:
0
;
//
var
y
=
0
;
let
util
=
{
let
util
=
{
...
@@ -489,6 +490,22 @@ util.Colors.prototype.getHslArray= function() {
...
@@ -489,6 +490,22 @@ util.Colors.prototype.getHslArray= function() {
}
}
return
HSL
;
return
HSL
;
};
};
util
.
scrollToBottom
=
function
(
scrollDom
){
if
(
scrollDom
.
scrollTop
>
y
){
// console.log('向下')
let
offsetHeight
=
scrollDom
.
offsetHeight
;
let
scrollHeight
=
scrollDom
.
scrollHeight
;
let
scrollTop
=
scrollDom
.
scrollTop
;
if
(
scrollHeight
-
offsetHeight
-
scrollTop
<=
0
){
y
=
0
;
return
true
;
}
}
else
if
(
scrollDom
.
scrollTop
<
y
){
// console.log('向上')
}
y
=
scrollDom
.
scrollTop
;
}
// util.pageReturn = function(){
// util.pageReturn = function(){
// /*微信自带返回按钮,不刷新,刷新页面start*/
// /*微信自带返回按钮,不刷新,刷新页面start*/
// if (util.isIos()) {
// if (util.isIos()) {
...
...
src/router/health.js
View file @
661b6456
...
@@ -36,7 +36,7 @@ module.exports = [
...
@@ -36,7 +36,7 @@ module.exports = [
}
}
},
},
{
{
path
:
'statistics/list'
,
path
:
'statistics/list
:type
'
,
name
:
'healthCardStatisticsList'
,
name
:
'healthCardStatisticsList'
,
component
:()
=>
import
(
'@/view/healthCard/statistics/list.vue'
),
component
:()
=>
import
(
'@/view/healthCard/statistics/list.vue'
),
meta
:{
meta
:{
...
...
src/store/index.js
View file @
661b6456
...
@@ -6,6 +6,7 @@ import searchOrder from './modules/tiip/searchOrder';
...
@@ -6,6 +6,7 @@ import searchOrder from './modules/tiip/searchOrder';
import
profitAnalysis
from
'./modules/tiip/profitAnalysis'
;
import
profitAnalysis
from
'./modules/tiip/profitAnalysis'
;
import
kanban
from
'./modules/tiip/kanban'
;
import
kanban
from
'./modules/tiip/kanban'
;
import
checkProgress
from
'./modules/tiip/checkProgress'
;
import
checkProgress
from
'./modules/tiip/checkProgress'
;
import
healthStatistics
from
'./modules/health/statistics'
;
Vue
.
use
(
Vuex
);
Vue
.
use
(
Vuex
);
...
@@ -22,7 +23,8 @@ const store = new Vuex.Store({
...
@@ -22,7 +23,8 @@ const store = new Vuex.Store({
searchOrder
,
searchOrder
,
profitAnalysis
,
profitAnalysis
,
kanban
,
kanban
,
checkProgress
checkProgress
,
healthStatistics
}
}
});
});
...
...
src/store/modules/health/statistics.js
0 → 100644
View file @
661b6456
import
Util
from
'@/libs/util'
;
import
Vue
from
'vue'
;
const
obj
=
{
state
:
{
hdr
:{},
dtl
:{}
},
mutations
:
{
saveHealthStatisticsHdr
(
state
,
data
){
state
.
hdr
=
data
;
},
saveHealthStatisticsDtl
(
state
,
data
){
state
.
dtl
=
data
;
},
},
actions
:
{
saveHealthStatisticsHdr
({
commit
},
data
){
commit
(
'saveHealthStatisticsHdr'
,
data
);
},
saveHealthStatisticsDtl
({
commit
},
data
){
commit
(
'saveHealthStatisticsDtl'
,
data
);
},
}
};
export
default
obj
;
src/view/healthCard/statistics/chart.vue
View file @
661b6456
This diff is collapsed.
Click to expand it.
src/view/healthCard/statistics/index.vue
View file @
661b6456
...
@@ -80,7 +80,7 @@
...
@@ -80,7 +80,7 @@
<
template
>
<
template
>
<div
id=
"healthCardStatisticsIndex"
>
<div
id=
"healthCardStatisticsIndex"
>
<div
class=
"items"
v-for=
"(item,index) in list"
:key=
"index"
>
<div
class=
"items"
v-for=
"(item,index) in list"
:key=
"index"
>
<div
class=
"HEAD"
>
<div
class=
"HEAD"
@
click=
"routerToChart(item)"
>
<div
class=
"left"
>
<div
class=
"left"
>
<span>
{{
item
.
iAllJoin
}}
/
{{
item
.
iAll
}}
</span>
<span>
{{
item
.
iAllJoin
}}
/
{{
item
.
iAll
}}
</span>
</div>
</div>
...
@@ -145,6 +145,10 @@ export default {
...
@@ -145,6 +145,10 @@ export default {
if
(
res
&&
res
.
length
>
0
)
{
if
(
res
&&
res
.
length
>
0
)
{
this
.
list
=
res
;
this
.
list
=
res
;
}
}
},
routerToChart
(
item
){
this
.
$store
.
dispatch
(
'saveHealthStatisticsHdr'
,
item
);
this
.
$router
.
push
({
name
:
'healthCardStatisticsChart'
});
}
}
}
}
}
}
...
...
src/view/healthCard/statistics/list.vue
View file @
661b6456
...
@@ -51,6 +51,15 @@
...
@@ -51,6 +51,15 @@
}
}
}
}
.img{
width:100%;
display: flex;
justify-content: center;
img{
width:100%;
height:300px;
}
}
}
}
</
style
>
</
style
>
...
@@ -58,18 +67,21 @@
...
@@ -58,18 +67,21 @@
<div
id=
"healthCardStatisticsList"
>
<div
id=
"healthCardStatisticsList"
>
<div
class=
"CONTENT"
>
<div
class=
"CONTENT"
>
<tab
v-model=
"activeTab"
prevent-default
@
on-before-index-change=
"switchTabItem"
bar-active-color=
"#4572d7"
active-color=
"#4572d7"
default-color=
"#8a8a8a"
>
<tab
v-model=
"activeTab"
prevent-default
@
on-before-index-change=
"switchTabItem"
bar-active-color=
"#4572d7"
active-color=
"#4572d7"
default-color=
"#8a8a8a"
>
<tab-item
:selected=
"activeTab == 0"
>
已填写(
229
)
</tab-item>
<tab-item
:selected=
"activeTab == 0"
>
已填写(
{{
list1
.
length
}}
)
</tab-item>
<tab-item
:selected=
"activeTab == 1"
>
未填写(
53
)
</tab-item>
<tab-item
:selected=
"activeTab == 1"
>
未填写(
{{
list2
.
length
}}
)
</tab-item>
</tab>
</tab>
<div
class=
"activeTab2"
>
<div
class=
"activeTab2"
>
<div
class=
"items"
v-for=
"(item,index) in
[1,2,3,4,5,5,5,5,5,5,5,5,5]
"
:key=
"index"
>
<div
class=
"items"
v-for=
"(item,index) in
(activeTab == 0 ? list1 : list2)
"
:key=
"index"
>
<div
class=
"avatar"
>
<div
class=
"avatar"
>
<img
src=
""
alt=
""
>
<img
src=
""
alt=
""
>
<span>
张
</span>
<span>
{{
item
.
sEmploeeName
[
0
]
}}
</span>
</div>
</div>
<div
class=
"item"
>
<div
class=
"item"
>
<div
class=
"name"
>
张锡奇
</div>
<div
class=
"name"
>
{{
item
.
sEmploeeName
}}
</div>
</div>
</div>
</div>
<div
class=
"img"
v-if=
"(activeTab == 0 ? list1 : list2).length
<
=
0
"
>
<img
src=
"@/assets/noData.jpg"
class=
"_img"
alt=
""
>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -86,6 +98,12 @@ export default {
...
@@ -86,6 +98,12 @@ export default {
data
()
{
data
()
{
return
{
return
{
activeTab
:
0
,
activeTab
:
0
,
page1
:
1
,
per_page1
:
20
,
page2
:
1
,
per_page2
:
20
,
list1
:[],
list2
:[]
}
}
},
},
components
:{
components
:{
...
@@ -93,7 +111,7 @@ export default {
...
@@ -93,7 +111,7 @@ export default {
},
},
computed
:{
computed
:{
...
mapState
({
...
mapState
({
hdr
:
state
=>
state
.
healthStatistics
.
hdr
})
})
},
},
async
mounted
(){
async
mounted
(){
...
@@ -101,11 +119,83 @@ export default {
...
@@ -101,11 +119,83 @@ export default {
},
},
async
activated
(){
async
activated
(){
window
.
d
=
this
;
window
.
d
=
this
;
this
.
activeTab
=
this
.
$route
.
params
.
type
;
this
.
clean
();
await
this
.
getList1
();
await
this
.
getList2
();
},
},
methods
:{
methods
:{
clean
(){
this
.
page1
=
1
;
this
.
per_page1
=
20
;
this
.
list1
=
[];
this
.
page2
=
1
;
this
.
per_page2
=
20
;
this
.
list2
=
[];
},
switchTabItem
(
index
){
switchTabItem
(
index
){
this
.
activeTab
=
index
;
this
.
activeTab
=
index
;
if
(
this
.
activeTab
==
0
){
this
.
getList1
();
}
else
{
this
.
activeTab
==
1
}{
this
.
getList2
();
}
},
async
getList1
(){
if
(
this
.
per_page1
<
20
){
this
.
$vux
.
toast
.
text
(
'已加载全部数据!'
,
'middle'
)
return
false
;
}
let
res
=
await
this
.
request
(
'getStatisticalDetails'
,{
data
:[
{
key
:
'url'
,
value
:
'HealthLog'
},
{
key
:
'dDate'
,
value
:
this
.
hdr
.
dDate
},
{
key
:
'iCompanyId'
,
value
:
'1'
},
{
key
:
'iType'
,
value
:
'1'
}
],
params
:{
page
:
this
.
page1
,
per_page
:
this
.
per_page1
},
},
'加载中'
,{});
if
(
res
&&
res
.
length
>
0
){
this
.
list1
=
this
.
list1
.
concat
(
res
);
this
.
page1
++
;
this
.
per_page1
=
res
.
length
;
}
},
async
getList2
(){
if
(
this
.
per_page2
<
20
){
this
.
$vux
.
toast
.
text
(
'已加载全部数据!'
,
'middle'
)
return
false
;
}
let
res
=
await
this
.
request
(
'getStatisticalDetails'
,{
data
:[
{
key
:
'url'
,
value
:
'HealthLog'
},
{
key
:
'dDate'
,
value
:
this
.
hdr
.
dDate
},
{
key
:
'iCompanyId'
,
value
:
'1'
},
{
key
:
'iType'
,
value
:
'0'
}
],
params
:{
page
:
this
.
page2
,
per_page
:
this
.
per_page2
},
},
'加载中'
,{});
if
(
res
&&
res
.
length
>
0
){
this
.
list2
=
this
.
list2
.
concat
(
res
);
this
.
page2
++
;
this
.
per_page2
=
res
.
length
;
}
},
scrollToBottom
(){
let
scrollDom
=
this
.
$refs
[
'scrollDom'
];
if
(
Util
.
scrollToBottom
(
scrollDom
)){
if
(
this
.
activeTab
==
0
){
this
.
getList1
();
}
else
{
this
.
activeTab
==
1
}{
this
.
getList2
();
}
}
}
}
}
}
}
}
...
...
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