Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-web-vue
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
isc-v3.1-tmp
isc-web-vue
Commits
71d4147a
Commit
71d4147a
authored
Oct 28, 2024
by
李少勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sndselcop 交易优化修改
parent
21e49d7e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
30 deletions
+17
-30
Schpnl.vue
src/page/Frontend/Rcvsel/views/Schpnl.vue
+1
-1
index.js
src/page/Frontend/Sndselcop/event/index.js
+5
-17
Schpnl.vue
src/page/Frontend/Sndselcop/views/Schpnl.vue
+10
-9
index.vue
src/page/Frontend/Sndselcop/views/index.vue
+1
-3
No files found.
src/page/Frontend/Rcvsel/views/Schpnl.vue
View file @
71d4147a
...
@@ -209,7 +209,7 @@ export default {
...
@@ -209,7 +209,7 @@ export default {
{
{
label
:
"币种"
,
label
:
"币种"
,
prop
:
"cur"
,
prop
:
"cur"
,
width
:
"
10
0px"
width
:
"
8
0px"
},
},
{
{
label
:
"金额"
,
label
:
"金额"
,
...
...
src/page/Frontend/Sndselcop/event/index.js
View file @
71d4147a
import
Api
from
"~/service/Api"
;
import
Api
from
"~/service/Api"
;
import
getSubtyp
from
'~/page/Frontend/Rcvsel/event/getSubtyp.js'
;
import
getSubtyp
from
'~/page/Frontend/Rcvsel/event/getSubtyp.js'
;
import
moment
from
"moment"
;
import
moment
from
"moment"
;
import
Sndsel
from
"../model"
;
import
Utils
from
"~/utils"
;
export
default
{
export
default
{
mixins
:
[
getSubtyp
],
mixins
:
[
getSubtyp
],
...
@@ -61,23 +63,9 @@ export default {
...
@@ -61,23 +63,9 @@ export default {
this
.
load
=
false
;
this
.
load
=
false
;
},
},
async
handleReset
()
{
async
handleReset
()
{
this
.
model
.
sndp
.
msgtyp
=
""
;
let
resetModel
=
new
Sndsel
().
data
this
.
model
.
sndp
.
rcvdatsta
=
new
Date
();
Utils
.
copyValueFromVoData
(
this
.
model
,
resetModel
);
this
.
model
.
sndp
.
rcvdatend
=
new
Date
();
this
.
handleSearch
();
this
.
model
.
sndp
.
subtyp
=
""
;
this
.
model
.
sndp
.
sndbak
=
""
;
this
.
model
.
sndp
.
revbak
=
""
;
this
.
model
.
sndp
.
actbic
=
""
;
this
.
model
.
sndp
.
othref
=
""
;
this
.
model
.
sndp
.
ownref
=
""
;
this
.
model
.
sndp
.
cur
=
""
;
this
.
model
.
sndp
.
act
=
""
;
this
.
model
.
sndp
.
amtmin
=
""
;
this
.
model
.
sndp
.
amtmax
=
""
;
this
.
model
.
sndp
.
chnipt
=
""
;
this
.
model
.
sndp
.
rspsta
=
""
;
this
.
model
.
sndp
.
dtlchg
=
""
;
this
.
model
.
sndp
.
sta
=
""
;
},
},
// pageSize改变
// pageSize改变
handleSizeChange
(
val
)
{
handleSizeChange
(
val
)
{
...
...
src/page/Frontend/Sndselcop/views/Schpnl.vue
View file @
71d4147a
...
@@ -148,13 +148,14 @@
...
@@ -148,13 +148,14 @@
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"dbClickRow"
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 4
8
0px)"
:highlight-current-row=
"true"
>
size=
"small"
:border=
"true"
height=
"calc(100vh - 4
2
0px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
</el-table-column>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
:min-width=
"item.width"
>
:min-width=
"item.width"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<c-select-value-to-label
v-if=
"item.prop == 'sta'"
v-model=
"scope.row.sta"
:code=
"codes.stacod"
></c-select-value-to-label>
<c-select-value-to-label
v-if=
"item.prop == 'sta'"
v-model=
"scope.row.sta"
:code=
"codes.stacod"
></c-select-value-to-label>
<span
v-else-if=
"item.prop == 'amt'"
>
{{
moneyFormat
(
scope
.
row
.
amt
,
scope
.
row
.
cur
)
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
prop
]
}}
</span>
<span
v-else
>
{{
scope
.
row
[
item
.
prop
]
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -189,12 +190,12 @@ export default {
...
@@ -189,12 +190,12 @@ export default {
{
{
label
:
"起息日"
,
label
:
"起息日"
,
prop
:
"valdat"
,
prop
:
"valdat"
,
width
:
"1
5
0px"
width
:
"1
2
0px"
},
},
{
{
label
:
"20域编号"
,
label
:
"20域编号"
,
prop
:
"ownref"
,
prop
:
"ownref"
,
width
:
"1
5
0px"
width
:
"1
2
0px"
},
},
{
{
label
:
"21域名编号"
,
label
:
"21域名编号"
,
...
@@ -204,17 +205,17 @@ export default {
...
@@ -204,17 +205,17 @@ export default {
{
{
label
:
"币种"
,
label
:
"币种"
,
prop
:
"cur"
,
prop
:
"cur"
,
width
:
"
10
0px"
width
:
"
8
0px"
},
},
{
{
label
:
"金额"
,
label
:
"金额"
,
prop
:
"amt"
,
prop
:
"amt"
,
width
:
"1
0
0px"
width
:
"1
2
0px"
},
},
{
{
label
:
"账号"
,
label
:
"账号"
,
prop
:
"act"
,
prop
:
"act"
,
width
:
"1
0
0px"
width
:
"1
5
0px"
},
},
{
{
label
:
"费用明细"
,
label
:
"费用明细"
,
...
@@ -224,7 +225,7 @@ export default {
...
@@ -224,7 +225,7 @@ export default {
{
{
label
:
"报文类型"
,
label
:
"报文类型"
,
prop
:
"subtyp"
,
prop
:
"subtyp"
,
width
:
"1
2
0px"
width
:
"1
5
0px"
},
},
{
{
label
:
"行内系统"
,
label
:
"行内系统"
,
...
@@ -259,12 +260,12 @@ export default {
...
@@ -259,12 +260,12 @@ export default {
{
{
label
:
"报文标准"
,
label
:
"报文标准"
,
prop
:
"msgtyp"
,
prop
:
"msgtyp"
,
width
:
"1
5
0px"
width
:
"1
2
0px"
},
},
{
{
label
:
"GPI标识"
,
label
:
"GPI标识"
,
prop
:
"gpi"
,
prop
:
"gpi"
,
width
:
"1
5
0px"
width
:
"1
2
0px"
},
},
{
{
label
:
"子系统"
,
label
:
"子系统"
,
...
...
src/page/Frontend/Sndselcop/views/index.vue
View file @
71d4147a
...
@@ -22,19 +22,17 @@ import Sndsel from "../model";
...
@@ -22,19 +22,17 @@ import Sndsel from "../model";
import
event
from
"../event"
import
event
from
"../event"
import
Schpnl
from
"./Schpnl.vue"
import
Schpnl
from
"./Schpnl.vue"
export
default
{
export
default
{
name
:
"Sndselcop"
,
name
:
"Sndselcop"
,
components
:{
components
:{
"m-schpnl"
:
Schpnl
,
"m-schpnl"
:
Schpnl
,
},
},
provide
()
{
provide
()
{
return
{
return
{
root
:
this
root
:
this
}
}
},
},
mixins
:
[
event
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
event
],
data
(){
data
(){
return
{
return
{
tabVal
:
"schpnl"
,
tabVal
:
"schpnl"
,
...
...
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