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
884018fe
Commit
884018fe
authored
Dec 10, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的财务单据 今日订单
parent
26a22137
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
6 deletions
+30
-6
FinancialDocuments.vue
src/components/FinancialModule/FinancialDocuments.vue
+19
-5
userMixin.js
src/components/common/mixins/userMixin.js
+10
-0
TravelDaysTrip_DirectThree.vue
...avelmanager/travelLineTrip/TravelDaysTrip_DirectThree.vue
+1
-1
No files found.
src/components/FinancialModule/FinancialDocuments.vue
View file @
884018fe
...
...
@@ -776,8 +776,11 @@
<button
v-if=
"HandShow"
class=
"hollowFixedBtn"
@
click=
"Handwithfee"
>
{{
$t
(
'objFill.handdistributionfeeincome'
)
}}
</button>
<button
class=
"hollowFixedBtn"
@
click=
"ZhiDanChongDi"
>
{{
$t
(
'objFill.precharge'
)
}}
</button>
<button
v-if=
"active==1 && ActionMenuCode.indexOf('Finance_Inner')!=-1"
class=
"hollowFixedBtn"
@
click=
"openPICPayDialog"
>
今日应付款
</button>
<button
v-if=
"this.userId==2739 || this.userId==3038 || this.userId==2604"
class=
"hollowFixedBtn"
@
click=
"openPICPayDialog"
>
今日应付款
</button>
<button
v-if=
"(active==1 && ActionMenuCode.indexOf('Finance_Inner')!=-1)
||(this.userId==2739 || this.userId==3038 || this.userId==2604)
||(userInfo.RB_Branch_id==1248&&userInfo.RB_Post_Id==28)"
class=
"hollowFixedBtn"
@
click=
"openPICPayDialog"
>
今日应付款
</button>
<button
v-if=
"this.userId==2739 || this.userId==3038 || this.userId==2604"
class=
"hollowFixedBtn"
@
click=
"openMarkDialog"
>
{{
$t
(
'objFill.v101.FinancialModule.picyouxfkjl'
)
}}
</button>
<!-- v-if="F_Advance_Match" -->
...
...
@@ -1977,8 +1980,11 @@
<
el
-
form
-
item
label
=
""
prop
=
"picPayDate"
>
<
el
-
checkbox
v
-
model
=
"picMsg.IsSelectAduiting"
true
-
label
=
"1"
false
-
label
=
"0"
>
只看待付款
<
/el-checkbox
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
""
prop
=
"picPayDate"
>
<
el
-
checkbox
v
-
model
=
"picMsg.IsAirTicketSelect"
true
-
label
=
"1"
false
-
label
=
"0"
>
只看车行
<
/el-checkbox
>
<
el
-
form
-
item
label
=
"查看类型"
prop
=
"picPayDate"
>
<
el
-
select
v
-
model
=
"picMsg.IsAirTicketSelect"
placeholder
=
"请选择"
>
<
el
-
option
v
-
if
=
"!(userInfo.RB_Branch_id==1248&&userInfo.RB_Post_Id==28)"
label
=
"只看PIC"
value
=
"0"
><
/el-option
>
<
el
-
option
label
=
"只看车行"
value
=
"1"
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
el
-
form
-
item
>
<
input
type
=
"button"
:
value
=
"$t('pub.searchBtn')"
class
=
"hollowFixedBtn"
@
click
=
"getPICPayList()"
>
...
...
@@ -2114,7 +2120,9 @@
import
shouxufei
from
"./components/shouxufei.vue"
;
import
editExchangeRate
from
"./components/editExchangeRate.vue"
;
import
StartDateLimit
from
'../public/StartDateLimit.vue'
;
import
{
userMixin
}
from
"../common/mixins/userMixin.js"
;
export
default
{
mixins
:
[
userMixin
],
data
()
{
return
{
BatchAddWagesMessage
:
''
,
...
...
@@ -2378,7 +2386,7 @@
pageSize
:
9999
,
QStartDate
:
""
,
QEndDate
:
""
,
IsSelectAduiting
:
'
1
'
,
IsSelectAduiting
:
'
0
'
,
EmployeeId
:
0
}
,
picPayData
:[],
...
...
@@ -2388,6 +2396,12 @@
}
;
}
,
created
()
{
if
(
this
.
userInfo
.
RB_Branch_id
==
1248
&&
this
.
userInfo
.
RB_Post_Id
==
28
){
this
.
picMsg
.
IsAirTicketSelect
=
'1'
}
else
{
this
.
picMsg
.
IsAirTicketSelect
=
'0'
}
this
.
GetSupperOrderEditAuth
()
if
(
localStorage
.
typeSystem
&&
localStorage
.
typeSystem
==
1
)
this
.
typeSystem
=
localStorage
.
typeSystem
...
...
src/components/common/mixins/userMixin.js
View file @
884018fe
...
...
@@ -13,6 +13,16 @@ export const userMixin = {
getUserInfo
(){
this
.
userInfo
=
this
.
getLocalStorage
()
},
getFunctionalPermission
(
key
){
let
ActionMenuCode
=
this
.
userInfo
.
ActionMenuCode
;
if
(
ActionMenuCode
.
indexOf
(
key
)
!=-
1
){
return
true
}
else
{
return
false
}
// S_CheckBranchOrder // 查看分公司订单权限
// S_CheckAllOrder 查看所有订单权限
},
}
};
...
...
src/components/newTravelmanager/travelLineTrip/TravelDaysTrip_DirectThree.vue
View file @
884018fe
<
style
>
@import
url("../../../assets/css/tripIndexNew2.css")
;
.dayPage-box
{
margin-left
:
20px
;
...
...
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