Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mingPayPc
Overview
Overview
Details
Activity
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
fengzhaoyu
mingPayPc
Commits
9b79d974
Commit
9b79d974
authored
Jul 04, 2019
by
liang ce
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
orgId测试版本
parent
8ebfd081
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
15 deletions
+18
-15
actions.js
src/api/actions.js
+0
-9
config.js
src/api/config.js
+2
-1
constant.js
src/api/constant.js
+2
-2
RechargeRecord.vue
src/components/pages/PaymentManagement/RechargeRecord.vue
+5
-2
RecordsOfConsumption.vue
...mponents/pages/PaymentManagement/RecordsOfConsumption.vue
+1
-1
main.js
src/main.js
+1
-0
router.js
src/router.js
+7
-0
No files found.
src/api/actions.js
View file @
9b79d974
import
axios
from
'axios'
;
import
constant
from
'./constant.js'
;
const
api
=
{
ddConfigGetDate
:
()
=>
{
axios
.
get
()
}
}
\ No newline at end of file
src/api/config.js
View file @
9b79d974
...
...
@@ -8,7 +8,8 @@ const config = {
let
senddate
=
qs
.
stringify
({
version
:
MINGPAY_CONSTANT
.
MINGPAY_CONSTANT_VERSION
,
url
:
MINGPAY_CONSTANT
.
MINGPAY_CONSTANT_URL
,
agentId
:
MINGPAY_CONSTANT
.
MINGPAY_CONSTANT_AGENTID
agentId
:
MINGPAY_CONSTANT
.
MINGPAY_CONSTANT_AGENTID
,
orgId
:
'ding9a93ca550f036ffe35c2f4657eb6378f'
})
return
axios
.
post
(
`http://139.196.213.18:8300/v1/auth/getJsAuthenticationParameter?
${
senddate
}
`
).
then
((
res
)
=>
{
let
agentId
=
res
.
data
.
data
.
agentId
...
...
src/api/constant.js
View file @
9b79d974
const
MINGPAY_CONSTANT
=
{
MINGPAY_CONSTANT_URL
:
'http://mingpay-web-beta.mingwork.com:8888/'
,
//
MINGPAY_CONSTANT_URL: 'http://ming.vaiwan.com/',
//
MINGPAY_CONSTANT_URL: 'http://mingpay-web-beta.mingwork.com:8888/',
MINGPAY_CONSTANT_URL
:
'http://ming.vaiwan.com/'
,
MINGPAY_CONSTANT_AGENTID
:
270198704
,
MINGPAY_CONSTANT_VERSION
:
'v1'
}
...
...
src/components/pages/PaymentManagement/RechargeRecord.vue
View file @
9b79d974
...
...
@@ -30,7 +30,9 @@
{{
departmentNameListToStr
(
departmentNameList
)
}}
</span>
<span
slot=
"chargeAmount"
>
充值金额
</span>
<span
slot=
"agent"
>
经办人
</span>
<span
slot=
"agent"
slot-scope=
"agent, record"
>
{{
agent
===
''
&&
record
.
payTypeCode
===
'EXTERNAL_ALI_RECHAGE'
?
'支付宝自充'
:
agent
}}
</span>
<span
slot=
"orderNo"
>
单号
</span>
<span
slot=
"orderStatus"
slot-scope=
"orderStatus"
>
{{
returnStatus
(
orderStatus
)
}}
...
...
@@ -65,7 +67,8 @@ export default {
dataIndex
:
'chargeAmount'
},
{
title
:
'经办人'
,
dataIndex
:
'agent'
dataIndex
:
'agent'
,
scopedSlots
:
{
customRender
:
'agent'
}
},
{
title
:
'单号'
,
dataIndex
:
'orderNo'
...
...
src/components/pages/PaymentManagement/RecordsOfConsumption.vue
View file @
9b79d974
...
...
@@ -152,7 +152,7 @@ export default {
},
// 退款
refund
()
{
const
_that
=
this
;
const
_that
=
this
if
(
this
.
form
.
getFieldsValue
().
remark
===
undefined
)
{
this
.
$message
.
error
(
'请输入备注'
)
}
else
{
...
...
src/main.js
View file @
9b79d974
...
...
@@ -35,6 +35,7 @@ Vue.prototype.$message = message
router
.
beforeEach
(
function
(
to
,
from
,
next
)
{
// 项目初始化进行鉴权
console
.
log
(
'main'
)
if
(
to
.
name
===
'noPermission'
||
to
.
name
===
'configError'
)
{
next
()
}
else
{
...
...
src/router.js
View file @
9b79d974
...
...
@@ -95,6 +95,13 @@ export default new Router({
path
:
'/configError'
,
name
:
'configError'
,
component
:
resolve
=>
require
([
'./components/pages/ConfigError.vue'
],
resolve
)
},
{
path
:
'/*'
,
redirect
:
'/dashboard'
,
beforeEnter
(
to
,
from
,
next
)
{
console
.
log
(
to
)
}
}
]
})
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