Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
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
华国豪
CRM
Commits
7f5a851c
Commit
7f5a851c
authored
Sep 06, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
51bee13d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
DrainageAccount.vue
src/views/workstatistics/DrainageAccount.vue
+6
-3
DrainageSummaryStatistics.vue
src/views/workstatistics/DrainageSummaryStatistics.vue
+9
-4
No files found.
src/views/workstatistics/DrainageAccount.vue
View file @
7f5a851c
...
...
@@ -64,7 +64,7 @@
background
@
current-change=
"handleCurrentChange"
:page-sizes=
"[10,20,30,40,50,60]"
:page-size=
"msg.
p
ageSize"
:page-size=
"msg.
P
ageSize"
layout=
"total, sizes, prev, pager, next"
@
size-change=
"handleSizeChange"
:total=
"total"
>
...
...
@@ -335,9 +335,12 @@
}
);
},
init
()
{
init
(
type
)
{
if
(
this
.
loading
)
return
;
this
.
loading
=
true
;
if
(
type
){
this
.
msg
.
PageIndex
=
1
}
this
.
apipost
(
"/api/IntroduceFlowStat/GetFlowAccountPageList"
,
this
.
msg
,
...
...
@@ -353,7 +356,7 @@
},
handleSizeChange
(
val
)
{
this
.
msg
.
PageSize
=
val
this
.
init
();
this
.
init
(
1
);
},
handleCurrentChange
(
val
)
{
this
.
msg
.
PageIndex
=
val
;
...
...
src/views/workstatistics/DrainageSummaryStatistics.vue
View file @
7f5a851c
...
...
@@ -351,7 +351,11 @@
class=
"add-box add-box1 importDialogBox"
width=
"450px"
v-loading=
"loading"
:element-loading-text=
"loadingText"
>
<div
class=
"add-tit"
slot=
"title"
>
<p><span></span>
导入引流
</p>
<p><span></span>
导入引流
<a
style=
"margin-left: 20px;font-weight: 100;text-decoration: none;"
>
选择历史期数或者新建期数
</a>
</p>
<span
icon=
"el-icon-close"
></span>
</div>
<div
class=
"form-box"
>
...
...
@@ -368,7 +372,7 @@
</el-form-item>
</div>
</el-col>
<el-col
:span=
"8"
>
<el-col
:span=
"8"
v-if=
"!form.PeriodsName"
>
<div
class=
"MyEditForm-item label-pad-left"
>
<el-form-item
label=
"期数"
prop=
"PeriodsId"
:rules=
"[{ required: form.PeriodsName==''?true:false, message: '请选择期数' }]"
>
<el-select
v-model=
"form.PeriodsId"
placeholder=
"选择期数"
clearable
@
change=
"form.PeriodsId?form.PeriodsName='':''"
>
...
...
@@ -378,7 +382,7 @@
</el-form-item>
</div>
</el-col>
<el-col
:span=
"8"
>
<el-col
:span=
"8"
v-if=
"!form.PeriodsId"
>
<div
class=
"MyEditForm-item"
>
<el-form-item
label=
"期数名称"
prop=
"PeriodsName"
:rules=
"[{ required: form.PeriodsId==''?true:false, message: '输入期数名称新建期数' }]"
>
<el-input
placeholder=
"输入期数名称新建期数"
v-model=
"form.PeriodsName"
clearable
@
change=
"form.PeriodsName?form.PeriodsId='':''"
></el-input>
...
...
@@ -672,7 +676,7 @@
this
.
dialogTableVisible
=
false
this
.
resetForm
(
'form'
)
},
//
上传
引流汇总
//
导入
引流汇总
UploadClue
(
file
)
{
this
.
errText
=
''
if
(
this
.
form
.
PlatformType
==
''
){
...
...
@@ -702,6 +706,7 @@
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
dialogTableVisible
=
false
;
this
.
Success
(
"导入引流成功!"
);
this
.
resetForm
(
'form'
)
this
.
getEnumerate
()
}
else
{
this
.
errText
=
res
.
data
.
message
...
...
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