Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
cfc2b887
authored
2024-02-04 16:25:46 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
添加查封解封批量加载列表优化
1 parent
f862db22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
151 additions
and
3 deletions
src/views/workflow/components/cfdjTable.vue
src/views/ywbl/slsqxx/cfdj/plcfslxx.vue
src/views/workflow/components/cfdjTable.vue
0 → 100644
View file @
cfc2b88
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-07-17 13:51:29
-->
<
template
>
<lb-table
:column=
"column"
:maxHeight=
"200"
:heightNumSetting=
"true"
:pagination=
"false"
:key=
"key"
:data=
"tableData"
>
</lb-table>
</
template
>
<
script
>
import
addQlr
from
'./dialog/addQlr.vue'
import
{
mapGetters
}
from
'vuex'
export
default
{
components
:
{
addQlr
},
computed
:
{
...
mapGetters
([
"dictData"
]),
},
props
:
{
tableData
:
{
type
:
Array
,
default
:
function
()
{
return
[]
}
},
gyfs
:
{
type
:
String
,
default
:
'1'
}
},
data
()
{
return
{
key
:
0
,
dataIndex
:
0
,
dialog
:
false
,
details
:
{},
tableDataList
:
[],
qlrCommonTable
:
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
scope
.
$index
+
1
}
<
/div
>
)
}
},
{
prop
:
"yg"
,
label
:
"原告"
},
{
prop
:
"cfwh"
,
label
:
"查封文号"
},
{
prop
:
"cfqssj"
,
label
:
"查封开始时间"
},
{
prop
:
"cfjssj"
,
label
:
"查封结束时间"
},
{
prop
:
"cflxmc"
,
label
:
"查封类型"
},
{
prop
:
"ywrmc"
,
label
:
"被执行人"
},
{
prop
:
"bcfzh"
,
label
:
"被查封证号"
},
{
prop
:
"bdcdyh"
,
label
:
"不动产单元号"
},
{
prop
:
"zl"
,
label
:
"坐落"
},
],
column
:
this
.
qlrCommonTable
}
},
watch
:
{
tableData
:
{
handler
:
function
(
val
,
oldVal
)
{
let
that
=
this
if
(
val
.
length
==
0
||
!
val
)
{
that
.
tableDataList
=
_
.
cloneDeep
([{
sqrmc
:
''
,
dlrzjlx
:
''
,
dlrzjh
:
''
,
fr
:
''
}])
}
else
{
that
.
tableDataList
=
_
.
cloneDeep
(
val
)
}
},
immediate
:
true
,
deep
:
true
},
gyfs
:
{
handler
(
newVal
,
oldValue
)
{
let
dataList
=
_
.
cloneDeep
(
this
.
qlrCommonTable
)
if
(
newVal
==
'1'
)
{
this
.
column
=
_
.
cloneDeep
(
dataList
).
slice
(
1
,
dataList
.
length
)
}
else
if
((
newVal
==
'2'
))
{
this
.
column
=
dataList
}
else
{
this
.
column
=
_
.
cloneDeep
(
dataList
)
this
.
column
.
splice
(
2
,
0
,
{
prop
:
"qlbl"
,
label
:
"份数"
})
}
},
immediate
:
true
}
},
methods
:
{
}
}
</
script
>
<
style
scoped
lang=
'scss'
>
/
deep
/
.el-table
th
{
height
:
30px
!important
;
}
/
deep
/
.el-table--small
.el-table__cell
{
padding
:
5px
;
}
</
style
>
src/views/ywbl/slsqxx/cfdj/plcfslxx.vue
View file @
cfc2b88
...
...
@@ -52,11 +52,16 @@
</el-form-item>
</el-col>
</el-row>
<div
class=
"slxx_title title-block"
>
<div
class=
"slxx_title title-block"
v-if=
"ruleForm.slsq.djywbm.includes('400')"
>
解封信息列表(
{{
ruleForm
.
cfdjDetailList
.
length
}}
个)
<div
class=
"triangle"
></div>
<cfdjTable
:tableData=
"ruleForm.cfdjDetailList"
/>
</div>
<div
class=
"slxx_title title-block"
v-else
>
查封不动产列表(
{{
ruleForm
.
ztQlxxList
.
length
}}
个)
<div
class=
"triangle"
></div>
<cfBdcdyTable
:tableData=
"ruleForm.ztQlxxList"
/>
</div>
<cfBdcdyTable
:tableData=
"ruleForm.ztQlxxList"
/>
<div
class=
"slxx_title title-block"
>
批量查封信息
<div
class=
"triangle"
></div>
...
...
@@ -158,6 +163,7 @@
</
template
>
<
script
>
import
cfBdcdyTable
from
"@/views/workflow/components/cfBdcdyTable"
;
import
cfdjTable
from
"@/views/workflow/components/cfdjTable"
;
import
{
BatchInit
,
batchSaveData
}
from
"@/api/workflow/cfdjFlow.js"
;
import
{
mapGetters
}
from
"vuex"
;
export
default
{
...
...
@@ -199,7 +205,7 @@
}
})
},
components
:
{
cfBdcdyTable
},
components
:
{
cfBdcdyTable
,
cfdjTable
},
props
:
{
flag
:
{
type
:
Boolean
,
...
...
Please
register
or
sign in
to post a comment