Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
16e30e5d
Commit
16e30e5d
authored
Jul 24, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ed455a5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
2 deletions
+33
-2
index.vue
...ponents/FinancialModule/ConsolidationOfAccounts/index.vue
+33
-2
No files found.
src/components/FinancialModule/ConsolidationOfAccounts/index.vue
View file @
16e30e5d
...
...
@@ -103,7 +103,7 @@
</el-form-item>
</el-col>
<template
v-if=
"!heightQueryBox"
>
<el-col
:span=
"
8
"
>
<el-col
:span=
"
5
"
>
<el-form-item
label=
"发团日期:"
>
<el-date-picker
class=
"h34"
v-model=
"missionDate"
...
...
@@ -112,6 +112,16 @@
value-format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"交易日期:"
>
<el-date-picker
class=
"h34"
v-model=
"tradeDate"
@
change=
"timeTradeAdd()"
type=
"daterange"
value-format=
"yyyy-MM-dd"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"结算状态:"
>
...
...
@@ -125,7 +135,7 @@
</el-form-item>
</el-col>
</
template
>
<el-col
:span=
"
12
"
>
<el-col
:span=
"
8
"
>
<span
style=
"margin-left: 20px; font-size: 12px;"
>
注:合并结算的单据需要币种一致,此处均验证原币金额
</span>
</el-col>
</el-row>
...
...
@@ -318,6 +328,14 @@
</div>
</template>
</el-table-column>
<el-table-column
prop=
""
label=
"交易日期"
show-overflow-tooltip
width=
"100"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
TradeDate
}}
</
template
>
</el-table-column>
<el-table-column
prop=
""
label=
"原币金额"
...
...
@@ -608,6 +626,8 @@
QEndDate
:
''
,
Status
:
'-1'
,
IsSelectNormal
:
'1'
,
//0不限 1只看未计算 2只看已结算
sTradeDate
:
''
,
eTradeDate
:
''
},
getCompanyMsg
:{
// 公司
RB_Group_Id
:
'0'
,
...
...
@@ -617,6 +637,7 @@
accountList
:[],
CompanyList
:[],
missionDate
:[],
tradeDate
:[],
GetAccountType
:[],
loading
:
false
,
currentPage
:
1
,
...
...
@@ -800,6 +821,16 @@
this
.
msg
.
QStartDate
=
this
.
missionDate
[
0
];
this
.
msg
.
QEndDate
=
this
.
missionDate
[
1
];
},
timeTradeAdd
(){
// 日期格式
//发团日期
if
(
!
this
.
tradeDate
){
this
.
msg
.
sTradeDate
=
''
;
this
.
msg
.
eTradeDate
=
''
;
return
}
this
.
msg
.
sTradeDate
=
this
.
tradeDate
[
0
];
this
.
msg
.
eTradeDate
=
this
.
tradeDate
[
1
];
},
queryInfoInit
(){
// 初始化msg
let
msg
=
{
pageIndex
:
this
.
msg
.
pageIndex
,
...
...
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