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
0fb3ad77
Commit
0fb3ad77
authored
Oct 22, 2024
by
李少勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oftdtl 交易修改
parent
3d611394
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
42 deletions
+47
-42
index.js
src/page/Frontend/Oftdtl/event/index.js
+21
-3
Oftdtl.vue
src/page/Frontend/Oftdtl/views/Oftdtl.vue
+0
-0
index.vue
src/page/Frontend/Oftdtl/views/index.vue
+8
-16
Schpnl.vue
src/page/Frontend/Rcvsel/views/Schpnl.vue
+18
-23
No files found.
src/page/Frontend/Oftdtl/event/index.js
View file @
0fb3ad77
import
Api
from
"~/service/Api"
;
import
moment
from
"moment"
;
import
Oftdtl
from
"../model"
export
default
{
methods
:
{
async
handleSearch
()
{
},
async
handleReset
()
{
this
.
model
=
new
Oftdtl
().
data
;
},
// pageSize改变
handleSizeChange
(
val
)
{
this
.
pagination
.
pageNum
=
1
;
this
.
pagination
.
pageSize
=
val
;
this
.
handleSearch
();
},
// 页码改变
handleCurrentChange
(
val
)
{
this
.
pagination
.
pageNum
=
val
;
this
.
handleSearch
();
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
}
},
};
src/page/Frontend/Oftdtl/views/Oftdtl.vue
View file @
0fb3ad77
This diff is collapsed.
Click to expand it.
src/page/Frontend/Oftdtl/views/index.vue
View file @
0fb3ad77
<
template
>
<div
class=
"eContainer"
>
<c-page
title=
"报文详情展示"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"120px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
<!--fmsp PD000000 展示 -->
<el-tab-pane
:label=
"$t('fmsp.展示')"
name=
"oftdtl"
>
<m-oftdtl
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
</c-tabs>
</el-form>
</c-page>
<div
class=
"eContainer-search"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"120px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-content>
<m-oftdtl
:model=
"model"
:codes=
"codes"
/>
</c-content>
</el-form>
</div>
</
template
>
<
script
>
...
...
@@ -37,7 +32,6 @@ export default {
mixins
:
[
operationFunc
,
commonDepend
,
event
,
buildFn
],
data
()
{
return
{
tabVal
:
"oftdtl"
,
trnName
:
"oftdtl"
,
model
:
new
Oftdtl
().
data
,
rules
:
Check
,
...
...
@@ -50,9 +44,7 @@ export default {
}
},
methods
:
{
myTabClick
(
tab
)
{
this
.
tabClick
(
tab
)
}
},
created
:
async
function
()
{
console
.
log
(
"进入oftdtl交易"
);
...
...
src/page/Frontend/Rcvsel/views/Schpnl.vue
View file @
0fb3ad77
...
...
@@ -151,29 +151,25 @@
<el-col
:span=
"24"
style=
"margin-top: 10px"
>
<div
style=
"height: 90%"
>
<div>
<c-col
:span=
"24"
>
<el-tabs
v-model=
"activeTab"
class=
"y-tabs"
>
<el-tab-pane
label=
"发报查询"
name=
"sb"
>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 420px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
:min-width=
"item.width"
>
<
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>
<span
v-else
>
{{
scope
.
row
[
item
.
prop
]
}}
</span>
</
template
>
</el-table-column>
</el-table>
<el-pagination
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"pagination.total"
:page-size=
"pagination.pageSize"
:current-page
.
sync=
"pagination.pageNum"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
>
</el-pagination>
</el-tab-pane>
</el-tabs>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 320px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
:min-width=
"item.width"
>
<
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>
<span
v-else
>
{{
scope
.
row
[
item
.
prop
]
}}
</span>
</
template
>
</el-table-column>
</el-table>
<el-pagination
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"pagination.total"
:page-size=
"pagination.pageSize"
:current-page
.
sync=
"pagination.pageNum"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
>
</el-pagination>
</c-col>
</div>
</el-col>
...
...
@@ -188,7 +184,6 @@ export default {
mixins
:
[
event
],
data
()
{
return
{
activeTab
:
'sb'
,
load
:
false
,
subtypCodes
:
[],
// isFoldDisable: true,
...
...
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