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
f92f8e1e
Commit
f92f8e1e
authored
Jul 09, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
跳转带的名称
parent
aa7e8d59
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
235 additions
and
112 deletions
+235
-112
classManage.vue
src/pages/course/classManage.vue
+1
-2
EasyReport.vue
src/pages/financial/EasyReport.vue
+10
-11
JumpReport.vue
src/pages/financial/JumpReport.vue
+22
-8
RecPayQueryTeam.vue
src/pages/financial/reportform/RecPayQueryTeam.vue
+200
-89
japaneseTrain.vue
src/pages/sale/japaneseTrain.vue
+1
-1
orderStatistics.vue
src/pages/sale/orderStatistics.vue
+1
-1
No files found.
src/pages/course/classManage.vue
View file @
f92f8e1e
...
@@ -441,8 +441,7 @@
...
@@ -441,8 +441,7 @@
query
:
{
query
:
{
ClassId
:
item
.
ClassId
,
ClassId
:
item
.
ClassId
,
School_Id
:
item
.
School_Id
,
School_Id
:
item
.
School_Id
,
ClassName
:
item
.
ClassName
,
ClassName
:
encodeURI
(
item
.
ClassName
),
blank
:
'y'
blank
:
'y'
}
}
})
})
...
...
src/pages/financial/EasyReport.vue
View file @
f92f8e1e
...
@@ -856,7 +856,7 @@
...
@@ -856,7 +856,7 @@
}
}
})
})
},
},
GoUrlFan
(
path
,
month
,
year
,
BranchId
,
ids
)
{
GoUrlFan
(
path
,
startDate
,
endDate
,
year
,
BranchId
,
ids
)
{
// this.$router.push({
// this.$router.push({
// path: "/financial/" + path,
// path: "/financial/" + path,
// query: {
// query: {
...
@@ -869,7 +869,8 @@
...
@@ -869,7 +869,8 @@
// });
// });
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
this
.
OpenNewUrl
(
'/financial/'
+
path
,
{
year
:
year
,
year
:
year
,
month
:
month
,
startDate
:
startDate
,
endDate
:
endDate
,
BranchId
:
BranchId
,
BranchId
:
BranchId
,
CostIds
:
ids
,
CostIds
:
ids
,
});
});
...
@@ -905,11 +906,9 @@
...
@@ -905,11 +906,9 @@
this
.
OpenNewUrl
(
'/financial/reportform/RecPayQueryTeam'
,
{
this
.
OpenNewUrl
(
'/financial/reportform/RecPayQueryTeam'
,
{
StartTime
:
startDate
,
StartTime
:
startDate
,
EndTime
:
endDate
,
EndTime
:
endDate
,
SchoolId
:
this
.
msg
.
BranchId
});
});
}
}
}
else
{
}
else
{
if
(
rowData
.
ZhaiYao
==
"员工提成"
)
{
if
(
rowData
.
ZhaiYao
==
"员工提成"
)
{
if
(
Number
(
this
.
year
)
==
2019
)
{
if
(
Number
(
this
.
year
)
==
2019
)
{
...
@@ -918,17 +917,17 @@
...
@@ -918,17 +917,17 @@
let
CostTypeIds
=
""
;
let
CostTypeIds
=
""
;
CostTypeIds
=
rowData
.
CostTypeIds
.
replace
(
'112,'
,
''
);
CostTypeIds
=
rowData
.
CostTypeIds
.
replace
(
'112,'
,
''
);
CostTypeIds
=
CostTypeIds
.
replace
(
'16,'
,
''
);
CostTypeIds
=
CostTypeIds
.
replace
(
'16,'
,
''
);
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
CostTypeIds
)
}
else
{
}
else
{
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
}
}
}
else
if
(
Number
(
this
.
year
)
>
2019
)
{
}
else
if
(
Number
(
this
.
year
)
>
2019
)
{
let
CostTypeIds
=
""
;
let
CostTypeIds
=
""
;
CostTypeIds
=
rowData
.
CostTypeIds
.
replace
(
'112,'
,
''
);
CostTypeIds
=
rowData
.
CostTypeIds
.
replace
(
'112,'
,
''
);
CostTypeIds
=
CostTypeIds
.
replace
(
'16,'
,
''
);
CostTypeIds
=
CostTypeIds
.
replace
(
'16,'
,
''
);
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
CostTypeIds
)
}
else
{
}
else
{
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
}
}
}
else
if
(
rowData
.
ZhaiYao
==
"歐洲與南亞損失分攤"
)
{
}
else
if
(
rowData
.
ZhaiYao
==
"歐洲與南亞損失分攤"
)
{
that
.
goUrl
(
"AirTicketLoss"
,
startDate
,
endDate
,
BranchId
,
"机票分摊"
)
that
.
goUrl
(
"AirTicketLoss"
,
startDate
,
endDate
,
BranchId
,
"机票分摊"
)
...
@@ -961,13 +960,13 @@
...
@@ -961,13 +960,13 @@
});
});
}
else
{
}
else
{
if
(
rowData
.
CostTypeIds
&&
rowData
.
CostTypeIds
!=
''
){
if
(
rowData
.
CostTypeIds
&&
rowData
.
CostTypeIds
!=
''
){
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
}
}
}
}
}
else
{
}
else
{
if
(
rowData
.
CostTypeIds
&&
rowData
.
CostTypeIds
!=
''
){
if
(
rowData
.
CostTypeIds
&&
rowData
.
CostTypeIds
!=
''
){
that
.
GoUrlFan
(
'JumpReport'
,
month
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
that
.
GoUrlFan
(
'JumpReport'
,
startDate
,
endDate
,
rowData
.
Year
,
rowData
.
BranchId
,
rowData
.
CostTypeIds
)
}
}
}
}
}
}
...
...
src/pages/financial/JumpReport.vue
View file @
f92f8e1e
<
style
scoped
>
<
style
scoped
>
@import
"css/cssReset.css"
;
@import
"css/cssReset.css"
;
.page_fnDm
{
background-color
:
white
}
/* .page_fnDm{background-color: white} */
.query-box
{
overflow
:
inherit
}
.page_fnDm
{
padding
:
20px
;}
.query-box
{
overflow
:
inherit
;}
._nav
{
margin
:
20px
0
0
0
;
background-color
:
#f5f5f5
;}
._nav
{
margin
:
20px
0
0
0
;
background-color
:
#f5f5f5
;}
._nav
li
{
float
:
left
;
font-size
:
14px
;
color
:
#666666
;
padding
:
15px
20px
;
cursor
:
pointer
;
position
:
relative
;
background-color
:
#f1f1f1
;
margin-right
:
5px
}
._nav
li
{
float
:
left
;
font-size
:
14px
;
color
:
#666666
;
padding
:
15px
20px
;
cursor
:
pointer
;
position
:
relative
;
background-color
:
#f1f1f1
;
margin-right
:
5px
}
._nav
li
._active
{
background-color
:
#FFFFFF
;
color
:
#333333
}
._nav
li
._active
{
background-color
:
#FFFFFF
;
color
:
#333333
}
...
@@ -108,7 +109,7 @@
...
@@ -108,7 +109,7 @@
<
template
>
<
template
>
<div
class=
"page_fnDm page_RecPayQuery"
@
keyup
.
enter=
"resetPageIndex(),getPageList()"
>
<div
class=
"page_fnDm page_RecPayQuery"
@
keyup
.
enter=
"resetPageIndex(),getPageList()"
>
<div
class=
"query-box"
>
<div
class=
"query-box"
style=
"background: #FFFFFF;border-radius: 6px;"
>
<el-form
class=
"_info_box clearfix"
label-width=
"110px"
>
<el-form
class=
"_info_box clearfix"
label-width=
"110px"
>
<el-row
style=
"padding:15px 20px 0 0;"
>
<el-row
style=
"padding:15px 20px 0 0;"
>
<!--
<el-col
:span=
"4"
>
<!--
<el-col
:span=
"4"
>
...
@@ -298,19 +299,21 @@
...
@@ -298,19 +299,21 @@
</
template
>
</
template
>
</el-row>
</el-row>
</el-form>
</el-form>
<ul
class=
"clearfix"
>
<ul
class=
"clearfix"
style=
"padding-right:20px ;"
>
<li
class=
"hight_query"
>
<li
class=
"hight_query"
>
<!-- <span>
<!-- <span>
<em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em>
<em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em>
</span> -->
</span> -->
<button
class=
"hollowFixedBtn"
@
click=
"resetPageIndex(),getPageList()"
>
{{$t('pub.searchBtn')}}
</button>
<!-- <button class="hollowFixedBtn" @click="resetPageIndex(),getPageList()" style="margin: 0;">{{$t('pub.searchBtn')}}</button> -->
<q-btn
color=
"primary"
size=
"11px"
label=
"查询"
@
click=
"resetPageIndex(),getPageList()"
style=
"marginRight:10px"
/>
<!-- <button class="normalBtn" @click="method5()">导出</button> -->
<!-- <button class="normalBtn" @click="method5()">导出</button> -->
</li>
</li>
</ul>
</ul>
<div
class=
"JumpDivTitleOne"
>
应收金额:{{SumYingShou}}
<span
class=
"JumpSpan"
>
实收金额:{{SumShiShou}}
</span>
待收金额:{{SumDaiShou}}
</div>
<div
class=
"JumpDivTitleOne"
>
应收金额:{{SumYingShou}}
<span
class=
"JumpSpan"
>
实收金额:{{SumShiShou}}
</span>
待收金额:{{SumDaiShou}}
</div>
<div
class=
"JumpDivTitleTwo"
>
应付金额:{{SumYingFu}}
<span
class=
"JumpSpan"
>
实付金额:{{SumShiFu}}
</span>
待付金额:{{SumDaiFu}}
</div>
<div
class=
"JumpDivTitleTwo"
>
应付金额:{{SumYingFu}}
<span
class=
"JumpSpan"
>
实付金额:{{SumShiFu}}
</span>
待付金额:{{SumDaiFu}}
</div>
</div>
</div>
<div
class=
"_fnDm_content"
v-loading=
'loading'
>
<div
class=
"_fnDm_content"
v-loading=
'loading'
style=
"padding: 20px;background: #FFFFFF;"
>
<!-- <v-table-->
<!-- <v-table-->
<!-- is-horizontal-resize-->
<!-- is-horizontal-resize-->
<!-- column-width-drag-->
<!-- column-width-drag-->
...
@@ -330,7 +333,7 @@
...
@@ -330,7 +333,7 @@
<el-table
<el-table
:data=
"DataList"
:data=
"DataList"
border
border
style=
"width: 100%;font-size: 12px"
>
style=
"width: 100%;font-size: 12px
;padding: ;
"
>
<el-table-column
prop=
"FrID"
label=
"单号"
width=
"80"
>
<el-table-column
prop=
"FrID"
label=
"单号"
width=
"80"
>
<
template
slot-scope=
'scope'
>
<
template
slot-scope=
'scope'
>
<el-popover
<el-popover
...
@@ -547,6 +550,7 @@
...
@@ -547,6 +550,7 @@
path
:
'/'
+
path
,
path
:
'/'
+
path
,
query
:
{
id
:
this
.
rowData
.
FrID
,
blank
:
'y'
,
tab
:
this
.
rowData
.
FrID
+
'单据详情'
}
query
:
{
id
:
this
.
rowData
.
FrID
,
blank
:
'y'
,
tab
:
this
.
rowData
.
FrID
+
'单据详情'
}
})
})
},
},
}
}
})
})
...
@@ -1069,6 +1073,12 @@
...
@@ -1069,6 +1073,12 @@
this
.
transactionDate
[
0
]
=
this
.
msg
.
sTradeDate
;
this
.
transactionDate
[
0
]
=
this
.
msg
.
sTradeDate
;
this
.
transactionDate
[
1
]
=
this
.
msg
.
eTradeDate
;
this
.
transactionDate
[
1
]
=
this
.
msg
.
eTradeDate
;
}
}
if
(
this
.
$route
.
query
.
startDate
&&
this
.
$route
.
query
.
endDate
){
//7月8号新加 因为从简易报表跳转过来的 季度那种情况时间带不过来 然后从新处理了
this
.
msg
.
sTradeDate
=
this
.
$route
.
query
.
startDate
;
this
.
msg
.
eTradeDate
=
this
.
$route
.
query
.
endDate
;
this
.
transactionDate
[
0
]
=
this
.
msg
.
sTradeDate
;
this
.
transactionDate
[
1
]
=
this
.
msg
.
eTradeDate
;
}
if
(
this
.
$route
.
query
.
BranchId
){
if
(
this
.
$route
.
query
.
BranchId
){
this
.
msg
.
RB_Branch_Id
=
parseInt
(
this
.
$route
.
query
.
BranchId
);
this
.
msg
.
RB_Branch_Id
=
parseInt
(
this
.
$route
.
query
.
BranchId
);
}
}
...
@@ -1546,7 +1556,11 @@
...
@@ -1546,7 +1556,11 @@
this
.
currentPage
=
1
;
this
.
currentPage
=
1
;
},
},
goUrl
(
path
,
rowData
,){
goUrl
(
path
,
rowData
,){
this
.
$router
.
push
({
path
:
'/financial/financalDocument/'
+
path
,
query
:{
"id"
:
rowData
.
FrID
,
blank
:
'y'
,
tab
:
'单据详情'
}
})
// this.$router.push({ path:'/financial/financalDocument/'+ path,query:{"id":rowData.FrID,blank:'y',tab:'单据详情'} })
this
.
OpenNewUrl
(
'/financial/financalDocument/'
+
path
,
{
"id"
:
rowData
.
FrID
,
tab
:
'单据详情'
});
},
},
goEit
(
path
,
type
,
id
,
edit
,
Conditon
,
pageIndex
){
goEit
(
path
,
type
,
id
,
edit
,
Conditon
,
pageIndex
){
this
.
$router
.
push
({
name
:
path
,
query
:{
"type"
:
type
,
"FrID"
:
id
,
"edit"
:
edit
,
"Conditon"
:
Conditon
,
"pageIndex"
:
pageIndex
}
})
this
.
$router
.
push
({
name
:
path
,
query
:{
"type"
:
type
,
"FrID"
:
id
,
"edit"
:
edit
,
"Conditon"
:
Conditon
,
"pageIndex"
:
pageIndex
}
})
...
...
src/pages/financial/reportform/RecPayQueryTeam.vue
View file @
f92f8e1e
This diff is collapsed.
Click to expand it.
src/pages/sale/japaneseTrain.vue
View file @
f92f8e1e
...
@@ -364,7 +364,7 @@
...
@@ -364,7 +364,7 @@
this
.
CourseList
();
this
.
CourseList
();
this
.
GetTeacherList
();
this
.
GetTeacherList
();
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassName
)
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassName
)
{
this
.
msg
.
ClassName
=
this
.
$route
.
query
.
ClassName
;
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
)
;
}
}
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassNo
)
{
if
(
this
.
$route
.
query
&&
this
.
$route
.
query
.
ClassNo
)
{
this
.
msg
.
ClassNo
=
this
.
$route
.
query
.
ClassNo
;
this
.
msg
.
ClassNo
=
this
.
$route
.
query
.
ClassNo
;
...
...
src/pages/sale/orderStatistics.vue
View file @
f92f8e1e
...
@@ -221,7 +221,7 @@
...
@@ -221,7 +221,7 @@
this
.
msg
.
EnterID
=
Number
(
this
.
$route
.
query
.
EnterID
)
;
this
.
msg
.
EnterID
=
Number
(
this
.
$route
.
query
.
EnterID
)
;
}
}
if
(
this
.
$route
.
query
.
ClassName
)
{
if
(
this
.
$route
.
query
.
ClassName
)
{
this
.
msg
.
ClassName
=
this
.
$route
.
query
.
ClassName
;
this
.
msg
.
ClassName
=
decodeURI
(
this
.
$route
.
query
.
ClassName
)
;
}
}
this
.
getOrderState
();
this
.
getOrderState
();
this
.
getCourseList
();
this
.
getCourseList
();
...
...
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