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
ecdd524f
Commit
ecdd524f
authored
Oct 29, 2024
by
李少勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oftopn和oftsel交易优化
parent
c4e70f82
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
18 deletions
+25
-18
index.js
src/page/Frontend/Oftopn/event/index.js
+4
-2
Oftp13.vue
src/page/Frontend/Oftopn/views/Oftp13.vue
+10
-9
index.js
src/page/Frontend/Oftsel/event/index.js
+5
-2
Oftp01.vue
src/page/Frontend/Oftsel/views/Oftp01.vue
+6
-5
No files found.
src/page/Frontend/Oftopn/event/index.js
View file @
ecdd524f
...
...
@@ -2,7 +2,7 @@ import Api from "~/service/Api";
import
moment
from
"moment"
;
import
getSubtyp
from
'~/page/Frontend/Rcvsel/event/getSubtyp.js'
;
import
Oftopn
from
'../model'
;
import
Utils
from
"~/utils"
;
export
default
{
mixins
:
[
getSubtyp
],
methods
:
{
...
...
@@ -52,7 +52,9 @@ export default {
this
.
load
=
false
;
},
async
handleReset
()
{
this
.
model
=
new
Oftopn
().
data
;
let
resetModel
=
new
Oftopn
().
data
Utils
.
copyValueFromVoData
(
this
.
model
,
resetModel
);
this
.
handleSearch
();
},
// pageSize改变
handleSizeChange
(
val
)
{
...
...
src/page/Frontend/Oftopn/views/Oftp13.vue
View file @
ecdd524f
...
...
@@ -108,11 +108,11 @@
</c-list-search>
<el-col
:span=
"24"
style=
"margin-top: 2px;margin-bottom: 1px;"
>
<c-button
:disabled=
"isFoldDisable"
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 0"
type=
"primary"
>
{{
$t('public.归档') }}
<c-button
:disabled=
"isFoldDisable"
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 0"
type=
"primary"
>
{{
$t('public.归档') }}
</c-button>
<c-button
:disabled=
"isRoutingDisable"
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 20"
type=
"primary"
>
ReRouting
<c-button
:disabled=
"isRoutingDisable"
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 20"
type=
"primary"
>
ReRouting
</c-button>
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 20"
type=
"primary"
>
{{ $t('public.导出Excel') }}
...
...
@@ -149,6 +149,7 @@
<c-select-value-to-label
v-else-if=
"item.prop == 'multimsg'"
v-model=
"scope.row.multimsg"
:code=
"codes.chncod"
></c-select-value-to-label>
<c-select-value-to-label
v-else-if=
"item.prop == 'chk'"
v-model=
"scope.row.chk"
:code=
"codes.chncod"
></c-select-value-to-label>
<c-select-value-to-label
v-else-if=
"item.prop == 'kpatyp'"
v-model=
"scope.row.kpatyp"
:code=
"codes.chncod"
></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>
</
template
>
</el-table-column>
...
...
@@ -206,13 +207,13 @@ export default {
width
:
"120px"
},
{
label
:
"金额"
,
prop
:
"amt"
,
width
:
"120px"
},
{
label
:
"币种"
,
prop
:
"cur"
,
width
:
"80px"
},
{
label
:
"金额"
,
prop
:
"amt"
,
width
:
"120px"
},
{
...
...
src/page/Frontend/Oftsel/event/index.js
View file @
ecdd524f
import
Api
from
"~/service/Api"
;
import
getSubtyp
from
'~/page/Frontend/Rcvsel/event/getSubtyp.js'
;
import
moment
from
"moment"
;
import
Utils
from
"../../../../utils"
;
import
Oftsel
from
'../model'
;
import
Utils
from
"~/utils"
;
export
default
{
mixins
:
[
getSubtyp
],
...
...
@@ -52,7 +53,9 @@ export default {
this
.
load
=
false
;
},
async
handleReset
()
{
this
.
model
=
new
Oftsel
().
data
;
let
resetModel
=
new
Oftsel
().
data
Utils
.
copyValueFromVoData
(
this
.
model
,
resetModel
);
this
.
handleSearch
();
},
async
dbClickRow
(
row
)
{
let
rtnmsg
=
await
Api
.
post
(
"/frontend/oftsel/storeDate"
,
{
...
...
src/page/Frontend/Oftsel/views/Oftp01.vue
View file @
ecdd524f
...
...
@@ -138,6 +138,7 @@
<c-select-value-to-label
v-else-if=
"item.prop == 'multimsg'"
v-model=
"scope.row.multimsg"
:code=
"codes.chncod"
></c-select-value-to-label>
<c-select-value-to-label
v-else-if=
"item.prop == 'chk'"
v-model=
"scope.row.chk"
:code=
"codes.chncod"
></c-select-value-to-label>
<c-select-value-to-label
v-else-if=
"item.prop == 'kpatyp'"
v-model=
"scope.row.kpatyp"
:code=
"codes.chncod"
></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>
</
template
>
</el-table-column>
...
...
@@ -195,13 +196,13 @@ export default {
width
:
"120px"
},
{
label
:
"金额"
,
prop
:
"amt"
,
width
:
"120px"
},
{
label
:
"币种"
,
prop
:
"cur"
,
width
:
"80px"
},
{
label
:
"金额"
,
prop
:
"amt"
,
width
:
"120px"
},
{
...
...
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