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
biyuewuhua
isc-web-vue
Commits
12ba4545
Commit
12ba4545
authored
Sep 27, 2024
by
hewei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fxtsqo剩余部分补全
parent
ce2cacc9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
23 deletions
+28
-23
FundsRouter.js
src/page/Funds/FundsRouter.js
+2
-2
Fxtapll1.vue
src/page/Funds/Fxtsqo/views/Fxtapll1.vue
+6
-9
Quop.vue
src/page/Funds/Fxtsqo/views/Quop.vue
+0
-0
index.vue
src/page/Funds/Fxtsqo/views/index.vue
+20
-12
No files found.
src/page/Funds/FundsRouter.js
View file @
12ba4545
...
...
@@ -28,8 +28,8 @@ const BusRouter = [
meta
:
{
title
:
"结售汇平盘登记"
},
module
:
"Funds"
,
},
// { path: 'fxtsqo', component: ()=>import("./Fxtsqo/views"), name: 'Fxtsqo', meta: { title: 'Fxtsqo' } ,module:'Funds'},
{
path
:
'fxtssb'
,
component
:
()
=>
import
(
"./Fxtssb/views"
),
name
:
'Fxtssb'
,
meta
:
{
title
:
'Fxtssb'
}
,
module
:
'Funds'
},
{
path
:
'fxtsss'
,
component
:
()
=>
import
(
"./Fxtsss/views"
),
name
:
'Fxtsss'
,
meta
:
{
title
:
'Fxtsss'
}
,
module
:
'Funds'
},
{
path
:
'fxtsqo'
,
component
:
()
=>
import
(
"./Fxtsqo/views"
),
name
:
'Fxtsqo'
,
meta
:
{
title
:
'Fxtsqo'
}
,
module
:
'Funds'
},
];
export
default
BusRouter
;
export
default
BusRouter
src/page/Funds/Fxtsqo/views/Fxtapll1.vue
View file @
12ba4545
<
template
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"12"
>
<c-form-item
label=
"XMLPanel fxtapll1的内置block"
prop=
"fxtapll1blk"
>
<c-input
type=
"textarea"
v-model=
"model.fxtapll1blk"
maxlength=
"200"
show-word-limit
:placeholder=
"$t('other.please_enter')+'XMLPanel fxtapll1的内置block'"
></c
-input>
<c-mul-row-input
:rows=
"4"
:cols=
"50"
:autosize=
"
{minRows: 4, maxRows: 4}" v-model="model.fxtapll1blk" show-word-limit>
</c-mul-row
-input>
</c-form-item>
</c-col>
</div>
...
...
@@ -16,19 +15,17 @@ import Event from "../model/Event"
export
default
{
inject
:
[
'root'
],
props
:
[
"model"
,
"codes"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
(){
data
()
{
return
{
}
},
methods
:
{...
Event
},
created
:
function
()
{
methods
:
{
...
Event
},
created
:
function
()
{
}
}
</
script
>
<
style
>
</
style
>
<
style
></
style
>
src/page/Funds/Fxtsqo/views/Quop.vue
View file @
12ba4545
This diff is collapsed.
Click to expand it.
src/page/Funds/Fxtsqo/views/index.vue
View file @
12ba4545
<
template
>
<div
class=
"eContainer"
>
<c-page
title=
"结售汇报价"
>
<el-form
:model=
"model"
:rules=
"rules"
ref=
"modelForm"
label-width=
"150px"
label-position=
"right"
size=
"small"
:validate-on-rule-change=
"false"
>
<c-tabs
v-model=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"myTabClick"
>
<!--Quote -->
...
...
@@ -31,13 +32,22 @@
</el-tab-pane>
-->
</c-tabs>
</el-form>
<c-function-btn
:handleCheck=
"handleCheck"
:handleStash=
"handleStash"
:handleSubmit=
"handleSubmit"
@
handleSureWarning=
"handleSureWarning"
ref=
"commonBtn"
></c-function-btn>
</c-page>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
CodeTable
from
"~/config/CodeTable"
import
Fxtsqo
from
"../model"
import
commonProcess
from
"~/mixin/commonProcess"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
commonDepend
from
"~/mixin/commonDepend"
;
import
operationFunc
from
"~/mixin/operationFunc"
;
import
Check
from
"../model/Check"
import
Default
from
"../model/Default"
import
Pattern
from
"../model/Pattern"
...
...
@@ -67,7 +77,7 @@ export default {
root
:
this
}
},
mixins
:
[
commonProcess
,
event
,
buildFn
],
// 里面包含了Default、Check等的公共处理
mixins
:
[
commonProcess
,
event
,
buildFn
,
commonDepend
,
operationFunc
],
// 里面包含了Default、Check等的公共处理
data
(){
return
{
tabVal
:
"quop"
,
...
...
@@ -92,17 +102,15 @@ export default {
},
created
:
async
function
(){
console
.
log
(
"进入fxtsqo交易"
);
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
updateModel
(
rtnmsg
.
data
)
//TODO 处理数据逻辑
// todo 初始化方法
// let rtnmsg = await this.init({}
)
// if(rtnmsg.respCode == SUCCESS)
{
//
this.updateModel(rtnmsg.data)
//
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
// } else {
// this.$notify.error({title: '错误',message: '服务请求失败!'});
// }
}
}
</
script
>
...
...
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