Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
jz_Travel
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
zhengke
jz_Travel
Commits
7271876e
Commit
7271876e
authored
Jul 14, 2025
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
38a339e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
3 deletions
+54
-3
index.vue
pages/teamLeader/index.vue
+53
-2
reimbursementInfor.vue
pages/teamLeader/reimbursementInfor.vue
+1
-1
No files found.
pages/teamLeader/index.vue
View file @
7271876e
...
@@ -43,6 +43,7 @@
...
@@ -43,6 +43,7 @@
}
}
.teamLeader-center
{
.teamLeader-center
{
padding-right
:
41rpx
;
padding-right
:
41rpx
;
padding-left
:
41rpx
;
color
:
#fff
;
color
:
#fff
;
}
}
.teamLeader-c-box
{
.teamLeader-c-box
{
...
@@ -105,8 +106,11 @@
...
@@ -105,8 +106,11 @@
font-size
:
36rpx
;
font-size
:
36rpx
;
color
:
#FFFFFF
;
color
:
#FFFFFF
;
}
}
.teamLeaderMakeNote
view
.active
{
background
:
rgba
(
211
,
207
,
207
,.
9
);
color
:
#333
;
}
</
style
>
</
style
>
<
template
>
<
template
>
<view
class=
"teamLeader column"
>
<view
class=
"teamLeader column"
>
...
@@ -182,8 +186,11 @@
...
@@ -182,8 +186,11 @@
</view>
</view>
</view>
</view>
<view
class=
"col"
></view>
<view
class=
"col"
></view>
<view
class=
"teamLeaderMakeNote row justify-center"
>
<view
class=
"teamLeaderMakeNote row PX50"
:class=
"[params.IsOperation==0?'justify-between':'justify-center']"
>
<view
class=
"text-center"
@
click=
"goUrl('/pages/teamLeader/reimbursementInfor')"
>
记一笔
</view>
<view
class=
"text-center"
@
click=
"goUrl('/pages/teamLeader/reimbursementInfor')"
>
记一笔
</view>
<view
v-if=
"params.IsOperation==0"
class=
"text-center ML50"
:class=
"[loading?'active':'']"
@
click=
"saveData"
>
提交
</view>
</view>
</view>
</view>
</view>
...
@@ -281,6 +288,7 @@ export default {
...
@@ -281,6 +288,7 @@ export default {
currentId
:
0
,
currentId
:
0
,
currentIndex
:
0
,
currentIndex
:
0
,
showQRCode
:
false
,
showQRCode
:
false
,
params
:
{},
}
}
},
},
onLoad
(
option
){
onLoad
(
option
){
...
@@ -291,6 +299,7 @@ export default {
...
@@ -291,6 +299,7 @@ export default {
}
}
this
.
b2b_user_info
=
uni
.
getStorageSync
(
'b2b_user'
)
this
.
b2b_user_info
=
uni
.
getStorageSync
(
'b2b_user'
)
this
.
init
()
this
.
init
()
this
.
getParams
()
},
},
created
()
{
created
()
{
this
.
contentHeight
=
this
.
$utils
.
calcContentHeight
(
-
40
)
+
"px"
;
this
.
contentHeight
=
this
.
$utils
.
calcContentHeight
(
-
40
)
+
"px"
;
...
@@ -319,6 +328,48 @@ export default {
...
@@ -319,6 +328,48 @@ export default {
this
.
currentId
=
value
this
.
currentId
=
value
this
.
currentIndex
=
this
.
dataList
.
findIndex
(
item
=>
item
.
CurrencyId
==
value
)
this
.
currentIndex
=
this
.
dataList
.
findIndex
(
item
=>
item
.
CurrencyId
==
value
)
},
},
saveData
(){
if
(
this
.
loading
)
return
this
.
loading
=
true
uni
.
showLoading
()
this
.
apipost
(
"dmcstatistics_post_SetNewLeaderApplyList_V2"
,
{
...
this
.
params
,
RB_DMC_LeaderApply
:
{
ID
:
0
,
Status
:
1
,
TCIDs
:
this
.
msg
.
TCIDs
,
}
},
(
res
)
=>
{
if
(
res
.
resultCode
==
1
)
{
this
.
loading
=
false
uni
.
hideLoading
()
this
.
getParams
()
}
},
(
failed
)
=>
{
this
.
loading
=
false
uni
.
showToast
({
title
:
failed
.
message
,
icon
:
"none"
,
});
},
(
error
)
=>
{
this
.
loading
=
false
})
},
getParams
(){
this
.
apipost
(
"dmcstatistics_post_GetNewLeaderPayMoneyStatics"
,
this
.
msg
,
(
res
)
=>
{
if
(
res
.
resultCode
==
1
)
{
this
.
params
=
res
.
data
;
}
},
(
failed
)
=>
{
uni
.
showToast
({
title
:
failed
.
message
,
icon
:
"none"
,
});
},
(
error
)
=>
{
uni
.
hideLoading
()
})
},
init
()
{
init
()
{
uni
.
showLoading
()
uni
.
showLoading
()
this
.
apipost
(
"dmcstatistics_post_GetTotalPrice_V2"
,
this
.
msg
,
(
res
)
=>
{
this
.
apipost
(
"dmcstatistics_post_GetTotalPrice_V2"
,
this
.
msg
,
(
res
)
=>
{
...
...
pages/teamLeader/reimbursementInfor.vue
View file @
7271876e
...
@@ -119,7 +119,7 @@
...
@@ -119,7 +119,7 @@
<!-- 购物报账-->
<!-- 购物报账-->
<otherInfor6
:currencyList=
"currencyList"
:data=
"params"
v-else-if=
"params.type==10"
@
change=
"getNewData"
:options=
"shopTypeList"
></otherInfor6>
<otherInfor6
:currencyList=
"currencyList"
:data=
"params"
v-else-if=
"params.type==10"
@
change=
"getNewData"
:options=
"shopTypeList"
></otherInfor6>
</scroll-view>
</scroll-view>
<view
class=
"saveBox"
@
click=
"saveData"
>
<view
v-if=
"params.IsOperation==0"
class=
"saveBox"
@
click=
"saveData"
>
<view
class=
"row justify-center items-center"
>
<view
class=
"row justify-center items-center"
>
<text>
保存
</text>
<text>
保存
</text>
</view>
</view>
...
...
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