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
f7ce5275
Commit
f7ce5275
authored
Feb 15, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
ec0f891c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
11 deletions
+23
-11
ReturnperiodsList.vue
src/pages/financial/returnPassbook/ReturnperiodsList.vue
+23
-10
stuFlow.vue
src/pages/system/stuFlow.vue
+0
-1
No files found.
src/pages/financial/returnPassbook/ReturnperiodsList.vue
View file @
f7ce5275
...
...
@@ -42,6 +42,7 @@
.el-table
th
{
padding
:
5px
0
;
}
</
style
>
<
template
>
<div
class=
"page-body ReturnperiodsList"
>
...
...
@@ -75,7 +76,9 @@
<el-table-column
prop=
"CreateDate"
label=
"创建时间"
>
</el-table-column>
<el-table-column
label=
"财务单据"
>
<template
slot-scope=
"scope"
>
{{
scope
.
row
.
FinanceIds
}}
<template
v-if=
"scope.row.FinanceIdList"
v-for=
"item in scope.row.FinanceIdList"
>
<a
@
click=
"goDetails(item)"
style=
"cursor:pointer;color:blue;text-decoration:underline;"
>
{{
item
}}
</a>
<br/>
</
template
>
</template>
</el-table-column>
<el-table-column
label=
"操作"
>
...
...
@@ -172,20 +175,28 @@
this
.
getList
();
//获取提成周期列表
},
methods
:
{
//跳转到单据详情
goDetails
(
item
)
{
this
.
OpenNewUrl
(
"/financial/financalDocument/FinancialDocumentsDetail"
,
{
id
:
item
});
},
getList
()
{
this
.
loading
=
true
;
getCommissionPeriodsPageList
(
this
.
msg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
console
.
log
(
"res"
,
res
);
this
.
loading
=
false
;
var
tempArray
=
res
.
Data
.
PageData
;
if
(
tempArray
&&
tempArray
.
length
>
0
)
{
tempArray
.
foreach
(
item
=>
{
console
.
log
(
"item"
,
item
);
})
var
tempArray
=
res
.
Data
.
PageData
;
if
(
tempArray
&&
tempArray
.
length
>
0
)
{
tempArray
.
forEach
(
item
=>
{
var
finaceArray
=
[];
if
(
item
.
FinanceIds
&&
item
.
FinanceIds
!=
''
)
{
finaceArray
=
item
.
FinanceIds
.
split
(
','
);
}
item
.
FinanceIdList
=
finaceArray
;
})
}
this
.
tableData
=
tempArray
;
this
.
tableData
=
tempArray
;
this
.
total
=
res
.
Data
.
Count
}
})
...
...
@@ -257,7 +268,9 @@
},
},
}
</
script
>
<
style
lang=
"sass"
>
@import
url('~assets/css/table.sass')
</
style
>
\ No newline at end of file
</
style
>
src/pages/system/stuFlow.vue
View file @
f7ce5275
...
...
@@ -138,7 +138,6 @@
this
.
loading
=
true
;
GetStudentAdvisorConfigPage
(
this
.
msg
).
then
(
res
=>
{
this
.
loading
=
false
;
console
.
log
(
res
,
'数据'
);
if
(
res
.
Code
==
1
)
{
this
.
dataList
=
res
.
Data
.
PageData
;
this
.
pageCount
=
res
.
Data
.
PageCount
;
...
...
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