Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bms-vue-obear
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
daywrite
bms-vue-obear
Commits
126c5a9c
Commit
126c5a9c
authored
Jun 09, 2019
by
daywrite
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售数据
parent
6480c2c3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
326 additions
and
85 deletions
+326
-85
preSales.js
src/components/analysis/pre-sales/preSales.js
+36
-44
preSalesHome.vue
src/components/analysis/pre-sales/preSalesHome.vue
+8
-41
searchForm.vue
src/components/analysis/pre-sales/searchForm.vue
+282
-0
No files found.
src/components/analysis/pre-sales/preSales.js
View file @
126c5a9c
export
default
{
methods
:
{
/* eslint-disable */
c
()
{
var
chart
=
Highcharts
.
chart
(
'key'
,
{
c
(
id
,
data
)
{
let
_data
=
data
.
values
Highcharts
.
chart
(
id
,
{
chart
:
{
type
:
'column'
},
title
:
{
text
:
'堆叠柱形图'
text
:
''
},
subtitle
:
{
text
:
''
},
xAxis
:
{
categories
:
[
'苹果'
,
'橘子'
,
'梨'
,
'葡萄'
,
'香蕉'
]
type
:
'category'
,
gridLineWidth
:
1
,
labels
:
{
useHTML
:
true
}
},
yAxis
:
{
min
:
0
,
title
:
{
text
:
'
水果消费总量
'
text
:
''
},
stackLabels
:
{
// 堆叠数据标签
enabled
:
true
,
style
:
{
fontWeight
:
'bold'
,
color
:
(
Highcharts
.
theme
&&
Highcharts
.
theme
.
textColor
)
||
'gray'
}
}
gridLineWidth
:
1
,
labels
:
{
formatter
:
function
()
{
return
(
this
.
value
/
10000
)
+
'万'
},
legend
:
{
align
:
'right'
,
x
:
-
30
,
verticalAlign
:
'top'
,
y
:
25
,
floating
:
true
,
backgroundColor
:
(
Highcharts
.
theme
&&
Highcharts
.
theme
.
background2
)
||
'white'
,
borderColor
:
'#CCC'
,
borderWidth
:
1
,
shadow
:
false
},
tooltip
:
{
formatter
:
function
()
{
return
'<b>'
+
this
.
x
+
'</b><br/>'
+
this
.
series
.
name
+
': '
+
this
.
y
+
'<br/>'
+
'总量: '
+
this
.
point
.
stackTotal
;
}
plotLines
:[{
color
:
'red'
,
dashStyle
:
'solid'
,
value
:
_data
.
average
,
label
:
_data
.
average
+
''
,
width
:
2
}]
},
legend
:
{
enabled
:
false
},
plotOptions
:
{
column
:
{
stacking
:
'normal'
,
series
:
{
borderWidth
:
0
,
dataLabels
:
{
enabled
:
true
,
color
:
(
Highcharts
.
theme
&&
Highcharts
.
theme
.
dataLabelsColor
)
||
'white'
,
style
:
{
// 如果不需要数据标签阴影,可以将 textOutline 设置为 'none'
textOutline
:
'1px 1px black'
}
format
:
'{point.y}'
}
}
},
tooltip
:
{
headerFormat
:
'<span style="font-size:12px">业绩分析</span><br>'
,
pointFormat
:
'<span>{point.name}</span>: <b>{point.y}</b><br/>'
},
series
:
[{
name
:
'小张'
,
data
:
[
5
,
3
,
4
,
7
,
2
]
},
{
name
:
'小彭'
,
data
:
[
2
,
2
,
3
,
2
,
1
]
},
{
name
:
'小潘'
,
data
:
[
3
,
4
,
4
,
2
,
5
]
colorByPoint
:
true
,
data
:
_data
.
summary
}]
});
}
...
...
src/components/analysis/pre-sales/preSalesHome.vue
View file @
126c5a9c
<
template
>
<section>
<div
class=
"content"
>
<search-header
ref=
"searchHeader"
:title=
"'销售数据'"
@
update:headerClear=
"() => searchClear()"
>
</search-header>
<time-search-form
ref=
"timeSearchForm"
formSearchKey=
"projectSearch"
@
update:list=
"search => timeSearchForm(search)"
>
</time-search-form>
<search-form
ref=
"clientForm"
:filter=
"filter"
@
update:
clientList=
"form =>
{ updateForm(form) }
">
</search-form>
@
update:
form=
"search => timeSearchForm(search)
"
>
</
time-
search-form>
<div
class=
"page-body-content"
>
<div
class=
"mb10"
>
<singleRadioTool
...
...
@@ -32,12 +23,8 @@
</el-col>
</el-row>
<div
class=
"header-title header-flex"
style=
"height: 100%;"
>
<!--
<div
v-for=
"item in chartTypeArray"
>
<span
class=
"title-two"
>
{{
item
.
name
}}
</span>
<div
:id=
"item.key"
style=
"height:400px;"
></div>
</div>
-->
<div>
<span
class=
"title-two"
>
123
</span>
<span
class=
"title-two"
>
售前工程师统计信息
</span>
<div
id=
"key"
style=
"height:400px;"
></div>
</div>
</div>
...
...
@@ -51,7 +38,7 @@
import
SearchHeader
from
'../../common/searchHeader'
import
SearchForm
from
'../../common/SearchForm'
import
countArr
from
'../analysis/countArr'
import
TimeSearchForm
from
'.
./analysis
/searchForm'
import
TimeSearchForm
from
'./searchForm'
import
singleRadioTool
from
'../../common/singleRadioTool'
import
preSales
from
'./preSales.js'
import
{
...
...
@@ -91,14 +78,13 @@ export default {
methods
:
{
init
()
{
this
.
getFilter
()
this
.
getSalesChart
()
},
getSalesChart
()
{
requestAPI
(
api
.
getPreSalesChart
,
{}
)
getSalesChart
(
params
)
{
requestAPI
(
api
.
getPreSalesChart
,
params
)
.
then
(
res
=>
{
this
.
result
.
countList
=
res
.
counts
this
.
c
()
this
.
c
(
'key'
,
res
.
chars
.
individualJournalContributions
)
})
},
...
...
@@ -106,12 +92,6 @@ export default {
getFilter
()
{
requestAPI
(
api
.
getFilterSalesChart
).
then
(
res
=>
{
this
.
filter
=
res
// let _inx = res.findIndex(item => item.key === 'CaseSearch[case_status]')
// let _newRes = res.splice(_inx, 1)
// this.filter = res
// let _navArray = _newRes[0].value
// _navArray.unshift({key: 'all', name: '全部'})
// this.navArray = _navArray
})
},
...
...
@@ -127,22 +107,9 @@ export default {
searchClear
()
{
},
// 5.1查询条件
updateForm
(
search
)
{
let
ret
=
this
.
setParams
({
...
this
.
form
,
page
:
this
.
pagenation
.
thispage
},
search
)
this
.
getList
(
ret
)
},
// 5.3 TimeSearchForm
timeSearchForm
(
search
)
{
let
ret
=
this
.
setParams
({
...
this
.
form
,
page
:
this
.
pagenation
.
thispage
},
search
)
this
.
getList
(
ret
)
this
.
getSalesChart
(
search
)
}
}
...
...
src/components/analysis/pre-sales/searchForm.vue
0 → 100644
View file @
126c5a9c
<
template
>
<section
class=
"analysis-client"
>
<el-row
:gutter=
"10"
class=
"header-title"
>
<el-col
:span=
"4"
>
<h2>
销售数据
</h2>
</el-col>
<el-col
:span=
"20"
>
<el-form
ref=
"form"
size=
"mini"
>
<el-col
:span=
"6"
:xs=
"24"
>
<el-form-item
label=
" "
label-width=
"42"
>
<el-radio-group
v-model=
"form.period"
size=
"mini"
@
change=
"periodChangeEvent"
>
<el-radio-button
label=
"thisweek"
>
本周
</el-radio-button>
<el-radio-button
label=
"lastweek"
>
上周
</el-radio-button>
<el-radio-button
label=
"thismonth"
>
本月
</el-radio-button>
<el-radio-button
label=
"lastmonth"
>
上月
</el-radio-button>
</el-radio-group>
<el-button-group>
<el-button
type=
"primary"
size=
"mini"
:class=
"setYearClass"
@
click=
"triggerYear"
>
{{
setYearText
}}
</el-button>
<el-dropdown
size=
"small"
placement=
"bottom-start"
@
command=
"handleCommand"
trigger=
"click"
>
<el-button
type=
"primary"
size=
"mini"
icon=
"el-icon-caret-bottom"
class=
"trigger-year yearClass"
></el-button>
<el-dropdown-menu
slot=
"dropdown"
>
<el-dropdown-item
:command=
"year.value"
v-for=
"(year, key) in perYears"
:key=
"key"
>
{{
year
.
name
}}
</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-button-group>
</el-form-item>
</el-col>
</el-form>
<el-form
ref=
"clientTimeRange"
size=
"mini"
>
<el-col
:span=
"10"
:offset=
"0"
:xs=
"
{span: 24, offset: 0}" class="form-content-time-range">
<el-form-item
label-width=
"0"
>
<el-date-picker
size=
"mini"
v-model=
"form.from"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
"开始时间"
>
</el-date-picker>
至
<el-date-picker
size=
"mini"
v-model=
"form.to"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
"结束时间"
>
</el-date-picker>
<el-button
type=
"primary"
size=
"mini"
class=
"head-date-button"
@
click=
"setSearchTime"
>
确定
</el-button>
</el-form-item>
</el-col>
</el-form>
<el-form
ref=
"clientForm"
size=
"mini"
label-width=
"0"
label-position=
"top"
>
<el-col
:span=
"4"
>
<el-form-item>
<el-select
v-model=
"form.dataUserId"
>
<el-option
v-for=
"sItem in userArr"
:key=
"sItem.key"
:label=
"sItem.name"
:value=
"sItem.key"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-form>
</el-col>
</el-row>
</section>
</
template
>
<
script
>
let
checkDate
=
()
=>
{
let
setTimeFormat
=
(
date
)
=>
{
let
myYear
=
date
.
getFullYear
()
let
myMonth
=
date
.
getMonth
()
+
1
let
myWeekday
=
date
.
getDate
()
if
(
myMonth
<
10
)
{
myMonth
=
'0'
+
myMonth
}
if
(
myWeekday
<
10
)
{
myWeekday
=
'0'
+
myWeekday
}
return
(
myYear
+
'-'
+
myMonth
+
'-'
+
myWeekday
)
}
let
now
=
new
Date
()
// 当前日期
let
nowDayOfWeek
=
now
.
getDay
()
// 今天本周的第几天
let
nowDay
=
now
.
getDate
()
// 当前日
let
nowMonth
=
now
.
getMonth
()
// 当前月
let
nowYear
=
now
.
getFullYear
()
// 当前年
return
{
currentStartDate
:
nowYear
+
'-1'
+
'-1'
,
currentEndDate
:
nowYear
+
'-12'
+
'-31'
,
startWeek
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
nowDay
-
nowDayOfWeek
)),
endWeek
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
nowDay
+
(
6
-
nowDayOfWeek
))),
beforeStartWeek
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
nowDay
-
nowDayOfWeek
-
7
)),
beforeEndWeek
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
nowDay
-
nowDayOfWeek
-
1
)),
startMonth
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
1
)),
endMonth
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
+
1
,
0
)),
beforeStartMonth
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
-
1
,
1
)),
beforeEndMonth
:
setTimeFormat
(
new
Date
(
nowYear
,
nowMonth
,
0
))
}
}
const
perYears
=
[
{
name
:
'本财年'
,
value
:
'currentfascalyear'
},
{
name
:
'2017年'
,
value
:
'year2017'
},
{
name
:
'2018年'
,
value
:
'year2018'
},
{
name
:
'2019年'
,
value
:
'year2019'
}
]
export
default
{
name
:
'timeSearchForm'
,
props
:
[
'filter'
],
data
()
{
return
{
form
:
{
from
:
checkDate
().
currentStartDate
,
to
:
checkDate
().
currentEndDate
,
period
:
''
,
dataUserId
:
''
},
perYears
,
checkYear
:
'currentfascalyear'
,
checkDate
:
checkDate
()
}
},
created
()
{
},
computed
:
{
userArr
()
{
let
_ret
=
this
.
filter
if
(
_ret
&&
_ret
.
length
!==
0
)
{
let
_userArr
=
_ret
.
filter
.
find
(
item
=>
item
.
key
===
'dataUserId'
).
value
this
.
form
.
dataUserId
=
_userArr
[
0
].
key
return
_userArr
}
else
{
return
[]
}
},
setYearText
()
{
let
year
=
this
.
perYears
.
find
(
i
=>
i
.
value
===
this
.
checkYear
)
if
(
year
)
{
return
year
.
name
}
else
{
return
'本财年'
}
},
setYearClass
()
{
if
(
this
.
form
.
period
===
''
&&
this
.
checkYear
!==
''
)
{
return
'check-year'
}
else
{
return
''
}
}
},
methods
:
{
triggerYear
()
{
if
(
this
.
checkYear
===
''
)
{
this
.
checkYear
=
'currentfascalyear'
this
.
form
.
period
=
''
this
.
setFullYear
(
new
Date
().
getFullYear
())
let
_val
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
form
))
if
(
this
.
checkYear
!==
''
)
{
_val
.
period
=
this
.
checkYear
}
this
.
$emit
(
'update:form'
,
_val
)
}
},
handleCommand
(
command
)
{
this
.
checkYear
=
command
this
.
form
.
period
=
''
if
(
command
===
'currentfascalyear'
)
{
this
.
setFullYear
(
new
Date
().
getFullYear
())
}
else
{
this
.
setFullYear
(
command
.
replace
(
/
[^
0-9
]
/ig
,
''
))
}
let
_val
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
form
))
if
(
this
.
checkYear
!==
''
)
{
_val
.
period
=
this
.
checkYear
}
this
.
$emit
(
'update:form'
,
_val
)
},
setFullYear
(
year
)
{
let
d
=
new
Date
()
d
.
setFullYear
(
year
)
this
.
form
.
from
=
d
.
getFullYear
()
+
'-01-01'
this
.
form
.
to
=
d
.
getFullYear
()
+
'-12-31'
},
periodChangeEvent
(
val
)
{
this
.
checkYear
=
''
if
(
val
===
'thisweek'
)
{
this
.
form
.
from
=
this
.
checkDate
.
startWeek
this
.
form
.
to
=
this
.
checkDate
.
endWeek
}
else
if
(
val
===
'lastweek'
)
{
this
.
form
.
from
=
this
.
checkDate
.
beforeStartWeek
this
.
form
.
to
=
this
.
checkDate
.
beforeEndWeek
}
else
if
(
val
===
'thismonth'
)
{
this
.
form
.
from
=
this
.
checkDate
.
startMonth
this
.
form
.
to
=
this
.
checkDate
.
endMonth
}
else
if
(
val
===
'lastmonth'
)
{
this
.
form
.
from
=
this
.
checkDate
.
beforeStartMonth
this
.
form
.
to
=
this
.
checkDate
.
beforeEndMonth
}
},
setSearchTime
()
{}
},
watch
:
{
'form'
:
{
handler
(
val
)
{
let
_val
=
JSON
.
parse
(
JSON
.
stringify
(
val
))
if
(
this
.
checkYear
!==
''
)
{
_val
.
period
=
this
.
checkYear
}
this
.
$emit
(
'update:form'
,
_val
)
},
deep
:
true
,
immediate
:
true
}
}
}
</
script
>
<
style
scoped
>
.form-content-time-top
{
background
:
#FFF
;
}
.form-content-time-top
.el-form-item
{
margin
:
7px
0
9px
;
}
.form-content-time-top
.el-col
{
padding
:
0
15px
;
}
.el-dropdown
{
top
:
-1px
;
}
.analysis-client
.el-button-group
>
.el-button
{
color
:
#333
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
}
.analysis-client
.el-dropdown
>
.el-button
{
padding-left
:
6px
;
padding-right
:
6px
;
border-left-width
:
1px
;
border-left-color
:
#ccc
;
}
.analysis-client
.trigger-year
{
color
:
#333
;
background-color
:
#fff
;
border-color
:
#ccc
;
border-right
:
1px
solid
#ccc
!important
;
}
.analysis-client
.head-date-button
{
color
:
#fff
;
background-color
:
#333744
;
border-color
:
#282b35
;
}
.analysis-client
.check-year
{
color
:
#fff
!important
;
background-color
:
#17a2b8
!important
;
border-color
:
#17a2b8
!important
;
}
</
style
>
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