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
zhouqian
vue-gjjs
Commits
6cc38069
Commit
6cc38069
authored
Jul 25, 2022
by
Wuyuqiu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bftset、bftdcr、bftdrv交易bug修改提交
parent
07a651db
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
32 additions
and
4 deletions
+32
-4
Betdcrs.vue
src/views/Business/Bftdcr/Betdcrs.vue
+1
-0
index.vue
src/views/Business/Bftdrv/index.vue
+3
-0
Setp.vue
src/views/Business/Bftset/Setp.vue
+2
-2
index.vue
src/views/Business/Infbfd/index.vue
+1
-0
Infsea.vue
src/views/Business/Infdet/Infsea.vue
+4
-2
ReviewBftdrv.vue
src/views/Review/Business/ReviewBftdrv.vue
+19
-0
ReviewRouter.js
src/views/Review/ReviewRouter.js
+2
-0
No files found.
src/views/Business/Bftdcr/Betdcrs.vue
View file @
6cc38069
...
...
@@ -664,6 +664,7 @@ export default {
},
set
(
val
)
{
this
.
model
.
advdisflg
=
val
?
"X"
:
""
;
this
.
model
.
trnmod
.
trndoc
.
addstr750
=
""
;
},
},
},
...
...
src/views/Business/Bftdrv/index.vue
View file @
6cc38069
...
...
@@ -131,6 +131,9 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
)
if
(
this
.
isInDisplay
){
this
.
restoreDisplay
();
}
//TODO 处理数据逻辑
}
...
...
src/views/Business/Bftset/Setp.vue
View file @
6cc38069
...
...
@@ -454,11 +454,11 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"
SG000254
"
prop=
"bpdgrp.rec.ffttyp"
>
<el-form-item
label=
"
福费廷转卖类型
"
prop=
"bpdgrp.rec.ffttyp"
>
<c-input
v-model=
"model.bpdgrp.rec.ffttyp"
maxlength=
"40"
placeholder=
"请输入
SG000254
"
placeholder=
"请输入
福费廷转卖类型
"
disabled
></c-input>
</el-form-item>
...
...
src/views/Business/Infbfd/index.vue
View file @
6cc38069
...
...
@@ -106,6 +106,7 @@ import Ordpan from "./Ordpan"
export
default
{
name
:
'Infbfd'
,
components
:{
"m-infsea"
:
Infsea
,
"m-ovwp"
:
Ovwp
,
...
...
src/views/Business/Infdet/Infsea.vue
View file @
6cc38069
...
...
@@ -646,7 +646,7 @@
-->
<el-dialog
:visible
.
sync=
"initdialog"
:title=
"'交易列表'"
append-to-body
>
<div
class=
"m-list-btns"
>
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
@
onChoose=
"onChoose"
<m-busbtn
ref=
"childs"
:ownref=
"ownref"
trnCode=
"detsel"
ownrefPath=
"dedgrp"
:model=
"detselModel"
@
onChoose=
"onChoose"
>
11
</m-busbtn
>
</div>
...
...
@@ -659,8 +659,9 @@ import Api from "~/service/Api";
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
;
import
Event
from
"~/model/Infdet/Event"
;
import
DetselModel
from
"~/model/Detsel"
//交易跳转逻辑
import
BusNavbar
from
"~/views/
Business/Infdet
/BusNavbar"
;
import
BusNavbar
from
"~/views/
Public
/BusNavbar"
;
export
default
{
inject
:
[
"root"
],
...
...
@@ -669,6 +670,7 @@ export default {
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
detselModel
:
new
DetselModel
().
data
,
ownref
:
""
,
initdialog
:
false
,
dialogTableVisible
:
false
,
...
...
src/views/Review/Business/ReviewBftdrv.vue
0 → 100644
View file @
6cc38069
<
template
>
<ReviewWrapper>
<Bftdrv></Bftdrv>
</ReviewWrapper>
</
template
>
<
script
>
import
Bftdrv
from
"~/views/Business/Bftdrv"
;
import
{
ReviewWrapper
}
from
"~/components/gj-common.min.js"
;
export
default
{
name
:
"ReviewBftsnd"
,
components
:
{
ReviewWrapper
,
Bftdrv
},
created
()
{},
mounted
()
{},
};
</
script
>
<
style
></
style
>
src/views/Review/ReviewRouter.js
View file @
6cc38069
...
...
@@ -24,6 +24,7 @@ import ReviewBftsnd from "./Business/ReviewBftsnd.vue";
import
ReviewBftdcr
from
"./Business/ReviewBftdcr.vue"
;
import
ReviewLitopn
from
"./Business/ReviewLitopn.vue"
;
import
ReviewBftset
from
"./Business/ReviewBftset.vue"
;
import
ReviewBftdrv
from
"./Business/ReviewBftdrv.vue"
;
const
ReviewRouter
=
[
...
...
@@ -71,6 +72,7 @@ const ReviewRouter = [
{
path
:
"litopn"
,
component
:
ReviewLitopn
,
name
:
"ReviewLitopn"
,
meta
:
{
title
:
"复核-Litopn"
}
},
{
path
:
"bftset"
,
component
:
ReviewBftset
,
name
:
"ReviewBftset"
,
meta
:
{
title
:
"复核-Bftset"
}
},
{
path
:
"litame"
,
component
:
ReviewLitame
,
name
:
"ReviewLitame"
,
meta
:
{
title
:
"复核-Litame"
}
},
{
path
:
"bftdrv"
,
component
:
ReviewBftdrv
,
name
:
"ReviewBftdrv"
,
meta
:
{
title
:
"复核-Bftdrv"
}
},
];
...
...
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