Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
2adb727f
Commit
2adb727f
authored
Jan 03, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
90b4d185
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
4 deletions
+19
-4
FinancialDocuments.vue
src/components/FinancialModule/FinancialDocuments.vue
+19
-4
No files found.
src/components/FinancialModule/FinancialDocuments.vue
View file @
2adb727f
...
@@ -1222,6 +1222,7 @@ input[type="number"] {
...
@@ -1222,6 +1222,7 @@ input[type="number"] {
<th>
冲抵金额
</th>
<th>
冲抵金额
</th>
<th>
状态
</th>
<th>
状态
</th>
<th>
付款对象
</th>
<th>
付款对象
</th>
<th>
操作
</th>
</tr>
</tr>
<tr
v-for=
"(item,index) in czList"
:key=
"index"
>
<tr
v-for=
"(item,index) in czList"
:key=
"index"
>
<td><input
type=
"checkbox"
:value=
"item"
v-model=
"yfcheckList"
@
change=
"ckeckOne"
></td>
<td><input
type=
"checkbox"
:value=
"item"
v-model=
"yfcheckList"
@
change=
"ckeckOne"
></td>
...
@@ -1238,9 +1239,16 @@ input[type="number"] {
...
@@ -1238,9 +1239,16 @@ input[type="number"] {
<div
style=
"width:250px;overflow:hidden"
>
{{item.ClientTypeName}}:{{item.RemitterName}}
</div>
<div
style=
"width:250px;overflow:hidden"
>
{{item.ClientTypeName}}:{{item.RemitterName}}
</div>
</el-tooltip>
</el-tooltip>
</td>
</td>
<td>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"预付款退款"
placement=
"top-start"
>
<button
class=
"normalBtn"
@
click=
"goUrlZD(item)"
>
<i
class=
"el-icon-right"
></i>
</button>
</el-tooltip>
</td>
</tr>
</tr>
<tr
v-if=
"czList.length==0"
>
<tr
v-if=
"czList.length==0"
>
<td
colspan=
"1
2
"
>
暂无数据
</td>
<td
colspan=
"1
3
"
>
暂无数据
</td>
</tr>
</tr>
</table>
</table>
<el-pagination
background
@
current-change=
"handleCurrentChange2"
<el-pagination
background
@
current-change=
"handleCurrentChange2"
...
@@ -1597,10 +1605,17 @@ export default {
...
@@ -1597,10 +1605,17 @@ export default {
this
.
yfcdState
=
true
;
this
.
yfcdState
=
true
;
this
.
yfcheckList
=
[];
this
.
yfcheckList
=
[];
},
},
goUrlZD
()
{
goUrlZD
(
item
)
{
let
that
=
this
;
let
that
=
this
;
let
yfcheckList
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
yfcheckList
));
let
yfcheckList
if
(
item
){
this
.
yfcheckList
=
[]
this
.
yfcheckList
.
push
(
item
)
that
.
yfHandmsg
.
OtherType
=
65
}
else
{
that
.
yfHandmsg
.
OtherType
=
7
}
yfcheckList
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
yfcheckList
));
if
(
this
.
yfcheckList
.
length
>
1
)
{
if
(
this
.
yfcheckList
.
length
>
1
)
{
this
.
Error
(
"只能选择一项!"
);
this
.
Error
(
"只能选择一项!"
);
return
;
return
;
...
...
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