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
2027e3a2
Commit
2027e3a2
authored
Oct 15, 2024
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
通用 预付款冲抵页面
parent
915c0753
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
430 additions
and
0 deletions
+430
-0
OAadvancePayment.vue
src/components/public/OAadvancePayment.vue
+422
-0
config.js
src/router/config.js
+8
-0
No files found.
src/components/public/OAadvancePayment.vue
0 → 100644
View file @
2027e3a2
<
template
>
<div>
<offset
:isShow=
"cdState"
:obj=
"queryObj"
@
close=
"cdState = false"
></offset>
</div>
</
template
>
<
script
>
import
offset
from
"./offset.vue"
;
export
default
{
props
:
[
"isShow"
,
"obj"
],
components
:
{
offset
},
data
()
{
return
{
cdState
:
false
,
queryObj
:
null
,
}
},
watch
:
{
// obj: {
// handler(newValue,onldValue) {
// this.queryObj = newValue
// if(this.queryObj.tradeObj){
// this.tradeObj = JSON.parse(this.queryObj.tradeObj)
// }
// if(this.queryObj.orderObj){
// this.tradeObj = JSON.parse(this.queryObj.orderObj)
// }
// },
// deep:true,
// }
},
mounted
()
{
if
(
this
.
$route
.
query
.
cdState
==
'true'
)
{
this
.
addBalanceout
()
}
},
methods
:
{
// 车行订单 制成本冲抵单
addBalanceout
()
{
let
datas
=
this
.
$route
.
query
let
tradeObj
=
datas
.
tradeObj
let
query
=
{
blank
:
"y"
,
tab
:
`新增付款单据`
,
Type
:
2
,
tradeObj
:
tradeObj
,
companyID
:
1248
};
this
.
queryObj
=
query
this
.
cdState
=
true
},
}
}
</
script
>
<
style
>
.el-dialog__header
{
background-color
:
#E95252
!important
;
padding
:
20px
40px
10px
;
}
.el-dialog__header
.el-dialog__title
{
color
:
white
;
}
.hollowFixedBtn
{
background
:
#fff
;
color
:
#E95252
;
padding
:
0
15px
;
height
:
30px
;
border
:
1px
solid
#E95252
;
cursor
:
pointer
;
border-radius
:
15px
;
margin-left
:
10px
;
}
.hollowFixedBtn
:hover
{
box-shadow
:
2px
0px
4px
rgba
(
144
,
6
,
6
,
0.25
)
}
.hollowFixedBtn
:active
{
border-color
:
#CD2929
;
}
.normalBtn
{
color
:
#fff
;
padding
:
0
15px
;
height
:
30px
;
background
:
#E95252
;
border
:
1px
solid
#E95252
;
cursor
:
pointer
;
border-radius
:
15px
;
margin-left
:
10px
;
outline
:
none
;
}
.normalBtn
:hover
{
background
:
#E95252
;
box-shadow
:
2px
0px
4px
rgba
(
144
,
6
,
6
,
0.25
)
}
.normalBtn
:active
{
background
:
#CD2929
;
}
.leaderPayTable
{
width
:
100%
;
margin
:
10px
auto
;
text-align
:
center
;
font-size
:
12px
;
color
:
#333
;
border-collapse
:
collapse
;
background-color
:
#fff
;
border
:
1px
solid
#d1d1d1
;
}
.leaderPayTable
th
{
background
:
#e6e6e6
;
padding
:
8px
0
;
color
:
#333
;
border
:
1px
solid
#d1d1d1
;
font-weight
:
bold
;
}
.leaderPayTable
tr
td
{
background-color
:
#fff
;
padding
:
8px
0
;
height
:
32px
;
border
:
1px
solid
#d1d1d1
;
}
.leaderPayTable2
tr
td
{
border
:
1px
solid
#ccc
;
line-height
:
17px
;
height
:
25px
;
font-size
:
12px
;
background
:
#fff
;
text-align
:
center
;
padding
:
0
;
;
margin
:
0
;
}
.LeaderPrintDiv
.LeaderTitle
{
padding
:
10px
;
text-align
:
left
;
}
.leaderPayTable
.itemName
{
text-align
:
left
;
padding
:
0
10px
;
}
@media
print
{
.LeaderPrintDiv
.btnListDiv
{
display
:
none
;
}
}
.comTotal
{
text-align
:
left
;
padding-left
:
30px
!important
;
}
.LeaderPrintDiv
{
width
:
100%
;
background
:
#f8f8f8
;
position
:
absolute
;
}
.LeaderPrintDiv
.childDiv
{
width
:
1000px
;
margin
:
0
auto
;
}
.LeaderPrintDiv
.childDiv
._Titles
{
font-size
:
14px
;
}
.wLeader2
.el-textarea__inner
{
height
:
130px
;
}
.LeaderPrintDiv
.btnListDiv
{
margin
:
20px
auto
;
text-align
:
center
;
}
.LeaderPrintDiv
.leader2Btn
{
color
:
#fff
;
padding
:
0
15px
;
height
:
30px
;
background
:
#e95252
;
border
:
1px
solid
#e95252
;
cursor
:
pointer
;
border-radius
:
15px
;
outline
:
none
;
}
.cursorpointer
{
cursor
:
pointer
;
}
.text-decoration
{
text-decoration
:
underline
;
}
input
::-webkit-outer-spin-button
,
input
::-webkit-inner-spin-button
{
-webkit-appearance
:
none
;
}
input
[
type
=
"number"
]
{
-moz-appearance
:
textfield
;
}
.w150
{
width
:
150px
!important
;
}
.Receipt_box
{
padding
:
15px
;
color
:
#c94052
;
width
:
614px
;
background-color
:
rgba
(
242
,
242
,
242
,
1
);
border
:
1px
solid
rgba
(
228
,
228
,
228
,
1
)
}
.Receipt_box.color_blur
{
color
:
#106BAF
;
}
.Receipt_box.color_blur
.rb_stit
span
{
display
:
inline-block
;
border-bottom
:
2px
solid
#106BAF
;
padding
:
0
20px
}
.rb_tit
{
font-size
:
18px
;
text-align
:
center
}
.rb_stit
{
font-size
:
14px
;
text-align
:
center
}
.rb_stit
span
{
display
:
inline-block
;
border-bottom
:
2px
solid
#C94052
;
padding
:
0
20px
}
.rb_top_row
{
display
:
flex
;
justify-content
:
space-between
;
font-size
:
12px
;
}
.rb_top_row
span
._r_name
{
color
:
#333333
}
.rb_top_row
span
._r_bold
{
font-weight
:
bold
}
.rb_top_row
._r_time
span
{
color
:
#333333
}
._r_mb5
{
margin-bottom
:
5px
;
}
.Receipt_table
{
width
:
100%
;
font-size
:
14px
;
text-align
:
center
}
.Receipt_table
.th
{
font-weight
:
200
!important
}
._r_mt10
{
margin-top
:
10px
;
}
._bg__
{
display
:
inline-block
;
padding
:
2px
8px
;
color
:
white
;
border-radius
:
4px
}
._bg_red
{
background-color
:
#E95252
;
}
._bg_green
{
background-color
:
#2BB87C
}
.text_d
{
text-decoration
:
underline
;
cursor
:
pointer
;
}
.PingFangSC
{
font-weight
:
bold
}
.Bill_par
{
position
:
relative
;
}
tr
._item_list
{
border-bottom
:
1px
solid
#E5E5E5
;
height
:
78px
;
}
tr
._item_list
td
{
border-bottom
:
1px
solid
#e5e5e5
;
padding
:
10px
;
}
/* tr._t_head th{border-top: 1px solid #e5e5e5;} */
tr
._item_list
td
:first-child
{
border-left
:
1px
solid
#e5e5e5
;
}
tr
._item_list
td
:last-child
{
border-right
:
1px
solid
#e5e5e5
;
}
._head_img
{
width
:
28px
;
height
:
28px
;
border-radius
:
50%
;
vertical-align
:
middle
;
}
._btn_group
{
font-size
:
14px
;
}
.icon-daiqueren
{
color
:
#4BCA81
}
.icon-yiqueren
{
color
:
#4BCA81
}
.icon-yiquxiao
{
color
:
#959595
}
.icon-shenhebohui
{
color
:
#E95252
}
.icon-icon-zancun
{
color
:
#FF9C01
}
.singeRowTable
tr
:hover
{
background-color
:
white
}
._TradeWayList
{
padding
:
5px
10px
;
background-color
:
#EEEEEE
;
border-radius
:
4px
;
margin
:
10px
0
;
width
:
230px
}
._bold
{
font-weight
:
bold
}
._bank_name
,
._bank_type
{
display
:
inline-block
;
background-color
:
#333333
;
color
:
white
;
padding
:
2px
4px
;
border-radius
:
4px
;
margin-left
:
10px
;
}
._bank_name
{
margin-left
:
10px
;
cursor
:
pointer
;
}
._bank_type
{
background-color
:
#2AAEF2
}
._bank_type2
{
background-color
:
#FF9C01
}
.cdForm
.el-form-item
{
display
:
inline-block
;
}
.leader2Btn
{
color
:
#fff
;
padding
:
0
15px
;
height
:
30px
;
background
:
#e95252
;
border
:
1px
solid
#e95252
;
cursor
:
pointer
;
border-radius
:
15px
;
outline
:
none
;
}
</
style
>
src/router/config.js
View file @
2027e3a2
...
...
@@ -1071,6 +1071,14 @@ export default {
title
:
'车行订单'
},
},
{
path
:
'/OAadvancePayment'
,
//预付款冲抵
name
:
'OAadvancePayment'
,
component
:
resolve
=>
require
([
'@/components/public/OAadvancePayment'
],
resolve
),
meta
:
{
title
:
'预付款冲抵'
},
},
{
path
:
'/singleProductModifyHotelOrder'
,
//酒店预定订单变更
name
:
'singleProductModifyHotelOrder'
,
...
...
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