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
61aa5f88
Commit
61aa5f88
authored
Jun 13, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
3b093efc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
34 deletions
+66
-34
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+46
-33
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+15
-0
index.vue
...components/FinancialModule/MonthlyCostStatement/index.vue
+3
-0
visaOrderList.vue
src/components/SalesVisa/components/visaOrderList.vue
+2
-1
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
61aa5f88
...
...
@@ -462,6 +462,9 @@
<span
v-if=
"GetDetail.OtherType==71"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
style=
"text-decoration: underline;"
@
click=
"goHand(3,GetDetail)"
>
查看手配详情
</span>
</span>
<span
v-if=
"GetDetail.OtherType==75"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
style=
"text-decoration: underline;"
@
click=
"goHand(4,GetDetail)"
>
查看月结详情
</span>
</span>
<span
v-if=
"GetDetail.OtherType==18&&GetDetail.ReFinanceId>0"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
@
click=
"goOrderDetails(GetDetail.ReFinanceId)"
>
账单:{{GetDetail.ReFinanceId}}
</span>
</span>
...
...
@@ -1953,40 +1956,50 @@ export default {
window
.
open
(
routeData
.
href
,
"_blank"
);
}
},
goHand
(
type
,
GetDetail
){
if
(
type
==
1
){
this
.
$router
.
push
({
name
:
'TeamBalancePayment'
,
query
:
{
id
:
GetDetail
.
TCID
,
IsHaveAuth
:
true
,
blank
:
"y"
,
tab
:
"团队收支明细"
}
});
goHand
(
type
,
GetDetail
)
{
if
(
type
==
1
)
{
this
.
$router
.
push
({
name
:
'TeamBalancePayment'
,
query
:
{
id
:
GetDetail
.
TCID
,
IsHaveAuth
:
true
,
blank
:
"y"
,
tab
:
"团队收支明细"
}
if
(
type
==
2
)
{
this
.
$router
.
push
({
name
:
'FinancialDocumentsDetail'
,
query
:
{
id
:
GetDetail
.
ReFinanceId
,
blank
:
"y"
,
tab
:
"单据详情"
}
});
}
if
(
type
==
3
)
{
this
.
$router
.
push
({
name
:
'HandFeeStatistics'
,
query
:
{
HandFeeFrId
:
GetDetail
.
FrID
,
blank
:
"y"
,
tab
:
"手配费详情"
}
});
}
},
//跳转至电商订单详情
});
}
if
(
type
==
2
)
{
this
.
$router
.
push
({
name
:
'FinancialDocumentsDetail'
,
query
:
{
id
:
GetDetail
.
ReFinanceId
,
blank
:
"y"
,
tab
:
"单据详情"
}
});
}
if
(
type
==
3
)
{
this
.
$router
.
push
({
name
:
'HandFeeStatistics'
,
query
:
{
HandFeeFrId
:
GetDetail
.
FrID
,
blank
:
"y"
,
tab
:
"手配费详情"
}
});
}
if
(
type
==
4
)
{
this
.
$router
.
push
({
name
:
'MonthlyCostStatementInquire'
,
query
:
{
FrID
:
GetDetail
.
FrID
,
blank
:
"y"
,
tab
:
"成本月结详情"
}
});
}
},
//跳转至电商订单详情
goOrderDetails
(
id
){
this
.
$router
.
push
({
name
:
'EleBillDetail'
,
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
61aa5f88
...
...
@@ -885,6 +885,9 @@
<span
v-if=
"GetDetail.OtherType==71"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
style=
"text-decoration: underline;"
@
click=
"goHand(3,GetDetail)"
>
查看手配详情
</span>
</span>
<span
v-if=
"GetDetail.OtherType==75"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
style=
"text-decoration: underline;"
@
click=
"goHand(4,GetDetail)"
>
查看月结详情
</span>
</span>
<span
v-if=
"GetDetail.OtherType==18&&GetDetail.ReFinanceId>0"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
<span
@
click=
"goOrderDetails(GetDetail.ReFinanceId)"
>
账单:
{{
GetDetail
.
ReFinanceId
}}
</span>
...
...
@@ -1707,6 +1710,7 @@
});
},
goHand
(
type
,
GetDetail
)
{
let
path
=
''
if
(
type
==
1
)
{
this
.
$router
.
push
({
name
:
'TeamBalancePayment'
,
...
...
@@ -1738,6 +1742,16 @@
}
});
}
if
(
type
==
4
)
{
this
.
$router
.
push
({
name
:
'MonthlyCostStatementInquire'
,
query
:
{
FrID
:
GetDetail
.
FrID
,
blank
:
"y"
,
tab
:
"成本月结详情"
}
});
}
},
//跳转至电商订单详情
goOrderDetails
(
id
)
{
...
...
@@ -1803,6 +1817,7 @@
},
// 提成明细详情
GoRoyaltyUrl
(
GetDetail
)
{
console
.
log
(
GetDetail
.
OtherType
,
'-----'
)
let
obj
=
{
PeriodId
:
GetDetail
.
ReFinanceId
,
RB_Branch_Id
:
null
,
...
...
src/components/FinancialModule/MonthlyCostStatement/index.vue
View file @
61aa5f88
...
...
@@ -720,6 +720,9 @@ export default {
this
.
DepartIDs
=
userInfo
.
RB_Department_Id
;
this
.
userId
=
userInfo
.
EmployeeId
;
this
.
msg
.
EmployeeId
=
userInfo
.
EmployeeId
;
if
(
this
.
$route
.
query
.
FrID
){
this
.
msg
.
FrID
=
this
.
$route
.
query
.
FrID
}
this
.
financeinfo_post_GetList
();
this
.
financeinfo_post_GetCostTypeList
();
this
.
FinancialFlowTemplate_post_GetList
();
...
...
src/components/SalesVisa/components/visaOrderList.vue
View file @
61aa5f88
...
...
@@ -636,7 +636,8 @@
<!-- v-if="(pagesTitle=='OP'&&!item.remark)||item.remark" -->
<div>
{{
$t
(
'pub.pubRemark'
)
}}
:
{{
item
.
remark
?
item
.
remark
:
'-'
}}
<el-tooltip
v-if=
"pagesTitle=='OP'||pagesTitle=='销售'"
class=
"item"
effect=
"dark"
:content=
"$t('salesModule.UpRemarks')"
<!-- v-if="pagesTitle=='OP'" -->
<el-tooltip
class=
"item"
effect=
"dark"
:content=
"$t('salesModule.UpRemarks')"
placement=
"top-start"
>
<i
class=
"el-icon-edit cursor-pointer c059FF6 mx"
@
click=
'getDetail(item,true)'
></i>
</el-tooltip>
...
...
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