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
e54ffbe7
Commit
e54ffbe7
authored
Oct 31, 2023
by
WH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修复快照
parent
eddd1962
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
69 additions
and
182 deletions
+69
-182
index.js
src/business/infbcd/event/index.js
+0
-15
Infsea.vue
src/business/infbcd/views/Infsea.vue
+3
-3
index.js
src/business/infbed/event/index.js
+0
-18
Infsea.vue
src/business/infbed/views/Infsea.vue
+3
-2
index.js
src/business/infbod/event/index.js
+0
-15
Infsea.vue
src/business/infbod/views/Infsea.vue
+3
-2
index.js
src/business/infbrd/event/index.js
+0
-14
Infsea.vue
src/business/infbrd/views/Infsea.vue
+3
-2
index.js
src/business/infccd/event/index.js
+0
-15
Infsea.vue
src/business/infccd/views/Infsea.vue
+3
-2
index.js
src/business/infcld/event/index.js
+0
-15
Infsea.vue
src/business/infcld/views/Infsea.vue
+3
-2
index.js
src/business/infgid/event/index.js
+0
-13
Infsea.vue
src/business/infgid/views/Infsea.vue
+3
-2
index.js
src/business/infled/event/index.js
+0
-14
Infsea.vue
src/business/infled/views/Infsea.vue
+3
-2
index.js
src/business/inflid/event/index.js
+13
-13
Infsea.vue
src/business/inflid/views/Infsea.vue
+3
-2
index.js
src/business/inftrd/event/index.js
+0
-15
Infsea.vue
src/business/inftrd/views/Infsea.vue
+3
-2
index.js
src/business/trnrel/event/index.js
+14
-14
operationFunc.js
src/mixin/operationFunc.js
+12
-0
No files found.
src/business/infbcd/event/index.js
View file @
e54ffbe7
...
...
@@ -134,20 +134,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infbcd/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -246,7 +246,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
>
快照
</c-button
>
</
template
>
...
...
@@ -317,16 +317,16 @@
</div>
</template>
<
script
>
import
commonProcess
from
"~/mixin/commonProcess"
import
event
from
"../event"
import
BctselModel
from
"~/model/Bctsel"
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
'root'
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/infbed/event/index.js
View file @
e54ffbe7
...
...
@@ -136,23 +136,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
'/#/display/'
+
trnName
+
'?trn='
+
inr
;
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infbed/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -335,7 +335,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -414,11 +414,12 @@
// import BetselModel from "~/model/Betsel";
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
event
from
"../event"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/infbod/event/index.js
View file @
e54ffbe7
...
...
@@ -134,20 +134,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infbod/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -207,7 +207,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -280,11 +280,12 @@
import
event
from
"../event"
;
import
BotselModel
from
"~/model/Botsel"
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/infbrd/event/index.js
View file @
e54ffbe7
...
...
@@ -135,19 +135,5 @@ export default {
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infbrd/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -335,7 +335,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -402,11 +402,12 @@
</template>
<
script
>
import
event
from
"../event"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{},
data
()
{
return
{
...
...
src/business/infccd/event/index.js
View file @
e54ffbe7
...
...
@@ -134,20 +134,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infccd/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -336,7 +336,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -407,6 +407,7 @@
import
event
from
"../event"
;
import
CctselModel
from
"~/model/Cctsel"
;
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
/*export default {
inject: ['root'],
...
...
@@ -426,7 +427,7 @@ import BusNavbar from "~/views/Public/BusNavbar";
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/infcld/event/index.js
View file @
e54ffbe7
...
...
@@ -133,20 +133,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/infcld/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -208,7 +208,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -276,11 +276,12 @@
import
event
from
"../event"
;
import
CltselModel
from
"~/model/Cltsel"
import
BusNavbar
from
"./BusNavbar"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
'root'
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/infgid/event/index.js
View file @
e54ffbe7
...
...
@@ -144,18 +144,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
}
},
};
src/business/infgid/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -523,7 +523,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -583,10 +583,11 @@
</template>
<
script
>
import
event
from
'../event'
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{},
data
()
{
return
{
...
...
src/business/infled/event/index.js
View file @
e54ffbe7
...
...
@@ -129,20 +129,6 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
toLetopn
()
{
// 点击开立,清空从待经办进来的时候带的行参数
localStorage
.
setItem
(
'row_letopn'
,
null
)
...
...
src/business/infled/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -346,7 +346,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
</c-button
>
快照
</c-button
>
</
template
>
</el-table-column>
...
...
@@ -425,11 +425,12 @@ import LetselModel from "~/model/Letsel";
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
event
from
"../event"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/inflid/event/index.js
View file @
e54ffbe7
...
...
@@ -165,19 +165,19 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
/
/ /
**
//
* 打开详情页面
// * @param {string} inr
//
*/
//
display(inr) {
//
getTrnNameByInr({ inr }).then((res) => {
//
if (res.respCode == SUCCESS) {
//
const trnName = res.data.toLowerCase();
//
let viewurl = "/#/display/" + trnName + "?trn=" + inr
//
window.open(viewurl, 'newwindow', 'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
//
}
//
});
//
},
checkData
(
row
){
this
.
$router
.
history
.
push
({
path
:
'/business-new/litdck'
,
...
...
src/business/inflid/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -186,7 +186,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
>
快照
</c-button
>
</
template
>
...
...
@@ -262,11 +262,12 @@
</template>
<
script
>
import
event
from
'../event'
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{},
data
()
{
return
{
...
...
src/business/inftrd/event/index.js
View file @
e54ffbe7
...
...
@@ -134,20 +134,5 @@ export default {
closeHandlerDialog
()
{
this
.
initdialog
=
false
;
},
/**
* 打开详情页面
* @param {string} inr
*/
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
},
};
src/business/inftrd/views/Infsea.vue
View file @
e54ffbe7
...
...
@@ -373,7 +373,7 @@
style=
"margin-left: 0"
size=
"small"
@
click=
"display(scope.row['inr'])"
>
详情
>
快照
</c-button
>
</
template
>
...
...
@@ -449,11 +449,12 @@ import event from "../event";
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
TrtselModel
from
"~/model/Trtsel"
;
import
operationFunc
from
"@/mixin/operationFunc"
;
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
event
],
mixins
:
[
event
,
operationFunc
],
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
...
...
src/business/trnrel/event/index.js
View file @
e54ffbe7
...
...
@@ -216,20 +216,20 @@ export default {
},
//交易快照
display
(
inr
)
{
let
params
=
{
inr
:
inr
,
transName
:
'trnrel'
,
userId
:
sessionStorage
.
getItem
(
'userId'
)
||
'ZL'
,
};
Api
.
post
(
'/service/trnrel/getTrnNameByInr'
,
params
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trninr="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
//
display(inr) {
//
let params = {
//
inr: inr,
//
transName: 'trnrel',
//
userId: sessionStorage.getItem('userId') || 'ZL',
//
};
//
Api.post('/service/trnrel/getTrnNameByInr', params).then((res) => {
//
if (res.respCode == SUCCESS) {
//
const trnName = res.data.toLowerCase();
//
let viewurl = "/#/display/" + trnName + "?trninr=" + inr
//
window.open(viewurl, 'newwindow', 'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
//
}
//
});
//
},
//处理-退回
async
onReprow
(
idx
)
{
...
...
src/mixin/operationFunc.js
View file @
e54ffbe7
// 此文件存放交易流转的一些公共方法
import
Api
from
'~/service/Api'
;
import
Utils
from
"../utils"
import
{
getTrnNameByInr
}
from
"@/service/business/common"
;
export
default
{
methods
:
{
// 提交
...
...
@@ -177,5 +178,15 @@ export default {
async
handleRefuse
(
data
)
{
this
.
$store
.
state
.
Transaction
.
operateFuns
[
data
.
operateId
][
"refuse"
]()
},
display
(
inr
)
{
getTrnNameByInr
({
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trninr="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
}
}
}
\ No newline at end of file
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