Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
3d1b75da
Commit
3d1b75da
authored
Oct 27, 2021
by
蒋勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d
parent
0a1031d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
30 deletions
+43
-30
jiaxiya/app/front/vues/pages/tradetransferdiliver/tradetransferdiliver.html
+25
-28
jiaxiya/app/front/vues/pages/tradetransferdiliver/tradetransferdiliver.js
+18
-2
No files found.
jiaxiya/app/front/vues/pages/tradetransferdiliver/tradetransferdiliver.html
View file @
3d1b75da
<gsb-pagecard>
<div
slot=
"content"
>
<gsb-grid2
ref=
"userGrid"
:bizCode=
"bizCode"
spaceHeight=
"100"
groupName=
"transfer"
modelName=
"tradetransfer"
listMethod=
"findAndCountAll"
deleteMethod=
"delete"
initMethod=
"initNewInstance"
isDataAuto=
"true"
:headStyle=
"headStyle"
:colFormatter=
"onColFormater"
:isSingleSelect=
"isSingleSelect"
@
rowclick=
"onRowClick"
@
onDlgFormClick=
"onDlgFormClick"
:validateformmethod=
"validateformmethod"
>
<template
slot=
"other2"
slot-scope=
"scope"
>
<a
@
mouseover=
"showdetail()"
>
tracks.........
</a>
</template>
<gsb-grid2
ref=
"userGrid"
:bizCode=
"bizCode"
spaceHeight=
"100"
groupName=
"transfer"
modelName=
"tradetransfer"
listMethod=
"findAndCountAll"
deleteMethod=
"delete"
initMethod=
"initNewInstance"
isDataAuto=
"true"
:headStyle=
"headStyle"
:colFormatter=
"onColFormater"
:isSingleSelect=
"isSingleSelect"
@
rowclick=
"onRowClick"
@
onDlgFormClick=
"onDlgFormClick"
:validateformmethod=
"validateformmethod"
>
<template
slot=
"other2"
slot-scope=
"scope"
>
<a
@
mouseover=
"showdetail()"
>
tracks.........
</a>
</template>
</gsb-grid2>
<el-dialog
title=
"上传资料"
:visible
.
sync=
"showUploadform"
width=
"350px"
height=
"350px"
center
>
<el-dialog
title=
"上传资料"
:visible
.
sync=
"showUploadform"
width=
"350px"
height=
"350px"
center
>
<gsb-aliupload
v-model=
"f1"
@
uploadsuccess=
"upsuccess"
mtype=
"test"
></gsb-aliupload>
</el-dialog>
</el-dialog>
<el-dialog
title=
"跟进记录"
:visible
.
sync=
"trackVisable"
>
<div
style=
"min-height: 200px;margin-bottom: 50px;"
>
<el-steps
direction=
"vertical"
:active=
"trackRecords.length"
>
<el-step
:title=
"tr.trackDate"
:description=
"tr.trackContent"
v-for=
"(tr, index) in trackRecords"
></el-step>
</el-steps>
</div>
<el-input
type=
"textarea"
:rows=
"2"
placeholder=
"请输入跟进内容"
v-model=
"trackContent"
>
</el-input>
<el-row
style=
"text-align: right;margin-top: 20px;"
>
<el-button
type=
"warning"
@
click=
"cancelClick"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"saveClick"
>
保存
</el-button>
</el-row>
</el-dialog>
</div>
</gsb-pagecard>
</gsb-pagecard>
\ No newline at end of file
jiaxiya/app/front/vues/pages/tradetransferdiliver/tradetransferdiliver.js
View file @
3d1b75da
...
...
@@ -7,6 +7,11 @@
bizCode
:
'mytradetransferdiliver'
,
showUploadform
:
false
,
f1
:
""
,
trackVisable
:
false
,
trackContent
:
""
,
trackRecords
:[
]
}
},
mounted
:
function
()
{
...
...
@@ -70,14 +75,25 @@
this
.
$router
.
push
({
path
:
"/mynotarizationflow"
,
query
:
{
ali_bizid
:
row
.
ali_bizid
}
});
}
if
(
key
==
"tracks"
){
alert
(
"tracks"
)
this
.
trackVisable
=
true
;
if
(
this
.
trackRecords
.
length
==
0
){
this
.
trackRecords
.
push
({
"trackDate"
:
"暂无跟进"
,
"trackContent"
:
"请联系客户,进行跟进"
});
}
}
},
upsuccess
(
result
){
console
.
log
(
result
);
},
showdetail
(){
alert
(
"track.......details"
)
alert
(
"track.......details"
);
},
cancelClick
(){
this
.
trackVisable
=
false
;
},
saveClick
(){
this
.
trackVisable
=
false
;
this
.
trackRecords
.
push
({
"trackDate"
:
new
Date
().
toLocaleString
(),
"trackContent"
:
this
.
trackContent
});
}
},
computed
:
Vuex
.
mapState
({
...
...
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