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
f405242b
Commit
f405242b
authored
Oct 19, 2024
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QRTMGS前端代码调整
parent
70fa27ad
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
12 deletions
+29
-12
index.js
src/page/Frontend/Qrtmgs/model/index.js
+18
-0
Wtdselp.vue
src/page/Frontend/Qrtmgs/views/Wtdselp.vue
+2
-1
index.js
src/page/Frontend/Smtsel/event/index.js
+9
-10
Smtp01.vue
src/page/Frontend/Smtsel/views/Smtp01.vue
+0
-1
No files found.
src/page/Frontend/Qrtmgs/model/index.js
View file @
f405242b
...
@@ -4,6 +4,24 @@ import Pts from "~/page/Model/Common/Pts"
...
@@ -4,6 +4,24 @@ import Pts from "~/page/Model/Common/Pts"
export
default
class
Qrtmgs
{
export
default
class
Qrtmgs
{
constructor
()
{
constructor
()
{
this
.
data
=
{
this
.
data
=
{
msgtyp
:
""
,
actbak
:
""
,
casnum
:
""
,
cassta
:
""
,
drfnum
:
""
,
opsref
:
""
,
ownrel
:
""
,
revbak
:
""
,
sedbak
:
""
,
settimend
:
""
,
settimsta
:
""
,
uetr
:
""
,
qrdgrp
:{
rec
:{
msgtyp
:
""
,
},
},
qrtp
:
{
qrtp
:
{
msgrag
:
""
,
// 记录范围 .qrtp.msgrag
msgrag
:
""
,
// 记录范围 .qrtp.msgrag
revdrt
:
""
,
// 接收方向 .qrtp.revdrt
revdrt
:
""
,
// 接收方向 .qrtp.revdrt
...
...
src/page/Frontend/Qrtmgs/views/Wtdselp.vue
View file @
f405242b
...
@@ -139,7 +139,7 @@
...
@@ -139,7 +139,7 @@
:data=
"stmData.data"
:columns=
"stmData.columns"
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
selection-change=
"handleSelectionChange"
@
dblclick=
"dbClick"
size=
"small"
:border=
"true"
@
row-
dblclick=
"dbClick"
size=
"small"
:border=
"true"
height=
"calc(100vh - 420px)"
height=
"calc(100vh - 420px)"
:highlight-current-row=
"true"
:highlight-current-row=
"true"
>
>
...
@@ -352,6 +352,7 @@ export default {
...
@@ -352,6 +352,7 @@ export default {
},
},
multipleSelection1
:
[],
multipleSelection1
:
[],
load1
:
false
,
load1
:
false
,
rowdata
:
[],
};
};
},
},
computed
:
{
computed
:
{
...
...
src/page/Frontend/Smtsel/event/index.js
View file @
f405242b
import
Api
from
"~/service/Api"
;
export
default
{
export
default
{
mixins
:
[],
mixins
:
[],
methods
:
{
methods
:
{
...
@@ -5,18 +6,16 @@ export default {
...
@@ -5,18 +6,16 @@ export default {
this
.
load
=
true
;
this
.
load
=
true
;
let
rtnmsg
=
await
Api
.
post
(
"/frontend/smtsel"
,
{
let
rtnmsg
=
await
Api
.
post
(
"/frontend/smtsel"
,
{
...
this
.
model
,
...
this
.
model
,
pageNumber
:
this
.
pag
i
nation
.
pageNum
,
pageNumber
:
this
.
pag
e
nation
.
pageNum
,
pageSize
:
this
.
pag
i
nation
.
pageSize
,
pageSize
:
this
.
pag
e
nation
.
pageSize
,
});
});
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
load
=
false
;
this
.
load
=
false
;
this
.
tableData
=
[];
this
.
tableData
=
[];
this
.
tableData
=
rtnmsg
.
data
.
list
;
this
.
tableData
=
rtnmsg
.
data
.
list
;
this
.
pagination
=
{
this
.
pagenation
.
pageNum
=
rtnmsg
.
data
.
pageNum
||
1
pageNum
:
rtnmsg
.
data
.
pageNum
||
1
,
this
.
pagenation
.
pageSize
=
rtnmsg
.
data
.
pageSize
||
10
pageSize
:
rtnmsg
.
data
.
pageSize
||
10
,
this
.
pagenation
.
total
=
parseInt
(
rtnmsg
.
data
.
total
)
total
:
parseInt
(
rtnmsg
.
data
.
total
),
};
}
else
{
}
else
{
this
.
$notify
.
error
({
this
.
$notify
.
error
({
title
:
this
.
$t
(
"financing.错误"
),
title
:
this
.
$t
(
"financing.错误"
),
...
@@ -38,13 +37,13 @@ export default {
...
@@ -38,13 +37,13 @@ export default {
},
},
// pageSize改变
// pageSize改变
handleSizeChange
(
val
)
{
handleSizeChange
(
val
)
{
this
.
pag
i
nation
.
pageNum
=
1
;
this
.
pag
e
nation
.
pageNum
=
1
;
this
.
pag
i
nation
.
pageSize
=
val
;
this
.
pag
e
nation
.
pageSize
=
val
;
this
.
handleSearch
();
this
.
handleSearch
();
},
},
// 页码改变
// 页码改变
handleCurrentChange
(
val
)
{
handleCurrentChange
(
val
)
{
this
.
pag
i
nation
.
pageNum
=
val
;
this
.
pag
e
nation
.
pageNum
=
val
;
this
.
handleSearch
();
this
.
handleSearch
();
},
},
}
}
...
...
src/page/Frontend/Smtsel/views/Smtp01.vue
View file @
f405242b
...
@@ -238,7 +238,6 @@
...
@@ -238,7 +238,6 @@
style=
"margin-right: 5px"
style=
"margin-right: 5px"
size=
"small"
size=
"small"
type=
"primary"
type=
"primary"
:disabled=
"scope.row.acksrv.length == 3"
@
click=
"updateAck(scope.row)"
@
click=
"updateAck(scope.row)"
>
更新
</c-button>
>
更新
</c-button>
</
template
>
</
template
>
...
...
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