Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
fukai
vue-gjjs
Commits
03bebe1e
Commit
03bebe1e
authored
Aug 17, 2022
by
nanrui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
botacc,botpay测试bug 交易快照数据显示的处理
parent
cd86ca4f
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
52 additions
and
7 deletions
+52
-7
Setp.vue
src/views/Business/Botacc/Setp.vue
+2
-2
index.vue
src/views/Business/Botacc/index.vue
+3
-0
Setp.vue
src/views/Business/Botpay/Setp.vue
+2
-5
index.vue
src/views/Business/Botpay/index.vue
+3
-0
ReviewBotacc.vue
src/views/Review/Business/ReviewBotacc.vue
+19
-0
ReviewBotpay.vue
src/views/Review/Business/ReviewBotpay.vue
+19
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+4
-0
No files found.
src/views/Business/Botacc/Setp.vue
View file @
03bebe1e
...
...
@@ -356,12 +356,12 @@ export default {
selIds
=
[];
this
.
model
.
setmod
.
docamt
=
"0.000"
;
this
.
model
.
liaall
.
tensetstm
.
rows
=
[];
this
.
model
.
bodgrp
.
rec
.
focflg
=
''
;
//
this.model.bodgrp.rec.focflg = '';
// this.model.liaall.tenstm.rows = []
}
else
{
selIds
=
[
selection
[
0
]
+
1
];
this
.
model
.
setmod
.
docamt
=
this
.
model
.
bodgrp
.
cbs
.
max
.
amt
;
this
.
model
.
bodgrp
.
rec
.
focflg
=
'X'
;
//
this.model.bodgrp.rec.focflg = 'X';
}
//
...
...
src/views/Business/Botacc/index.vue
View file @
03bebe1e
...
...
@@ -136,6 +136,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
)
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
this
.
$nextTick
(()
=>
{
this
.
$refs
.
setp
.
$refs
.
table
.
$refs
.
table
.
toggleAllSelection
();
this
.
model
.
setmod
.
docamt
=
this
.
model
.
bodgrp
.
cbs
.
max
.
amt
;
...
...
src/views/Business/Botpay/Setp.vue
View file @
03bebe1e
...
...
@@ -297,7 +297,6 @@ export default {
mixins
:
[
commonProcess
],
data
()
{
return
{
isDisabled
:
false
,
stmData
:
{
columns
:
[
'1 1 "Type" 80'
,
...
...
@@ -351,12 +350,10 @@ export default {
...
Event
,
async
change
()
{
if
(
this
.
model
.
bodgrp
.
rec
.
focflg
===
"X"
)
{
this
.
isDisabled
=
true
;
this
.
model
.
setmod
.
redamt
=
this
.
model
.
setmod
.
docamt
;
let
rtnmsg
=
await
this
.
executeDefault
(
"liaall.tenstm"
);
this
.
model
.
bodgrp
.
rec
.
docsta
=
rtnmsg
.
data
.
bodgrp_rec_docsta
;
}
else
{
this
.
isDisabled
=
false
;
this
.
model
.
setmod
.
redamt
=
"0.00"
;
let
rtnmsg
=
await
this
.
executeDefault
(
"liaall.tenstm"
);
this
.
model
.
bodgrp
.
rec
.
docsta
=
rtnmsg
.
data
.
bodgrp_rec_docsta
;
...
...
@@ -375,12 +372,12 @@ export default {
selIds
=
[];
this
.
model
.
setmod
.
docamt
=
"0.000"
;
this
.
model
.
liaall
.
tensetstm
.
rows
=
[];
this
.
model
.
bodgrp
.
rec
.
focflg
=
''
;
//
this.model.bodgrp.rec.focflg = '';
// this.model.liaall.tenstm.rows = []
}
else
{
selIds
=
[
selection
[
0
]
+
1
];
this
.
model
.
setmod
.
docamt
=
this
.
model
.
bodgrp
.
cbs
.
max
.
amt
;
this
.
model
.
bodgrp
.
rec
.
focflg
=
'X'
;
//
this.model.bodgrp.rec.focflg = 'X';
}
//
console
.
log
(
this
.
model
.
liaall
.
tensetstm
);
...
...
src/views/Business/Botpay/index.vue
View file @
03bebe1e
...
...
@@ -140,6 +140,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
)
//TODO 处理数据逻辑
if
(
this
.
isInDisplay
)
{
this
.
restoreDisplay
();
}
this
.
$nextTick
(()
=>
{
this
.
$refs
.
setp
.
$refs
.
table
.
$refs
.
table
.
toggleAllSelection
();
this
.
model
.
setmod
.
docamt
=
this
.
model
.
bodgrp
.
cbs
.
max
.
amt
;
...
...
src/views/Review/Business/ReviewBotacc.vue
0 → 100644
View file @
03bebe1e
<
template
>
<ReviewWrapper>
<Botacc></Botacc>
</ReviewWrapper>
</
template
>
<
script
>
import
Botacc
from
"~/views/Business/Botacc"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewDetdrv"
,
components
:
{
ReviewWrapper
,
Botacc
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
src/views/Review/Business/ReviewBotpay.vue
0 → 100644
View file @
03bebe1e
<
template
>
<ReviewWrapper>
<Botpay></Botpay>
</ReviewWrapper>
</
template
>
<
script
>
import
Botpay
from
"~/views/Business/Botpay"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewDetdrv"
,
components
:
{
ReviewWrapper
,
Botpay
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
src/views/Review/ReviewRouter.js
View file @
03bebe1e
...
...
@@ -42,6 +42,8 @@ import ReviewBetset from "./Business/ReviewBetset.vue";
import
ReviewDetame
from
"./Business/ReviewDetame.vue"
;
import
ReviewBetdcr
from
"./Business/ReviewBetdcr.vue"
;
import
ReviewLitdav
from
"./Business/ReviewLitdav.vue"
;
import
ReviewBotacc
from
"./Business/ReviewBotacc.vue"
;
import
ReviewBotpay
from
"./Business/ReviewBotpay.vue"
;
const
ReviewRouter
=
[
...
...
@@ -106,6 +108,8 @@ const ReviewRouter = [
{
path
:
"detame"
,
component
:
ReviewDetame
,
name
:
"ReviewDetame"
,
meta
:
{
title
:
"复核-Detame"
}
},
{
path
:
"betdcr"
,
component
:
ReviewBetdcr
,
name
:
"ReviewBetdcr"
,
meta
:
{
title
:
"复核-Betdcr"
}
},
{
path
:
"litdav"
,
component
:
ReviewLitdav
,
name
:
"ReviewLitdav"
,
meta
:
{
title
:
"复核-Litdav"
}
},
{
path
:
"botacc"
,
component
:
ReviewBotacc
,
name
:
"ReviewBotacc"
,
meta
:
{
title
:
"复核-Botacc"
}
},
{
path
:
"botpay"
,
component
:
ReviewBotpay
,
name
:
"ReviewBotpay"
,
meta
:
{
title
:
"复核-Botpay"
}
},
];
...
...
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