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
f40498aa
Commit
f40498aa
authored
Dec 10, 2019
by
linxin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'liuxin' into develop
parents
32430c09
adb1540d
Pipeline
#4112
canceled with stages
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
53 additions
and
4 deletions
+53
-4
message-list.vue
src/pages/messageCenter/message-list.vue
+5
-2
reject-detail.vue
src/pages/messageCenter/reject-detail.vue
+29
-2
pay-page.vue
src/pages/pay/pay-page.vue
+19
-0
No files found.
src/pages/messageCenter/message-list.vue
View file @
f40498aa
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
v-if=
"item.notice_type==2"
class=
"detail-wrap"
@
click=
"goDetail"
>
<div
v-if=
"item.notice_type==2"
class=
"detail-wrap"
@
click=
"goDetail
(item.notice_id)
"
>
<div
class=
"detail-wrap-content"
>
<div
class=
"detail-wrap-content"
>
<span>
查看详情
</span>
<span>
查看详情
</span>
<img
src=
"@/assets/messageCenter/right-gray.png"
>
<img
src=
"@/assets/messageCenter/right-gray.png"
>
...
@@ -119,9 +119,12 @@ export default {
...
@@ -119,9 +119,12 @@ export default {
}
}
}
}
},
},
goDetail
()
{
goDetail
(
e
)
{
this
.
$router
.
push
({
this
.
$router
.
push
({
name
:
'RejectDetail'
,
name
:
'RejectDetail'
,
params
:
{
notice_id
:
e
,
},
})
})
},
},
getInfo
()
{
getInfo
()
{
...
...
src/pages/messageCenter/reject-detail.vue
View file @
f40498aa
...
@@ -9,14 +9,41 @@
...
@@ -9,14 +9,41 @@
<h-content>
<h-content>
<div
class=
"userInfo"
>
审批意见
</div>
<div
class=
"userInfo"
>
审批意见
</div>
<div
class=
"info-content"
>
<div
class=
"info-content"
>
<p>
XXXXXXXXX。请联系业务员重新提交申请,谢谢!
</p>
<p>
{{
notice_detail
}}
</p>
</div>
</div>
</h-content>
</h-content>
</h-view>
</h-view>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
export
default
{
data
()
{
return
{
notice_detail
:
''
,
}
},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
vm
.
getDetail
()
})
},
methods
:
{
getDetail
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'app_notice_detail_query'
let
param
=
{
notice_id
:
vm
.
$route
.
params
.
notice_id
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
vm
.
notice_detail
=
res
.
info
.
notice_detail
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
},
}
}
</
script
>
</
script
>
<
style
lang=
"less"
>
<
style
lang=
"less"
>
...
...
src/pages/pay/pay-page.vue
View file @
f40498aa
...
@@ -72,6 +72,9 @@ export default {
...
@@ -72,6 +72,9 @@ export default {
return
{
return
{
name
:
''
,
name
:
''
,
url
:
''
,
url
:
''
,
info
:
{
},
showSelect
:
false
,
showSelect
:
false
,
showpay
:
true
,
showpay
:
true
,
isSuccess
:
false
,
isSuccess
:
false
,
...
@@ -102,6 +105,22 @@ export default {
...
@@ -102,6 +105,22 @@ export default {
vm
.
showpay
=
false
vm
.
showpay
=
false
},
1000
)
},
1000
)
},
},
getDetail
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'order_info_query'
let
param
=
{
order_id
:
vm
.
$route
.
params
.
order_id
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
}
else
{
hlsPopup
.
showLongCenter
(
res
.
message
)
}
})
},
searchResult
()
{
searchResult
()
{
let
vm
=
this
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'merchant_query_order'
let
url
=
process
.
env
.
basePath
+
'merchant_query_order'
...
...
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