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
a7225472
Commit
a7225472
authored
Sep 06, 2022
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
f4e43008
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
247 additions
and
103 deletions
+247
-103
main.js
src/main.js
+19
-0
DrainageSummaryStatistics.vue
src/views/workstatistics/DrainageSummaryStatistics.vue
+228
-103
No files found.
src/main.js
View file @
a7225472
...
@@ -236,6 +236,25 @@ Vue.prototype.UploadLocalSystem = function (params, fileObj, successCall) {
...
@@ -236,6 +236,25 @@ Vue.prototype.UploadLocalSystem = function (params, fileObj, successCall) {
});
});
}
}
// 导入引流汇总
Vue
.
prototype
.
UploadFlowStat
=
function
(
params
,
fileObj
,
successCall
)
{
let
that
=
this
;
let
url
=
that
.
domainManager
().
PostUrl
+
"/api/Upload/UploadFlowStat"
;
let
formData
=
new
FormData
()
if
(
params
)
{
formData
.
append
(
"params"
,
JSON
.
stringify
(
params
));
}
formData
.
append
(
'myfile'
,
fileObj
);
co
(
function
*
()
{
that
.
$http
.
post
(
url
,
formData
,
{})
.
then
(
res
=>
{
successCall
(
res
);
})
}).
catch
(
function
(
err
)
{
console
.
log
(
"上传文件出错"
+
err
);
});
}
//新页面打开页面
//新页面打开页面
Vue
.
prototype
.
OpenNewUrl
=
function
(
path
,
queryObj
)
{
Vue
.
prototype
.
OpenNewUrl
=
function
(
path
,
queryObj
)
{
var
newUrl
=
this
.
$router
.
resolve
({
var
newUrl
=
this
.
$router
.
resolve
({
...
...
src/views/workstatistics/DrainageSummaryStatistics.vue
View file @
a7225472
This diff is collapsed.
Click to expand it.
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