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
0cf6e48a
Commit
0cf6e48a
authored
May 20, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
59338c1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
6 deletions
+30
-6
PlatformAccDetail.vue
...omponents/FinancialModule/accDetail/PlatformAccDetail.vue
+30
-6
No files found.
src/components/FinancialModule/accDetail/PlatformAccDetail.vue
View file @
0cf6e48a
...
...
@@ -133,8 +133,8 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"
8
"
:gutter=
"35"
>
<el-form-item
label=
"
制单
日期"
>
<el-col
:span=
"
5
"
:gutter=
"35"
>
<el-form-item
label=
"
发团
日期"
>
<el-date-picker
class=
"h34"
@
change=
"timeAddByTC"
v-model=
"productionDateByTC"
...
...
@@ -144,7 +144,18 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"4"
:gutter=
"35"
>
<el-col
:span=
"5"
:gutter=
"35"
>
<el-form-item
label=
"制单日期"
>
<el-date-picker
class=
"h34"
@
change=
"timeAddByCreate"
v-model=
"productionDateByCreate"
type=
"daterange"
value-format=
"yyyy-MM-dd"
:range-separator=
"$t('restaurant.res_To')"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"3"
:gutter=
"35"
>
<el-form-item
:label=
"$t('fnc.feiyongleixing')"
>
<el-select
filterable
v-model=
'msg.CostTypeID'
>
<el-option
:value=
"0"
:label=
"$t('pub.unlimitedSel')"
></el-option>
...
...
@@ -152,7 +163,7 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"
4
"
:gutter=
"35"
>
<el-col
:span=
"
3
"
:gutter=
"35"
>
<el-form-item
:label=
"$t('system.query_company')"
>
<el-select
filterable
v-model=
'msg.RB_Branch_Id'
>
<el-option
:value=
"-1"
:label=
"$t('pub.unlimitedSel')"
></el-option>
...
...
@@ -164,7 +175,7 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"
4
"
:gutter=
"35"
>
<el-col
:span=
"
3
"
:gutter=
"35"
>
<el-form-item
label=
"结款查询"
>
<el-select
filterable
v-model=
'msg.IsDiJieSelect'
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
'-1'
></el-option>
...
...
@@ -173,7 +184,7 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"
4
"
:gutter=
"35"
>
<el-col
:span=
"
3
"
:gutter=
"35"
>
<el-form-item
label=
"抵扣合并"
>
<el-checkbox
v-model=
"msg.IsPlatformMergeBank"
:true-label=
"1"
:false-label=
"0"
></el-checkbox>
</el-form-item>
...
...
@@ -506,6 +517,8 @@ export default {
eTradeDate
:
''
,
QStartDate
:
''
,
QEndDate
:
''
,
sDate
:
''
,
eDate
:
''
,
BankList
:[],
Is_Cashier
:
-
1
,
Status
:
-
1
,
...
...
@@ -522,6 +535,7 @@ export default {
accountList
:[],
productionDate
:[],
productionDateByTC
:[],
productionDateByCreate
:[],
ClientAccountList
:[],
GetCostTypeList
:[],
CompanyList
:[],
...
...
@@ -585,6 +599,7 @@ export default {
this
.
msg
.
eTradeDate
=
this
.
$route
.
query
.
eTradeDate
;
this
.
productionDate
=
[
this
.
msg
.
sTradeDate
,
this
.
msg
.
eTradeDate
];
this
.
productionDateByTC
=
[
this
.
msg
.
QStartDate
,
this
.
msg
.
QEndDate
];
this
.
productionDateByCreate
=
[
this
.
msg
.
sDate
,
this
.
msg
.
eDate
];
this
.
msg
.
Status
=
parseInt
(
this
.
$route
.
query
.
Status
)
this
.
getList
();
...
...
@@ -683,6 +698,15 @@ export default {
this
.
msg
.
QStartDate
=
this
.
productionDateByTC
[
0
];
this
.
msg
.
QEndDate
=
this
.
productionDateByTC
[
1
];
},
timeAddByCreate
(){
// 日期格式
if
(
!
this
.
productionDateByCreate
){
this
.
msg
.
sDate
=
''
;
this
.
msg
.
eDate
=
''
;
return
}
this
.
msg
.
sDate
=
this
.
productionDateByCreate
[
0
];
this
.
msg
.
eDate
=
this
.
productionDateByCreate
[
1
];
},
bankaccount_post_GetList
(){
// 获取平台账户
// this.AccountId = '';
let
msg
=
{
...
...
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