Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
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
xugong
hls-xcmg-vue-app
Commits
88aab3df
Commit
88aab3df
authored
Jan 07, 2020
by
李晓兵
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://hel.hand-china.com/xugong/hls-xcmg-vue-app
into develop
parents
160771f4
167be69d
Pipeline
#4499
canceled with stages
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
10 deletions
+29
-10
create-base-info.vue
src/pages/contractCreate/create-base-info.vue
+2
-3
sales-info.vue
src/pages/contractCreate/sales-info.vue
+1
-1
message-list.vue
src/pages/messageCenter/message-list.vue
+19
-2
new-list.vue
src/pages/pay/payment/new-list.vue
+7
-4
No files found.
src/pages/contractCreate/create-base-info.vue
View file @
88aab3df
...
...
@@ -335,7 +335,7 @@
</div>
</div>
<div
v-if=
"!fromPutted"
>
<item-option
v-for=
"(item,index) in selectUdertake"
:key=
"index"
class=
"mySlider"
>
<item-option
v-for=
"(item,index) in selectUdertake"
ref=
"underTake"
:key=
"index"
class=
"mySlider"
>
<list-item
:item-height=
"68"
>
<item>
<span
slot=
"left-icon"
class=
"left-icon"
>
{{
index
+
1
}}
</span>
...
...
@@ -570,8 +570,6 @@ export default {
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
Object
.
assign
(
vm
.
saveInfo
,
res
.
info
)
vm
.
selectUdertake
=
res
.
lists
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
...
...
@@ -978,6 +976,7 @@ export default {
}
})
this
.
selectUdertake
.
splice
(
deleteIndex
,
1
)
this
.
$refs
.
underTake
[
0
].
reset
()
this
.
deleteGuta
(
e
)
},
},
...
...
src/pages/contractCreate/sales-info.vue
View file @
88aab3df
...
...
@@ -17,7 +17,7 @@
<list-item
:item-height=
"44"
class=
"second-part"
>
<item
:showArrow=
"true"
@
click
.
native=
"picker"
>
<div
slot=
"name"
class=
"font-color required"
>
承租人
</div>
<input
slot=
"content"
v-model=
"lessee"
placeholder=
"请选择"
>
<input
slot=
"content"
v-model=
"lessee"
readonly
placeholder=
"请选择"
>
</item>
<item
:showArrow=
"true"
>
<div
slot=
"name"
class=
"font-color required"
>
业务类型
</div>
...
...
src/pages/messageCenter/message-list.vue
View file @
88aab3df
...
...
@@ -49,7 +49,7 @@
</div>
</list-item>
<div
slot=
"buttons"
>
<option-button
type=
"warn"
text=
"删除"
@
click
.
native=
"deleteFun(parentIndex)"
/>
<option-button
type=
"warn"
text=
"删除"
@
click
.
native=
"deleteFun(parentIndex
,item
)"
/>
</div>
</item-option>
</section>
...
...
@@ -161,7 +161,23 @@ export default {
}
})
},
deleteFun
(
Index
)
{
deleteData
(
item
)
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'app_notice_delete'
let
param
=
{
notice_id
:
item
.
notice_id
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
hlsPopup
.
showSuccess
(
'删除成功'
)
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
deleteFun
(
Index
,
item
)
{
let
vm
=
this
hlsPopup
.
showConfirm
({
title
:
'提示'
,
...
...
@@ -171,6 +187,7 @@ export default {
vm
.
list
.
remove
(
Index
)
vm
.
list
.
sort
()
vm
.
$refs
.
itemOption
[
0
].
reset
()
vm
.
deleteData
(
item
)
}
},
})
...
...
src/pages/pay/payment/new-list.vue
View file @
88aab3df
...
...
@@ -40,9 +40,7 @@
</div>
<div
class=
"pay-input"
>
<span>
逾期利息
</span>
<CurrencyInput
v-model=
"liquidated_damages"
class=
"currencyInput"
readonly
type=
"text"
placeholder=
"请输入支付金额"
/>
<span
class=
"currencySpan"
>
¥
{{
liquidated_damages
|
currency
}}
</span>
</div>
</div>
</div>
...
...
@@ -202,6 +200,7 @@ export default {
</
script
>
<
style
lang=
'less'
>
#first-pay {
.currencyInput{
height:37px;
line-height: 37px;
...
...
@@ -300,7 +299,11 @@ export default {
display: flex;
align-items: center;
}
.currencySpan{
display: inline-block;
text-align: right;
padding-right:10px;
}
input {
flex: 3;
text-align: right;
...
...
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