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
051d6b8e
Commit
051d6b8e
authored
Jun 19, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
91817e3d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
970 additions
and
6 deletions
+970
-6
main.js
src/main.js
+3
-3
router.js
src/router.js
+9
-0
AccountPlacementStatistics.vue
src/views/workstatistics/AccountPlacementStatistics.vue
+954
-0
DrainageSummaryStatistics.vue
src/views/workstatistics/DrainageSummaryStatistics.vue
+4
-3
No files found.
src/main.js
View file @
051d6b8e
...
...
@@ -264,10 +264,10 @@ Vue.prototype.UploadLocalSystem = function (params, fileObj, successCall) {
});
}
// 导入引流汇总
Vue
.
prototype
.
UploadFlowStat
=
function
(
params
,
fileObj
,
successCall
)
{
// 导入引流汇总
、账户投放统计
Vue
.
prototype
.
UploadFlowStat
=
function
(
params
Url
,
params
,
fileObj
,
successCall
)
{
let
that
=
this
;
let
url
=
that
.
domainManager
().
PostUrl
+
"/api/Upload/UploadFlowStat"
;
let
url
=
that
.
domainManager
().
PostUrl
+
paramsUrl
;
let
formData
=
new
FormData
()
if
(
params
)
{
formData
.
append
(
"params"
,
JSON
.
stringify
(
params
));
...
...
src/router.js
View file @
051d6b8e
...
...
@@ -413,6 +413,15 @@ export default new Router({
title
:
"引流汇总统计"
}
},
{
path
:
"/AccountPlacementStatistics"
,
name
:
"AccountPlacementStatistics"
,
component
:
()
=>
import
(
'./views/workstatistics/AccountPlacementStatistics'
),
meta
:
{
title
:
"账户投放统计"
}
},
{
path
:
"/DrainageAccount"
,
name
:
"DrainageAccount"
,
...
...
src/views/workstatistics/AccountPlacementStatistics.vue
0 → 100644
View file @
051d6b8e
This diff is collapsed.
Click to expand it.
src/views/workstatistics/DrainageSummaryStatistics.vue
View file @
051d6b8e
...
...
@@ -90,7 +90,7 @@
</div>
</div>
<div
style=
"padding: 0 0;background: #ffffff;"
>
<el-table
<
!--
<
el-table
v-if=
"msg.PlatformType==1"
:data=
"dataList"
style=
"width: 100%"
...
...
@@ -239,7 +239,7 @@
<div
style=
"width: 0px;"
></div>
</div>
</
template
>
</el-table>
</el-table>
-->
<el-table
v-if=
"msg.PlatformType==2"
:data=
"dataList"
...
...
@@ -917,6 +917,7 @@
},
mounted
()
{
let
userInfo
=
this
.
getLocalStorage
();
console
.
log
(
userInfo
.
PostName
)
if
(
userInfo
.
PostName
==
'总经理'
||
userInfo
.
PostName
==
'副总经理'
||
userInfo
.
PostName
==
'技术开发'
||
...
...
@@ -1136,7 +1137,7 @@
};
this
.
loadingB
=
true
;
this
.
loadingText
=
"正在上传文件,请稍后..."
;
this
.
UploadFlowStat
(
params
,
file
.
file
,
(
res
)
=>
{
this
.
UploadFlowStat
(
'/api/Upload/UploadFlowStat'
,
params
,
file
.
file
,
(
res
)
=>
{
this
.
loadingB
=
false
;
this
.
loadingText
=
""
;
if
(
res
.
data
.
resultCode
==
1
)
{
...
...
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