Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
300caca3
Commit
300caca3
authored
May 11, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
577ec548
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1203 additions
and
615 deletions
+1203
-615
index.js
src/api/finance/index.js
+13
-0
FinancialDocuments.vue
src/pages/financial/financalDocument/FinancialDocuments.vue
+29
-5
FinancialDocumentsDetail.vue
...s/financial/financalDocument/FinancialDocumentsDetail.vue
+1158
-609
studyjob.vue
src/pages/sale/studyjob.vue
+3
-1
No files found.
src/api/finance/index.js
View file @
300caca3
...
...
@@ -22,6 +22,19 @@ export function getClassNameList(data) {
data
})
}
/**
* 根据 留学就业ids 获取留学就业信息
*
*/
export
function
queryStudyNameList
(
data
)
{
return
request
({
url
:
'/order/GetStudyNameList'
,
method
:
'post'
,
data
})
}
/**
*获取简易报表数据
*/
...
...
src/pages/financial/financalDocument/FinancialDocuments.vue
View file @
300caca3
...
...
@@ -1233,7 +1233,8 @@
getSchoolPage
}
from
'../../../api/school/index'
import
{
getClassNameList
getClassNameList
,
queryStudyNameList
}
from
'../../../api/finance/index'
export
default
{
...
...
@@ -1944,7 +1945,8 @@
this
.
total
=
res
.
data
.
data
.
count
;
this
.
loading
=
false
;
this
.
noData
=
false
;
let
da
=
[]
let
da
=
[];
let
study
=
[];
if
(
this
.
total
==
0
)
{
this
.
DataList
=
[];
this
.
noData
=
true
;
...
...
@@ -1953,12 +1955,16 @@
x
.
modelShow
=
false
;
this
.
checkAllList
.
push
(
x
.
FrID
)
if
(
x
.
TCIDList
.
length
>
0
)
{
da
=
da
.
concat
(
x
.
TCIDList
)
if
(
x
.
OrderSource
==
17
)
{
da
=
da
.
concat
(
x
.
TCIDList
)
}
else
if
(
x
.
OrderSource
==
18
)
{
study
=
study
.
concat
(
x
.
TCIDList
)
}
}
})
this
.
DataList
=
data
;
if
(
da
.
length
>
0
)
{
if
(
da
&&
da
.
length
>
0
)
{
let
str
=
da
.
join
(
','
)
getClassNameList
({
ClassIds
:
str
...
...
@@ -1976,6 +1982,24 @@
})
}).
catch
(()
=>
{})
}
if
(
study
&&
study
.
length
>
0
)
{
let
str
=
study
.
join
(
','
)
queryStudyNameList
({
Ids
:
str
}).
then
(
res
=>
{
this
.
DataList
.
forEach
(
x
=>
{
if
(
x
.
TCIDList
.
length
>
0
)
{
x
.
TCIDList
.
forEach
(
z
=>
{
res
.
Data
.
forEach
(
j
=>
{
if
(
z
==
j
.
ClassId
)
{
x
.
TCIDAndTCNUMList
.
push
(
j
)
}
})
})
}
})
}).
catch
(()
=>
{})
}
}
}
else
{
this
.
loading
=
false
;
...
...
src/pages/financial/financalDocument/FinancialDocumentsDetail.vue
View file @
300caca3
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/pages/sale/studyjob.vue
View file @
300caca3
...
...
@@ -252,7 +252,9 @@
this
.
getList
();
},
created
()
{
if
(
this
.
$route
.
query
.
Name
)
{
this
.
msg
.
Name
=
this
.
$route
.
query
.
Name
;
}
},
methods
:
{
cloStudyform
()
{
...
...
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