This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Augcl
/
employ-front
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
fix: 当交通方式为无或空时不计算交通费
master
前端-胡立永
1 month ago
parent
ac128075a7
commit
28490be723
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
pages_subpack/pay/index.vue
+ 6
- 0
pages_subpack/pay/index.vue
View File
@ -223,6 +223,12 @@
if
(
!
seek
)
return
/
/
如
果
交
通
方
式
为
"
无
"
或
空
,
则
不
计
算
交
通
费
if
(
!
seek
.
selectGo
||
seek
.
selectGo
==
'无'
||
seek
.
selectGo
.
trim
(
)
==
''
)
{
this
.
fare
=
0
;
return
;
}
/
/
c
o
n
s
o
l
e
.
l
o
g
(
t
h
i
s
.
$
s
t
o
r
e
.
s
t
a
t
e
.
d
a
t
a
.
c
o
n
f
i
g
L
i
s
t
)
;
let
configList
=
this
.
$store
.
state
.
data
.
configList
Write
Preview
Loading…
Cancel
Save