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
6480c2c3
Commit
6480c2c3
authored
Jun 09, 2019
by
daywrite
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售任务
parent
3eede311
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
141 additions
and
38 deletions
+141
-38
analysis.js
src/apis/analysis.js
+3
-0
salesGoalHome.vue
src/components/analysis/sales-goal/salesGoalHome.vue
+7
-35
searchForm.vue
src/components/analysis/sales-goal/searchForm.vue
+131
-0
searchForm.vue
src/components/analysis/sales/searchForm.vue
+0
-3
No files found.
src/apis/analysis.js
View file @
6480c2c3
...
...
@@ -19,5 +19,8 @@ export default {
},
getImplement
:
{
url
:
'/vue/analysis/get-implement'
},
getFilterSalesGoal
:
{
url
:
'/vue/analysis/get-filter-sales-goal'
}
}
src/components/analysis/sales-goal/salesGoalHome.vue
View file @
6480c2c3
<
template
>
<section>
<div
class=
"content"
>
<search-header
ref=
"searchHeader"
:title=
"'销售数据'"
@
update:headerClear=
"() => searchClear()"
>
</search-header>
<time-search-form
ref=
"timeSearchForm"
:filter=
filter
formSearchKey=
"projectSearch"
@
update:
list
=
"search => timeSearchForm(search)"
>
@
update:
form
=
"search => timeSearchForm(search)"
>
</time-search-form>
<search-form
ref=
"clientForm"
:filter=
"filter"
@
update:clientList=
"form =>
{ updateForm(form) }">
</search-form>
<div
class=
"page-body-content"
>
<div
class=
"mb10"
>
<singleRadioTool
...
...
@@ -41,7 +32,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
salesGoal
from
'./salesGoal.js'
import
{
...
...
@@ -85,9 +76,9 @@ export default {
this
.
getSalesChart
()
},
getSalesChart
()
{
getSalesChart
(
params
)
{
let
t
=
this
requestAPI
(
api
.
getSalesGoal
,
{}
)
requestAPI
(
api
.
getSalesGoal
,
params
)
.
then
(
res
=>
{
res
.
data
.
list
.
forEach
(
item
=>
{
this
.
chartTypeArray
.
push
({
...
...
@@ -105,14 +96,8 @@ export default {
// 1.查询条件
getFilter
()
{
requestAPI
(
api
.
getFilterSales
Chart
).
then
(
res
=>
{
requestAPI
(
api
.
getFilterSales
Goal
).
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
})
},
...
...
@@ -128,22 +113,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/sales-goal/searchForm.vue
0 → 100644
View file @
6480c2c3
<
template
>
<section
class=
"analysis-client"
>
<el-row
:gutter=
"10"
class=
"header-title"
>
<el-col
:span=
"14"
>
<h2>
销售任务
</h2>
</el-col>
<el-col
:span=
"10"
>
<el-form
ref=
"clientForm"
size=
"mini"
label-width=
"0"
label-position=
"top"
>
<el-col
:span=
"12"
>
<el-form-item>
<el-select
v-model=
"form.year"
style=
"width:100%"
>
<el-option
v-for=
"sItem in yearArr"
:key=
"sItem.key"
:label=
"sItem.name"
:value=
"sItem.key"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item>
<el-select
v-model=
"form.dataUserId"
style=
"width:100%"
>
<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
>
export
default
{
name
:
'timeSearchForm'
,
props
:
[
'filter'
],
data
()
{
return
{
form
:
{
dataUserId
:
''
}
}
},
created
()
{
},
computed
:
{
yearArr
()
{
let
_ret
=
this
.
filter
if
(
_ret
&&
_ret
.
length
!==
0
)
{
let
_userArr
=
_ret
.
find
(
item
=>
item
.
key
===
'year'
).
value
this
.
form
.
year
=
_userArr
[
0
].
key
return
_userArr
}
else
{
return
[]
}
},
userArr
()
{
let
_ret
=
this
.
filter
if
(
_ret
&&
_ret
.
length
!==
0
)
{
let
_userArr
=
_ret
.
find
(
item
=>
item
.
key
===
'dataUserId'
).
value
this
.
form
.
dataUserId
=
_userArr
[
0
].
key
return
_userArr
}
else
{
return
[]
}
}
},
methods
:
{
},
watch
:
{
'form'
:
{
handler
(
val
)
{
let
_val
=
JSON
.
parse
(
JSON
.
stringify
(
val
))
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
>
src/components/analysis/sales/searchForm.vue
View file @
6480c2c3
...
...
@@ -203,9 +203,6 @@ export default {
'form'
:
{
handler
(
val
)
{
let
_val
=
JSON
.
parse
(
JSON
.
stringify
(
val
))
if
(
this
.
checkYear
!==
''
)
{
_val
.
period
=
this
.
checkYear
}
this
.
$emit
(
'update:form'
,
_val
)
},
deep
:
true
,
...
...
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